from publishers weekly
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 134
Smart Publisher 1.0.2
Smart Publisher is a web-based open source and easy-to-use application which offers you an effective way to publish a static or dynamic website on the internet more>> <<less
Added: 2008-03-05 License: GPL Price: FREE
17 downloads
Other version of Smart Publisher
License:GPL (GNU General Public License)
Panda Publisher RC3
Panda Publisher provides a lightweight, standards-compliant content management system. more>>
Panda Publisher provides a lightweight, standards-compliant content management system.
Panda Publisher is a lightweight content management system. It aims to be fast, scalable, standards-compliant and meta-data rich in order to serve page viewers better and allow Web masters to concentrate on writing content rather than all the little things that make visiting Web sites easier for users.
Meta-data is created on the fly to ensure that it is up-to-date. Menus, Site Maps, Searches, etc. are all generated automatically to give consistent navigation to the end user.
Enhancements:
- Shiny new installer
- Standards Compliance improvements
- Fixed style sheet selector in admin
- New Offline-mode
- Code clean-ups
- Security Fixes
<<lessPanda Publisher is a lightweight content management system. It aims to be fast, scalable, standards-compliant and meta-data rich in order to serve page viewers better and allow Web masters to concentrate on writing content rather than all the little things that make visiting Web sites easier for users.
Meta-data is created on the fly to ensure that it is up-to-date. Menus, Site Maps, Searches, etc. are all generated automatically to give consistent navigation to the end user.
Enhancements:
- Shiny new installer
- Standards Compliance improvements
- Fixed style sheet selector in admin
- New Offline-mode
- Code clean-ups
- Security Fixes
Download (MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
Pandora Publisher 0.4.4
Pandora is a simple web document and application platform written in Ruby. more>>
Pandora is a simple web document and application platform written in Ruby. Pandora Publisher aims to make it easy for a team of people to quickly collaborate on the network and develop custom document components and extensions to meet their specific needs.
Main features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
<<lessMain features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
Download (1.5MB)
Added: 2006-08-27 License: Other/Proprietary License Price:
1155 downloads

@1 Calendar Publisher I 2.0
Publish events, schedules or news to an online web calendar. more>> Publish events, schedules or news to an online web calendar. Multiple events can be posted on the same day. The calendar can be called directly or via SSI. No MySQL required. View in full or compact mode. Show X number of upcoming events. Header, footer colors and so on are highly customizable. Newly added features: "Todays Events" and "Tomorrows Events".<<less
Download (37KB)
Added: 2009-04-02 License: Freeware Price: Free
204 downloads
Podcast::Publisher 0.50
Podcast::Publisher is a Perl module for creating and managing podcasts. more>>
Podcast::Publisher is a Perl module for creating and managing podcasts.
SYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
<<lessSYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
Download (0.012MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1081 downloads
SomaList 0.1
SomaList is a part of the Soma project. more>>
SomaList is a part of the Soma project.
Soma project started in summer 2003 to manage the digital version of an acitvists radio old spools.
The first release just gave just the chance to play random some audio files in a directory using an external program (at that time mpg123). In despite of that this software was never used, i kept on thinking about soma project for some weeks, until i started directly to work with a group called Reload, which was experimenting at the time a project called "eterete" and creating a place for a web radio at Pergola Tribe (a selfmanaged house in Milan).
We used, of course, a release, which was a little bit better to manage the radio-playlist and of course we implemented the software itself. From september till december soma became a software suite, configurable through file and (remote administration...). Thats thanks to the relationships and the inputs that such a community like Reload can create.
A group of passionate activists was able to make broadcastings and broadcast schedules, to find out new problems and to give implementation advices. They also suggest me the idea that soma (originally a simple play-list manager) could become a programs suite, which has a player, a software for deferred broadcasting, a more user friendly admininstration, documentation and distribution.
Some time after came soma player and soma admin. The player was still very behind compared to my implementation ideas. Somadmin was straight away on line and advertised on radio.inventati.org/somadmin/
In January 2004 we showed Soma at the first italian (web and air-waves) radio meeting in Naples.The meeting was technologically and politically profitable and it was an attempt to build up a real radio-network. Radio.inventati.org was actually the only example od direct cooperation among even very different people: individuals, improvised groups, very old and movement radios and experiences from overseas countries.
On the web site there are occasional streamings, weekly streamings, and 24hrs music flows.
The object of the technical research was a digital environment, which could let individuals or whole communities gain access to a common schedule with resum?s,
repetitions, deferred programs, live broadcastings, regular broadcastings as one national and international network. Soma could satisfy this need and could be easly managed through the web thanks to somadmin, which could update the soma admin in real time.
The developments went on. Somaplayer is now reality. The only music player which can stream directly an mp3, an ogg vorbis, a wav, a track from an audio cd or a streaming directly on an icecast server (icecast 2 or shoutcast) or just play it on a computer using sound drivers or sound daemons.
At the moment more other people work at this project, who debug the software, write docs, work at the website and make installation packages (for debian).
<<lessSoma project started in summer 2003 to manage the digital version of an acitvists radio old spools.
The first release just gave just the chance to play random some audio files in a directory using an external program (at that time mpg123). In despite of that this software was never used, i kept on thinking about soma project for some weeks, until i started directly to work with a group called Reload, which was experimenting at the time a project called "eterete" and creating a place for a web radio at Pergola Tribe (a selfmanaged house in Milan).
We used, of course, a release, which was a little bit better to manage the radio-playlist and of course we implemented the software itself. From september till december soma became a software suite, configurable through file and (remote administration...). Thats thanks to the relationships and the inputs that such a community like Reload can create.
A group of passionate activists was able to make broadcastings and broadcast schedules, to find out new problems and to give implementation advices. They also suggest me the idea that soma (originally a simple play-list manager) could become a programs suite, which has a player, a software for deferred broadcasting, a more user friendly admininstration, documentation and distribution.
Some time after came soma player and soma admin. The player was still very behind compared to my implementation ideas. Somadmin was straight away on line and advertised on radio.inventati.org/somadmin/
In January 2004 we showed Soma at the first italian (web and air-waves) radio meeting in Naples.The meeting was technologically and politically profitable and it was an attempt to build up a real radio-network. Radio.inventati.org was actually the only example od direct cooperation among even very different people: individuals, improvised groups, very old and movement radios and experiences from overseas countries.
On the web site there are occasional streamings, weekly streamings, and 24hrs music flows.
The object of the technical research was a digital environment, which could let individuals or whole communities gain access to a common schedule with resum?s,
repetitions, deferred programs, live broadcastings, regular broadcastings as one national and international network. Soma could satisfy this need and could be easly managed through the web thanks to somadmin, which could update the soma admin in real time.
The developments went on. Somaplayer is now reality. The only music player which can stream directly an mp3, an ogg vorbis, a wav, a track from an audio cd or a streaming directly on an icecast server (icecast 2 or shoutcast) or just play it on a computer using sound drivers or sound daemons.
At the moment more other people work at this project, who debug the software, write docs, work at the website and make installation packages (for debian).
Download (0.29MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1407 downloads
blogBuddies 0.3
blogBuddies provides an RSS and Atom aggregator that emulates the LiveJournal Friends page. more>>
blogBuddies provides an RSS and Atom aggregator that emulates the LiveJournal Friends page.
blogBuddies gathers RSS and Atom feeds into a layout similar to the LiveJournal Friends page. It is optimized for blogs, and works with Blogger, LiveJournal, DeadJournal, GreatestJournal, Xanga, RSS, and Atom feeds.
About blogBuddies
I originally started writing blogBuddies in my spare time as a response to the lack of a LiveJournal-type friends system in Blogger. Over the course of a few months, blogBuddies grew from a paltry, one-user system to a full multi-user, themable system supporting both LiveJournal and Blogger.
Going from there, blogBuddies was expanded to offer service for GreatestJournal, DeadJournal, Xanga, and RSS/Atom feeds. In the next release (0.4), blogBuddies will support MySpace blogs. I still write blogBuddies in my spare time, and do not know what I want to do with it at this point. If anyone wishes to help, they are free to PM me.
Enhancements:
- Added RSS and Atom support (URLs)
- Code cleanup
- Changed the UserAgent so that publishers can see blogBuddies
- Added support for GreatestJournal, DeadJournal, and Xanga
- Cross-site scripting: A PATCH IS NOW AVAILALBE - patch zip contains only the changed files
<<lessblogBuddies gathers RSS and Atom feeds into a layout similar to the LiveJournal Friends page. It is optimized for blogs, and works with Blogger, LiveJournal, DeadJournal, GreatestJournal, Xanga, RSS, and Atom feeds.
About blogBuddies
I originally started writing blogBuddies in my spare time as a response to the lack of a LiveJournal-type friends system in Blogger. Over the course of a few months, blogBuddies grew from a paltry, one-user system to a full multi-user, themable system supporting both LiveJournal and Blogger.
Going from there, blogBuddies was expanded to offer service for GreatestJournal, DeadJournal, Xanga, and RSS/Atom feeds. In the next release (0.4), blogBuddies will support MySpace blogs. I still write blogBuddies in my spare time, and do not know what I want to do with it at this point. If anyone wishes to help, they are free to PM me.
Enhancements:
- Added RSS and Atom support (URLs)
- Code cleanup
- Changed the UserAgent so that publishers can see blogBuddies
- Added support for GreatestJournal, DeadJournal, and Xanga
- Cross-site scripting: A PATCH IS NOW AVAILALBE - patch zip contains only the changed files
Download (0.075MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
925 downloads
PROPS 0.7
PROPS is an open, extensible Internet publishing system designed specifically for periodicals. more>>
PROPS is an open, extensible Internet publishing system designed specifically for periodicals such as newspapers and magazines who want to publish online, either exclusively or as an extension of their print publication.
PROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
<<lessPROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
Download (0.70MB)
Added: 2005-10-28 License: GPL (GNU General Public License) Price:
1459 downloads
ProShield 3.7.47
ProShield is a security program for Debian Linux. more>>
ProShield is a security program for Debian Linux. Regular use is recommended.
Main features:
- Helps you backup your system weekly.
- Checks for extra root accounts.
- Checks account & password files for correct permissions.
- Makes sure a few security-hazardous packages are not installed.
- Checks for a packet sniffer.
- Removes unneeded packages from the local package archive.
- Checks for new software releases, in order to see if installed software is reasonably up to date. Smart-suggestion to upgrade if an important package is released.
- Checks to see if apt is fetching unnecessary information when checking for software updates.
- Makes sure system time is accurate.
- Checks to make sure the user isnt logged into the system (GUI) as root.
- Checks the configuration of the ssh server ([sshd] if installed) for insecure settings.
- At runtime, ProShield will also check to see if there has been a new version released, and can download and install it at the users preference.
Enhancements:
- proshield (3.7.47) unstable;
- urgency=low * ProShield should always be able to correctly calculate amount of space freed from apt cache cleaning. Previously, it would say "?? megs of space were freed" a lot.
<<lessMain features:
- Helps you backup your system weekly.
- Checks for extra root accounts.
- Checks account & password files for correct permissions.
- Makes sure a few security-hazardous packages are not installed.
- Checks for a packet sniffer.
- Removes unneeded packages from the local package archive.
- Checks for new software releases, in order to see if installed software is reasonably up to date. Smart-suggestion to upgrade if an important package is released.
- Checks to see if apt is fetching unnecessary information when checking for software updates.
- Makes sure system time is accurate.
- Checks to make sure the user isnt logged into the system (GUI) as root.
- Checks the configuration of the ssh server ([sshd] if installed) for insecure settings.
- At runtime, ProShield will also check to see if there has been a new version released, and can download and install it at the users preference.
Enhancements:
- proshield (3.7.47) unstable;
- urgency=low * ProShield should always be able to correctly calculate amount of space freed from apt cache cleaning. Previously, it would say "?? megs of space were freed" a lot.
Download (0.020MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1219 downloads
PoJoe Component Libraries 1.1
PoJoe Component Libraries project is a set of Java POJO components, originally developed for OSMQ. more>>
PoJoe Component Libraries project is a set of Java POJO components, originally developed for OSMQ. Developers have found these components useful in building robust enterprise applications.
Of note are: a FIFO queue that utilizes memory until a size threshold is reached, paging overflow elements to a disk cache; a dynamic discovery mechanism for locating remote processes by name over an IP network, eliminating the need to identify a remote service with a specific host computer; and a set of peer-to-peer async message components that support n concurrent message publishers for each named subscriber.
Enhancements:
- Minor enhancements and bugfixes, and changing the license from GNU Lesser to Apache 2.0.
<<lessOf note are: a FIFO queue that utilizes memory until a size threshold is reached, paging overflow elements to a disk cache; a dynamic discovery mechanism for locating remote processes by name over an IP network, eliminating the need to identify a remote service with a specific host computer; and a set of peer-to-peer async message components that support n concurrent message publishers for each named subscriber.
Enhancements:
- Minor enhancements and bugfixes, and changing the license from GNU Lesser to Apache 2.0.
Download (0.87MB)
Added: 2007-06-12 License: The Apache License 2.0 Price:
521 downloads
3proxy for Linux 0.5.3k
3proxy for Linux tiny free proxy server previously known as 3[APA3A] tiny. more>> 3proxy for Linux tiny free proxy server previously known as 3[APA3A] tiny freeware proxy (pronounce it as "Zaraza tiny freeware proxy") is really tiny cross-platform (Win32/Win64&Unix) proxy servers set. It includes HTTP proxy with HTTPS and FTP support, SOCKSv4/SOCKSv4.5/SOCKSv5 proxy (socks/socks.exe), POP3 proxy, SMTP proxy, AIM/ICQ proxy (icqpr/icqpr.exe), MSN messenger / Live messenger proxy (msnpr/msnpr.exe), FTP proxy, caching DNS proxy, TCP and UDP portmappers. You can use every proxy as a standalone program (socks, proxy, tcppm, udppm, pop3p) or use combined program (3proxy for Linux). Combined proxy additionally supports features like access control, bandwidth limiting, limiting daily/weekly/monthly traffic amount, proxy chaining, log rotation, syslog and ODBC logging, etc. Its created to be small, simple (Id like to say secure - but its constantly in development and beta testing stage) and yet very functional. It may be compiled with Visual C or gcc. Native Win32 version included in archive and supports installation as NT/2K/XP service. Currently 3proxy is tested to work under Windows 98/NT/2000/2003/XP/x64, FreeBSD/i386, NetBSD/i386, OpenBSD/i386, Linux/i386, Linux/PPC, Linux/Alpha, Mac OS X/PPC, Solaris 10/i386. See Release Notes and Changes for features list.
3proxy for Linux is absolutely free (FreeWare) and open source. It can be used under terms of GNU/GPL. Starting from 0.6 version BSD-style license is used and any compatible license (Apache license, GPL, LGPL) may be used instead.<<less
Download (186KB)
Added: 2009-04-11 License: Freeware Price:
201 downloads
OpenDDS 1.0
OpenDDS is an open-source C++ implementation of the Object Management Groups Data Distribution Service. more>>
OpenDDS is an open-source C++ implementation of the Object Management Groups Data Distribution Service for Real-time Systems specification (version 1.0). This project implements most of the minimum profile of the Data-Centric Publish-Subscribe (DCPS) layer of the DDS specification.
DDS provides demanding applications with a high-level, object-oriented publish-subscribe model while enabling efficient, direct data transfer between publishers and subscribers. More information about the OMGs DDS specification can be found at the OMG Data Distribution portal.
OpenDDS is built on the ACE (ADAPTIVE Communication Environment) abstraction layer to provide platform portability. OpenDDS also leverages capabilities of TAO (The ACE ORB), such as its IDL compiler and as the basis of the OpenDDS DCPS Information Repository (DCPSInfoRepo). In addition, OpenDDS leverages MPC to ease the maintenance burden of supporting multiple build environments and platforms. For a current list of supported platforms and build environments, see the OpenDDS FAQ.
Enhancements:
- Support for built-in CORBA:: sequences was added.
- DDS entities have changed to local IDL types and now support zero-copy reads.
- User-defined DDS types are now correctly scoped.
<<lessDDS provides demanding applications with a high-level, object-oriented publish-subscribe model while enabling efficient, direct data transfer between publishers and subscribers. More information about the OMGs DDS specification can be found at the OMG Data Distribution portal.
OpenDDS is built on the ACE (ADAPTIVE Communication Environment) abstraction layer to provide platform portability. OpenDDS also leverages capabilities of TAO (The ACE ORB), such as its IDL compiler and as the basis of the OpenDDS DCPS Information Repository (DCPSInfoRepo). In addition, OpenDDS leverages MPC to ease the maintenance burden of supporting multiple build environments and platforms. For a current list of supported platforms and build environments, see the OpenDDS FAQ.
Enhancements:
- Support for built-in CORBA:: sequences was added.
- DDS entities have changed to local IDL types and now support zero-copy reads.
- User-defined DDS types are now correctly scoped.
Download (4.0MB)
Added: 2007-07-27 License: Freely Distributable Price:
821 downloads
eddiebrowser 0.6.1
eddiebrowser is a CGI program that provides an interface to view system statistics graphically using RRDtool. more>>
eddiebrowser project is a CGI program that provides an interface to view system statistics graphically using RRDtool.
eddiebrowser is written in 100% Python and is designed to work with EDDIE Tool and ElvinRRD, although it can be used standalone or with other software, as long as they generate RRD files.
eddiebrowser provides a dynamic interface to browse RRD graphs of system performance statistics. The data is grouped by hostname and all available hosts are automatically read and presented for display.
Cycling through hosts is easy to do, as is viewing data for different time periods - defaulting to: hourly, daily, weekly, monthly, yearly. eddiebrowser is part of the EDDIE Tool monitoring project.
<<lesseddiebrowser is written in 100% Python and is designed to work with EDDIE Tool and ElvinRRD, although it can be used standalone or with other software, as long as they generate RRD files.
eddiebrowser provides a dynamic interface to browse RRD graphs of system performance statistics. The data is grouped by hostname and all available hosts are automatically read and presented for display.
Cycling through hosts is easy to do, as is viewing data for different time periods - defaulting to: hourly, daily, weekly, monthly, yearly. eddiebrowser is part of the EDDIE Tool monitoring project.
Download (0.013MB)
Added: 2005-12-09 License: GPL (GNU General Public License) Price:
1414 downloads
MMBase 1.8.0
MMBase is a Web Content Management System with strong multi media features and advanced portal functionalities. more>>
MMBase is a Web Content Management System with strong multi media features and advanced portal functionalities. MMBase also has a large installed base in The Netherlands, and is used by major Dutch broadcasters, publishers, educational institutes, national and local governments.
MMBase is written in Java, it is Open Source Software (MPL) and all standards used are as open as possible. The system can be used with all major operating systems, application servers and databases.
Enhancements:
- The MMBase community released its latest and greatest MMBase release today: version 1.8.0. A long anticipated release which packs a lot of new features and applications: optimized and cleaner code, new datatypes and improvements on fields, new taglib features like integration with EL, configurable caching mechanisms, RichText and other functionalities.
<<lessMMBase is written in Java, it is Open Source Software (MPL) and all standards used are as open as possible. The system can be used with all major operating systems, application servers and databases.
Enhancements:
- The MMBase community released its latest and greatest MMBase release today: version 1.8.0. A long anticipated release which packs a lot of new features and applications: optimized and cleaner code, new datatypes and improvements on fields, new taglib features like integration with EL, configurable caching mechanisms, RichText and other functionalities.
Download (14MB)
Added: 2006-05-10 License: MPL (Mozilla Public License) Price:
1262 downloads
PieSpy 0.4.0
PieSpy is an IRC bot that monitors a set of IRC channels. more>>
PieSpy is an IRC bot that monitors a set of IRC channels. It uses a simple set of heuristic methods to infer relationships between pairs of users. These inferrences allow PieSpy to build a mathematical model of a social network for any channel. These social networks can be drawn and used to create animations of evolving social networks.
PieSpy has also been used to visualize Shakespearean social networks.This page got slashdotted on 11 March 2004, with the site getting 250,000 hits per hour. Thanks to Notnet for making sure it all stayed alive!
PieSpy was presented at the Information Visualization conference (IV04) in July 2004. Read the full paper online. It has also appeared in Computer Weekly, ct magazine, and I was interviewed live on BBC Radio Kent.
Enhancements:
- Now tracks nickname changes. Generates images five times faster. Removes formatting and colors from messages. The source code has been refactored to make it easy to add new InferenceHeuristics, which are used to work out who is talking to whom - if you create any good ones, let me know! The config file lets you apply different weightings to each InferenceHeuristic.
<<lessPieSpy has also been used to visualize Shakespearean social networks.This page got slashdotted on 11 March 2004, with the site getting 250,000 hits per hour. Thanks to Notnet for making sure it all stayed alive!
PieSpy was presented at the Information Visualization conference (IV04) in July 2004. Read the full paper online. It has also appeared in Computer Weekly, ct magazine, and I was interviewed live on BBC Radio Kent.
Enhancements:
- Now tracks nickname changes. Generates images five times faster. Removes formatting and colors from messages. The source code has been refactored to make it easy to add new InferenceHeuristics, which are used to work out who is talking to whom - if you create any good ones, let me know! The config file lets you apply different weightings to each InferenceHeuristic.
Download (0.143MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1226 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above from publishers weekly search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed