Welcome to TCPDB
 
 

  Menu

· Home
· Archive
· FAQ
· Journal
· Links
· News
· Recommend Us
· Search
· Statistics
· Top
· Your Account
 

  Languages

Select Interface Language:

 

 
 
Welcome to the TCPDB.

TCPDB is a Web application to keep track of your IP addresses and hosts.
TCPDB is suited for both small and large networks with many locations and subnets.
Up to one A Class or 16777216 addresses is supported.
TCPDB is written by Eirik Jorstad and uses PHP and MySql.

Demo
Username: demo
Password: demo

You can donate $200 to TCPDB project by using PayPal and you will receive an License Number.
Donate/Buy TCPDB
 
 


 
 
Screenshot`s

 
 


 
 
Recommendation, Install and Change log

Recommendation.
Apache or IIS, PHP and MySql.
Pentium II 400
256 MB Memory
200 MB Free disk space.

Install on Linux/Unix.
Logon as root.
Unpack the software into web directory.
Create the mysql database.
mysqladmin create tcpdb
mysql tcpdb < tcpdb.sql

Logon.
Goto your http://yourdomain.com/tcpdb
Username: admin
Password: admin
Remember to change the administrator username and password in config.php file.

Install on Windows.
Download EasyPHP from http://www.easyphp.org/
Install EasyPHP
Unpack the TCPDB software into web directory C:Program FilesEasyPHP1-7www.
Create the mysql database.
C:Program FilesEasyPHP1-7mysqlbinmysqladmin create tcpdb
C:Program FilesEasyPHP1-7mysqlbinmysql tcpdb < C:Program FilesEasyPHP1-7wwwtcpdb.sql

Logon.
Goto your http://yourdomain.com/tcpdb
Username: admin
Password: admin


Change log
TCPDB 1.0
First release.

TCPDB 1.1
Code Cleanup.

TCPDB 1.2
Code Cleanup and some look and feel.

TCPDB 1.3
Event logging and global font and colors.
Upgrade from ver 1.2 to 1.3 you must add this table into MySql database
CREATE TABLE log (
  log varchar(250) default NULL,
  createdate timestamp(14) NOT NULL,
  subnet_id int(11) NOT NULL auto_increment,
  PRIMARY KEY  (subnet_id)
) TYPE=MyISAM;


TCPDB 1.4
Fix in Event logg and global font and colors.


TCPDB 1.5
Compatibility for Windows.
Major code improvements.


TCPDB 2.0
New Look.
Database Status.
Code Cleanup.
Upgrade from ver 1.x to 2.0 you must change TIMESTAMP lenght in MySql database.

ALTER TABLE `dhcp` CHANGE `createdate` `createdate` TIMESTAMP( 14 ) DEFAULT NULL;
ALTER TABLE `location` CHANGE `createdate` `createdate` TIMESTAMP( 14 ) DEFAULT NULL;
ALTER TABLE `machine_type` CHANGE `createdate` `createdate` TIMESTAMP( 14 ) DEFAULT NULL;
ALTER TABLE `os` CHANGE `createdate` `createdate` TIMESTAMP( 14 ) DEFAULT NULL;
ALTER TABLE `tcpip` CHANGE `createdate` `createdate` TIMESTAMP( 14 ) DEFAULT NULL;
ALTER TABLE `user` CHANGE `createdate` `createdate` TIMESTAMP( 14 ) DEFAULT NULL;


TCPDB 2.1
Sort order on every table view.
More log data.
Security on deleting.

TCPDB 2.2
Bug in sort order.
Windows install documents.
Some new Look.
Code Cleanup.
NsLookup functions.
Ping functions (Linux/Unix only).

TCPDB 2.3
Check if hostname already exist when adding or updating a new host.
Global error handling for PHP in config.php.
PayPal for license.
Bug in NsLookup is fixed.
Some new looks.

TCPDB 2.4
Code Cleanup in Event log.
Prompt when deleting OS.
Prompt when deleting Machine Type.
Prompt when deleting DHCP.
Prompt when deleting User and some changes on edit User.
Export subnet to csv file.


TCPDB 2.5
Bug in license is fixed.
Field selection on export.
Auto refresh of margin when adding or deleting locations.
Hide Username and Password in IE adress bar.

TCPDB 3.0
Major upgrade.
TCPDB now support up to one A Class or 16777216 addresses.
Code Cleanup.
Prompt when deleting Subnet.
Prompt when deleting Subnetmask.
DHCP is fixed for large networks.
Select limited view on subnets.
Export now supports large networks and subnetmask.
Limit on search result.
Important to delete all old web files before upgrade to 3.0 also config.php.
Upgrade from ver 2.x to 3.0 you must make some changes in MySql database.

CREATE TABLE subnetmask (
  hosts int(10) default NULL,
  subnetmask1 varchar(15) default NULL,
  subnetmask2 int(2) default NULL,
  class varchar(1) default NULL,
  createdate timestamp(14) NOT NULL,
  subnetmask_id int(11) NOT NULL auto_increment,
  PRIMARY KEY  (subnetmask_id)
) TYPE=MyISAM;

INSERT INTO subnetmask VALUES (1,'255.255.255.255',32,'D',20040902232413,2);
INSERT INTO subnetmask VALUES (4,'255.255.255.252',30,'D',20040902232614,4);
INSERT INTO subnetmask VALUES (8,'255.255.255.248',29,'D',20040902232705,5);
INSERT INTO subnetmask VALUES (16,'255.255.255.240',28,'D',20040902232753,6);
INSERT INTO subnetmask VALUES (32,'255.255.255.224',27,'D',20040902232943,7);
INSERT INTO subnetmask VALUES (64,'255.255.255.192',26,'D',20040902233039,8);
INSERT INTO subnetmask VALUES (128,'255.255.255.128',25,'D',20040902233136,9);
INSERT INTO subnetmask VALUES (256,'255.255.255.0',24,'C',20040902233234,10);
INSERT INTO subnetmask VALUES (512,'255.255.254.0',23,'C',20040902233332,11);
INSERT INTO subnetmask VALUES (1024,'255.255.252.0',22,'C',20040902233416,12);
INSERT INTO subnetmask VALUES (2048,'255.255.248.0',21,'C',20040902233507,13);
INSERT INTO subnetmask VALUES (4096,'255.255.240.0',20,'C',20040902233620,14);
INSERT INTO subnetmask VALUES (8192,'255.255.224.0',19,'C',20040902233747,15);
INSERT INTO subnetmask VALUES (16384,'255.255.192.0',18,'C',20040902234459,16);
INSERT INTO subnetmask VALUES (32768,'255.255.128.0',17,'C',20040902234620,17);
INSERT INTO subnetmask VALUES (65536,'255.255.0.0',16,'B',20040902234808,18);
INSERT INTO subnetmask VALUES (131072,'255.254.0.0',15,'B',20040902234918,19);
INSERT INTO subnetmask VALUES (262144,'255.252.0.0',14,'B',20040902235050,20);
INSERT INTO subnetmask VALUES (524288,'255.248.0.0',13,'B',20040903000559,21);
INSERT INTO subnetmask VALUES (1048576,'255.249.0.0',12,'B',20040903000727,22);
INSERT INTO subnetmask VALUES (2097152,'255.224.0.0',11,'B',20040903000906,23);
INSERT INTO subnetmask VALUES (4194304,'255.192.0.0',10,'B',20040903001019,24);
INSERT INTO subnetmask VALUES (8388608,'255.128.0.0',9,'B',20040903001220,25);
INSERT INTO subnetmask VALUES (16777216,'255.0.0.0',8,'A',20040903001634,26);

ALTER TABLE `tcpip` DROP `sort`;
ALTER TABLE `tcpip` ADD `mask` INT( 2 ) AFTER `tcpip`;
ALTER TABLE `subnet` ADD `mask` INT( 2 ) AFTER `tcpip`;
ALTER TABLE `tcpip` ADD INDEX ( `subnet_id` );
ALTER TABLE `dhcp` CHANGE `a` `a` INT( 11 ) DEFAULT NULL;
ALTER TABLE `dhcp` CHANGE `b` `b` INT( 11 ) DEFAULT NULL;
Howto Linux:
Logon as root.
Command: mysql tcpdb
Paste the sql commands above in the mysql console.
Howto Windows EasyPHP:
Command: c:Program FilesEasyPHP1-7mysqlbinmysql tcpdb
Paste the sql commands above in the mysql console.

TCPDB 3.1
A major bug in adding D Class net is fixed.
Code Cleanup.

TCPDB 3.2
A bug in the modul search and edit is fixed.

TCPDB 3.3
A bug in export to csv is fixed.
It`s now possible to set an administrator user in the config file.
A new tool for optimizing the database.
MySql server information and PHP information has been added under tools.
Cursor is automatic set on username at login.
Under location it`s now possible to see the usage of every subnet.
Code Cleanup.

TCPDB 3.4
Cursor is automatic set on hostname when edit host.
Cursor is automatic set on Add Location.
Cursor is automatic set on Add OS.
Cursor is automatic set on Add Machine Type.
Cursor is automatic set on Add User.
Cursor is automatic set on Search in margin.
Back button on MySql info and PHP info.

TCPDB 3.5
Code cleanup and code documentation.

TCPDB 3.6
It`s now possible to edit the Location name.
Some new looks.

TCPDB 3.7
It`s now possible to edit the Subnet name and move it to another location.
It`s now possible to rename location in the config.php file.
It`s now possible to search for subnet`s.

TCPDB 3.8
If you have many locations it`s now possible to use an drop down box for locations.
Some new looks.
 
 


 
 


[ Add Download | New | Popular | Top Rated ]
 
 


 
 
Downloads Main Categories

· TCPDB Downloads 
    
There are 10 Downloads and 1 Categories in our database
 
 

  Search



 

  News

There isn't a Biggest Story for Today, yet.
 

  Freshmeat

· tag:freshmeat.net,2005:/index freshmeat.net Releases 2009-07-02T22:23:13Z tag:freshmeat.net,2005:Release/301895 2009-07-02T17:15:30Z 2009-07-02T22:23:13Z MathGL 1.9 <p><a href="http://freshmeat.net/projects/mathgl"><img alt="Fa7519d3def6bcd2e87779f2743eb131_thumb" src="http://freshmeat.net/screenshots/fa/75/fa7519d3def6bcd2e87779f2743eb131_thumb.png?1237060101" /></a></p>MathGL is a library for making high-qualityscientific graphics under Linux and Windows, fastdata plotting and handling of large data arrays,working in window and console modes, and easilyembedding into other programs. It has more than 40general types of graphics for 1d, 2d, and 3d dataarrays. It can export graphics to raster andvector (EPS or SVG) formats. It has an OpenGLinterface and can be used from console programs.It has functions for data handling and MGLlanguage scripting for simplification of dataplotting. It has several types of transparency andsmoothed lightning, vector fonts and TeX-likeformula drawing, an arbitrary curvilinearcoordinate system, and many other useful things.<p><strong>Changes:</strong> Improved export in EPS and SVG. A new MGL parser for handling an expression as an argument. The function Window() can have NULL-function (draw bitmap, which is useful for Fortran). New plots: Traj(), ContD(), Radar(), Flow(mglPoint p, etc.). A function for predefined curvilinear coordinates. A function for indirect data access. A function for manual setting of ticks/subticks line style. Manual colors for multiple curves (palette) directly in function style. Improved ticks drawing if RotatedText=false. Selectable base type for floating point numbers (double or float). Other minor features and bugfixes.</p><p><strong>Release Tags:</strong> Major feature enhancements, Major bugfixes</p><p><strong>Tags:</strong> Scientific/Engineering, Mathematics, Visualization</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/mOVbXqXbJ_YH0W1oCc5gD_pqdrw/0/da"><img src="http://feedads.g.doubleclick.net/~at/mOVbXqXbJ_YH0W1oCc5gD_pqdrw/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/mOVbXqXbJ_YH0W1oCc5gD_pqdrw/1/da"><img src="http://feedads.g.doubleclick.net/~at/mOVbXqXbJ_YH0W1oCc5gD_pqdrw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/Kdv6AMUz9gA" height="1" width="1"/> A.Balakin http://freshmeat.net/users/aabalakin http://freshmeat.net/projects/mathgl#release_301895 tag:freshmeat.net,2005:Release/301911 2009-07-02T22:19:41Z 2009-07-02T22:20:57Z CUPS 1.3.11 <p><a href="http://freshmeat.net/projects/cups"><img alt="491dba27f759fef2991f99746f8a7917_thumb" src="http://freshmeat.net/screenshots/49/1d/491dba27f759fef2991f99746f8a7917_thumb.png?1237142128" /></a></p>CUPS is a standards-based printing system for Mac OS X and other Unix-like operating systems. It provides the System V and Berkeley command line interfaces, and uses the Internet Printing Protocol ("IPP") as the basis for managing print jobs and queues. The Line Printer Daemon (LPD) Server Message Block (SMB), and AppSocket (a.k.a. JetDirect) protocols are also supported with reduced functionality. CUPS adds network printer browsing and PostScript Printer Description ("PPD") based printing options to support real world printing.<p><strong>Changes:</strong> This release fixes some scheduler and Web interface issues and improves PDF printing.</p><p><strong>Tags:</strong> Internet, printing, Software Development, Libraries, PDF, PostScript</p><p><strong>Licenses:</strong> GPL, LGPL</p><p><a href="http://feedads.g.doubleclick.net/~at/0udtdS8u6d5yUI_Chw8k1jH9uWE/0/da"><img src="http://feedads.g.doubleclick.net/~at/0udtdS8u6d5yUI_Chw8k1jH9uWE/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/0udtdS8u6d5yUI_Chw8k1jH9uWE/1/da"><img src="http://feedads.g.doubleclick.net/~at/0udtdS8u6d5yUI_Chw8k1jH9uWE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/1LVXA1mrApI" height="1" width="1"/> Michael Sweet http://freshmeat.net/users/easysw http://freshmeat.net/projects/cups#release_301911 tag:freshmeat.net,2005:Release/301909 2009-07-02T21:48:15Z 2009-07-02T22:20:34Z NoxBot 0.4.1 NoxBot is a generic IRC bot. It aims to be crossplatform, modular, easy to use, featureful, easyfor developing plugins, and mostly RFC compliant.It is mostly designed to run out of the box.<p><strong>Changes:</strong> This release fixes a critical bug when bot has a nick collision on connect. It fixes a bug in the displaying of setting values. It fixes a critical bug on Windows where the bot would not start.</p><p><strong>Release Tags:</strong> Bugfixes, Minor</p><p><strong>Tags:</strong> Communications, Chat, IRC, Internet</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/LLFkLS4xQluqbtmHa9hSuqs4OZI/0/da"><img src="http://feedads.g.doubleclick.net/~at/LLFkLS4xQluqbtmHa9hSuqs4OZI/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/LLFkLS4xQluqbtmHa9hSuqs4OZI/1/da"><img src="http://feedads.g.doubleclick.net/~at/LLFkLS4xQluqbtmHa9hSuqs4OZI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/skuBmoeDrcc" height="1" width="1"/> CyaNox http://freshmeat.net/users/CyaNox http://freshmeat.net/projects/noxbot#release_301909 tag:freshmeat.net,2005:Release/301910 2009-07-02T22:14:12Z 2009-07-02T22:19:37Z WebGUI 7.7.13 <p><a href="http://freshmeat.net/projects/webgui"><img alt="Fa9769a57a5c0968d6bbc0e119566518_thumb" src="http://freshmeat.net/screenshots/fa/97/fa9769a57a5c0968d6bbc0e119566518_thumb.jpg?1237046650" /></a></p>WebGUI is a content management framework built toallow average business users to build and maintaincomplex Web sites. It is modular, pluggable, andplatform independent. It was designed to allow thepeople who create the content to manage it online,rather than content management taking up the timeof busy IT staff. WebGUI comes with a full host offeatures including shopping cart, subscriptions,forums, photo galleries, FAQs, link lists, blogs,SQL reports, a Web services interface, and a veryconfigurable user privilege and profiling system.<p><strong>Changes:</strong> This release contains several fixes for Calendar. A Javascript syntax error prevented the DatePicker from working properly, iCal feeds are now processed correctly, and error messages from events are now internationalized. A bug in how the Collaboration System handles Metadata form fields has been fixed.</p><p><strong>Release Tags:</strong> Beta</p><p><strong>Tags:</strong> Internet, Web, Dynamic Content, Site Management, Office/Business, Software Development, Libraries, Application Frameworks, Widget Sets</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/XwanN1w3P3OxmFTF5AzxsDLeEI8/0/da"><img src="http://feedads.g.doubleclick.net/~at/XwanN1w3P3OxmFTF5AzxsDLeEI8/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/XwanN1w3P3OxmFTF5AzxsDLeEI8/1/da"><img src="http://feedads.g.doubleclick.net/~at/XwanN1w3P3OxmFTF5AzxsDLeEI8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/RWj8ZGNGiF4" height="1" width="1"/> colink http://freshmeat.net/users/colink http://freshmeat.net/projects/webgui#release_301910 tag:freshmeat.net,2005:Release/301908 2009-07-02T21:21:43Z 2009-07-02T22:18:40Z Reverse Snowflake Joins 0.34 <p><a href="http://freshmeat.net/projects/revj"><img alt="A86595bcf497aba7a36387a95c4d14b3_thumb" src="http://freshmeat.net/screenshots/a8/65/a86595bcf497aba7a36387a95c4d14b3_thumb.png?1245442952" /></a></p>Reverse Snowflake Joins is a tool that parses SQLSelect statements and generates a diagram. Inaddition to joins, the diagram shows parts of theunderlying SQL directly in the diagram. Forexample x=30, GROUP BY (year), SUM(profit), HAVINGMIN(age) > 18.<p><strong>Changes:</strong> Support for "ORDER BY x DESC". Bugfixes related to "case".</p><p><strong>Release Tags:</strong> Minor bugfixes, Minor feature enhancements</p><p><strong>Tags:</strong> SQL, Front-Ends, Diagram</p><p><strong>Licenses:</strong> BSD Revised</p><p><a href="http://feedads.g.doubleclick.net/~at/OKTSlZnj7O3Kcik_XwblLuPpb-k/0/da"><img src="http://feedads.g.doubleclick.net/~at/OKTSlZnj7O3Kcik_XwblLuPpb-k/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/OKTSlZnj7O3Kcik_XwblLuPpb-k/1/da"><img src="http://feedads.g.doubleclick.net/~at/OKTSlZnj7O3Kcik_XwblLuPpb-k/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/zD2harE_qko" height="1" width="1"/> alxtoth http://freshmeat.net/users/alxtoth http://freshmeat.net/projects/revj#release_301908 tag:freshmeat.net,2005:Release/301907 2009-07-02T20:55:52Z 2009-07-02T22:13:20Z Sound Converter 1.4.4 <p><a href="http://freshmeat.net/projects/soundconverter"><img alt="Ec2b15599f33dd07d7262a83a3351573_thumb" src="http://freshmeat.net/screenshots/ec/2b/ec2b15599f33dd07d7262a83a3351573_thumb.png?1237054949" /></a></p>Sound Converter is a simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files.<p><strong>Changes:</strong> This release forces vbr-max-bitrate to 320 when using mp3+vbr, since gstreamer now defaults to 160.GVfs authentication has been activated to allow logging in to remote shares. A crash in query_duration when pipeline is null is fixed. Deprecated Tooltip code has changed; SoundConverter now requires GTK 2.12+. Status is reset after clearing the file list. An unhandled exception when removing original files went bad has been fixed. This release adds Bulgarian, Danish, English (Australia), Estonian, Japanese, and Vietnamese translations. Rosetta sync; all translations have been updated.</p><p><strong>Tags:</strong> Desktop Environment, GNOME, multimedia, Sound/Audio, Conversion</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/V2enkBE89xyAeqcFSOQOYasXZH0/0/da"><img src="http://feedads.g.doubleclick.net/~at/V2enkBE89xyAeqcFSOQOYasXZH0/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/V2enkBE89xyAeqcFSOQOYasXZH0/1/da"><img src="http://feedads.g.doubleclick.net/~at/V2enkBE89xyAeqcFSOQOYasXZH0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/Flt1QXIDdW8" height="1" width="1"/> Gautier Portet http://freshmeat.net/users/kassoulet http://freshmeat.net/projects/soundconverter#release_301907 tag:freshmeat.net,2005:Release/301906 2009-07-02T20:42:46Z 2009-07-02T22:11:17Z ProcessMaker OSS 1.2-2425 <p><a href="http://freshmeat.net/projects/processmaker"><img alt="A8eac4529a664b560669b6dff47a22a6_thumb" src="http://freshmeat.net/screenshots/a8/ea/a8eac4529a664b560669b6dff47a22a6_thumb.jpg?1237059958" /></a></p>ProcessMaker is workflow and business process management software that allows small tomedium-sized organizations to automate documentintensive, approval-based processes across varioussystems including finance, HR, and operations. An entirely Web-based, AJAX-enabled application built on the popular open source WAMP/LAMPstacks, it includes tools to design forms, create documents, assign roles and users, create routing rules, and send alerts. A full service-orientated architecture (SOA) and Web Services interface allows the software todirectly connect with popular business intelligence, content management, and enterprise resource planning systems.<p><strong>Changes:</strong> New feature: PM Tables allow admins to create, edit, and manage new database tables directly from ProcessMaker. There is a new option to upload input documents directly from Dynaforms, eliminating the need to include input documents as additional steps. There are additional bugfixes.</p><p><strong>Release Tags:</strong> Minor</p><p><strong>Tags:</strong> Information Management, Workflow Frameworks, Office/Business, groupware</p><p><strong>Licenses:</strong> AGPL</p><p><a href="http://feedads.g.doubleclick.net/~at/lr6ld_smKWQ1s52i6qE29BC_8g4/0/da"><img src="http://feedads.g.doubleclick.net/~at/lr6ld_smKWQ1s52i6qE29BC_8g4/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/lr6ld_smKWQ1s52i6qE29BC_8g4/1/da"><img src="http://feedads.g.doubleclick.net/~at/lr6ld_smKWQ1s52i6qE29BC_8g4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/Yy5MR9Fd9z0" height="1" width="1"/> aew4 http://freshmeat.net/users/processmaker http://freshmeat.net/projects/processmaker#release_301906 tag:freshmeat.net,2005:Release/301905 2009-07-02T20:37:03Z 2009-07-02T22:10:19Z OTRS 2.4.0 beta4 <p><a href="http://freshmeat.net/projects/otrs"><img alt="E118f6d89741593f4cb04c6ee6bcfd86_thumb" src="http://freshmeat.net/screenshots/e1/18/e118f6d89741593f4cb04c6ee6bcfd86_thumb.png?1237049748" /></a></p>OTRS is a Web-based help desk and ticket system that providesa tailored set of effective and field-tested features to help service organizations to manage requests more efficiently. It relieves service agents of routine activities and provides a transparent view of the current status of a customer's request at any time. As a framework, it is the fundamentalbasis of OTRS::ITSM, an ITIL-compliant IT service management solution. It supports MySQL, MS SQL, PosgreSQL, Oracle, and DB2.<p><strong>Changes:</strong> All bugfixes are related to the upcoming WYSIWYG editor and the new dashboard. These features are now ready to use in the intended way. A 27th language, Latvian, has been added.</p><p><strong>Release Tags:</strong> language, Major, Beta, Bugfixes</p><p><strong>Tags:</strong> Communications, Email, Database, Internet, Web, Dynamic Content, Software Development, Archiving, Telephony, CGI Tools/Libraries, Office/Business, Information Management, Issue Tracking</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/szDqcj6XC1miCGVFWeXfrg6NTJM/0/da"><img src="http://feedads.g.doubleclick.net/~at/szDqcj6XC1miCGVFWeXfrg6NTJM/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/szDqcj6XC1miCGVFWeXfrg6NTJM/1/da"><img src="http://feedads.g.doubleclick.net/~at/szDqcj6XC1miCGVFWeXfrg6NTJM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/qx9dlN7VzzM" height="1" width="1"/> Hauke Boettcher http://freshmeat.net/users/1stGuardian http://freshmeat.net/projects/otrs#release_301905 tag:freshmeat.net,2005:Release/301904 2009-07-02T20:34:07Z 2009-07-02T22:04:43Z Peerscape 3.1 <p><a href="http://freshmeat.net/projects/peerscape"><img alt="D69638a74c34d1ccb3f8043d82dae337_thumb" src="http://freshmeat.net/screenshots/d6/96/d69638a74c34d1ccb3f8043d82dae337_thumb.png?1242931519" /></a></p>Peerscape is an experimental peer-to-peer social networkimplemented as an extension to the Firefox web browser. It implements a kind of serverless read-write web supporting third-party AJAX application development.<p><strong>Changes:</strong> The browser status bar now tells you if you have pending invitations. There have also been user interface improvements and fixes for many bugs over the course of the series of beta releases.</p><p><strong>Tags:</strong> P2P, Networking, Cryptography, social network, research</p><p><strong>Licenses:</strong> MIT/X</p><p><a href="http://feedads.g.doubleclick.net/~at/P2BWfnu5Q_ukA280Zn8XjkJilik/0/da"><img src="http://feedads.g.doubleclick.net/~at/P2BWfnu5Q_ukA280Zn8XjkJilik/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/P2BWfnu5Q_ukA280Zn8XjkJilik/1/da"><img src="http://feedads.g.doubleclick.net/~at/P2BWfnu5Q_ukA280Zn8XjkJilik/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/FAVgl4FEQCY" height="1" width="1"/> http://freshmeat.net/users/yemir http://freshmeat.net/projects/peerscape#release_301904 tag:freshmeat.net,2005:Release/301903 2009-07-02T20:16:45Z 2009-07-02T22:01:29Z JOpt.SDK 2.3.4 <p><a href="http://freshmeat.net/projects/joptsdk"><img alt="4a2cf2708f906435b74c4e81d9abab82_thumb" src="http://freshmeat.net/screenshots/4a/2c/4a2cf2708f906435b74c4e81d9abab82_thumb.jpg?1237057368" /></a></p>JOpt.SDK is an automated vehicle routing and dispatching component for both Java/J2SE and .NET. It can solve Travelling Salesman Problems (TSP) and Capacitated Vehicle Routing Problems with Time Windows (CVRP,VRPTW). It offers route and transport optimisation with respect to various constraints such as time windows, load capacities, and prescribed itinerary. The component is based on genetic algorithms, and automatically determines an optimized allocation of vehicels to an arbitrary set of orders.<p><strong>Changes:</strong> This release adds a new Callback function that allows online monitoring of several different constraint indicators during the optimization process.</p><p><strong>Release Tags:</strong> JOpt.NET, Feature Enhancements</p><p><strong>Tags:</strong> Software Development, Libraries, Java Libraries, Scientific/Engineering, Geographical, Office/Business, Scheduling, Mathematics</p><p><a href="http://feedads.g.doubleclick.net/~at/0DXcROp3j4f9f4Rpw15V8t-uAIQ/0/da"><img src="http://feedads.g.doubleclick.net/~at/0DXcROp3j4f9f4Rpw15V8t-uAIQ/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/0DXcROp3j4f9f4Rpw15V8t-uAIQ/1/da"><img src="http://feedads.g.doubleclick.net/~at/0DXcROp3j4f9f4Rpw15V8t-uAIQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/l5JWCFVruk0" height="1" width="1"/> dnaevolutions http://freshmeat.net/users/dnaevolutions http://freshmeat.net/projects/joptsdk#release_301903 tag:freshmeat.net,2005:Release/301902 2009-07-02T20:13:01Z 2009-07-02T22:00:48Z JumpBox for Silverstripe 1.1.6 <p><a href="http://freshmeat.net/projects/silverstripejumpbox"><img alt="662ebe90ecc2e009729e49659288ec18_thumb" src="http://freshmeat.net/screenshots/66/2e/662ebe90ecc2e009729e49659288ec18_thumb.png?1237060394" /></a></p>Silverstripe is a standards-compliant contentmanagement system that allows the user to manage adynamic content site. Silverstripe utilizes an MVCarchitecture and has a desktop feel with its useof AJAX-based controls. This JumpBox is based onthe 1.1 JumpBox Platform and includes a backupsystem that supports archiving the state of theJumpBox to NFS, Windows File Shares, and AmazonS3.<p><strong>Changes:</strong> The SilverStripe application has been upgraded to release 2.3.2. This JumpBox should be able to upgrade from version 1.0 and newer. This release contains minor bugfixes and improvements.</p><p><strong>Tags:</strong> Internet, Web, Site Management, Dynamic Content</p><p><a href="http://feedads.g.doubleclick.net/~at/XaAHMPmMEYdoYba4RYPE2HLrFD8/0/da"><img src="http://feedads.g.doubleclick.net/~at/XaAHMPmMEYdoYba4RYPE2HLrFD8/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/XaAHMPmMEYdoYba4RYPE2HLrFD8/1/da"><img src="http://feedads.g.doubleclick.net/~at/XaAHMPmMEYdoYba4RYPE2HLrFD8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/QqOeh-IjqOY" height="1" width="1"/> JumpBox http://freshmeat.net/users/grid7 http://freshmeat.net/projects/silverstripejumpbox#release_301902 tag:freshmeat.net,2005:Release/301901 2009-07-02T20:07:32Z 2009-07-02T21:56:20Z Canadian Payroll Jul_2009-00 <p><a href="http://freshmeat.net/projects/cdnpayroll"><img alt="9e882fad3e99aa9b60dcec518849deaa_thumb" src="http://freshmeat.net/screenshots/9e/88/9e882fad3e99aa9b60dcec518849deaa_thumb.jpg?1237046329" /></a></p>CdnPayroll calculates Canadian payroll taxes, CPP, EI, WCB, HP, etc. The command line version produces various outputs for stand-alone use or for use with another program. It includes a simple GUI for Linux written in Kaptain and a CGI version for Web use.<p><strong>Changes:</strong> Changes due to 90th edition t4127-jul-09e, effective July 01, 2009. New Brunswick has significant changes. SK and NL have limit changes affecting LCP. There are no changes for anywhere else in the country.</p><p><strong>Tags:</strong> Office/Business, Financial, Accounting</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/OK3exznNwLVN_xAkIj0T8XgCya0/0/da"><img src="http://feedads.g.doubleclick.net/~at/OK3exznNwLVN_xAkIj0T8XgCya0/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/OK3exznNwLVN_xAkIj0T8XgCya0/1/da"><img src="http://feedads.g.doubleclick.net/~at/OK3exznNwLVN_xAkIj0T8XgCya0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/ZxnOyaZ39dY" height="1" width="1"/> pevans http://freshmeat.net/users/pevans http://freshmeat.net/projects/cdnpayroll#release_301901 tag:freshmeat.net,2005:Release/301900 2009-07-02T19:29:49Z 2009-07-02T21:54:39Z xtcModified 1.01 <p><a href="http://freshmeat.net/projects/xtcmodified"><img alt="Dcd3446aa63e1be028fda0aba4f1052f_thumb" src="http://freshmeat.net/screenshots/dc/d3/dcd3446aa63e1be028fda0aba4f1052f_thumb.png?1246562108" /></a></p>xtcModified is a bugfixed and enhanced fork of xt:Commerce 3.04 SP2.1, published under the GNU GPL.<p><strong>Changes:</strong> Various fixes and updates.</p><p><strong>Release Tags:</strong> Stable</p><p><strong>Tags:</strong> ecommerce</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/JzRfe_GIF1rycE-ylQd15Bkw8-Q/0/da"><img src="http://feedads.g.doubleclick.net/~at/JzRfe_GIF1rycE-ylQd15Bkw8-Q/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/JzRfe_GIF1rycE-ylQd15Bkw8-Q/1/da"><img src="http://feedads.g.doubleclick.net/~at/JzRfe_GIF1rycE-ylQd15Bkw8-Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/2fDqb_lXdf0" height="1" width="1"/> Tomcraft http://freshmeat.net/users/Tomcraft http://freshmeat.net/projects/xtcmodified#release_301900 tag:freshmeat.net,2005:Release/301898 2009-07-02T19:01:20Z 2009-07-02T19:13:56Z Geeqie Image Viewer 1.0beta2 Geeqie is a lightweight image viewer. It wasforked from GQview. The development is focused onfeatures for photo collection maintenance: rawformat, EXIF/IPTC/XMP metadata, and integrationwith programs like UFraw, ImageMagick, Gimp,gPhoto, or ExifTool.<p><strong>Changes:</strong> This release is mainly focused on fixing bugs. It also adds sample external scripts for lossless rotation, photo management with ufraw-batch, and import of GQview metadata. Localized strings were frozen and po files are prepared for translators.</p><p><strong>Release Tags:</strong> translator, Minor feature enhancements, Bugfixes</p><p><strong>Tags:</strong> multimedia, Graphics, Viewers</p><p><strong>Licenses:</strong> GPLv2</p><p><a href="http://feedads.g.doubleclick.net/~at/f4O2UbtbvK5_5jWO2J8t9dhXt34/0/da"><img src="http://feedads.g.doubleclick.net/~at/f4O2UbtbvK5_5jWO2J8t9dhXt34/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/f4O2UbtbvK5_5jWO2J8t9dhXt34/1/da"><img src="http://feedads.g.doubleclick.net/~at/f4O2UbtbvK5_5jWO2J8t9dhXt34/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/ryGpSjltpYs" height="1" width="1"/> nadvornik http://freshmeat.net/users/nadvornik http://freshmeat.net/projects/geeqie#release_301898 tag:freshmeat.net,2005:Release/301897 2009-07-02T18:39:19Z 2009-07-02T18:40:44Z eduMagnet 0.09 <p><a href="http://freshmeat.net/projects/edumagnet"><img alt="A042a14766ffdb210ac6b2cc9b41cff7_thumb" src="http://freshmeat.net/screenshots/a0/42/a042a14766ffdb210ac6b2cc9b41cff7_thumb.jpg?1240428312" /></a></p>eduMagnet can search and access different online video sites (YouTube, Blip, TeacherTube, RSS, German public TV, etc). Students and pupils can create playlists of lectures and talks and play educational content using an embedded video player (MPlayer). As an OLPC project eduMagnet is developed for the sugar OS, but can also be used in any Linux environment using GTK. Students may synchronize playlists to the online platform eduMagnet.org so that other users can subscribe to their playlists. Access to new online video sites can easily be added using python plugins ("Magnets").<p><strong>Changes:</strong> eduMagnet "1st contact" now features a contact list. The player now shows the video while seeking and has a download history. There also is a new Legal Torrents Magnet.</p><p><strong>Release Tags:</strong> Legal Torrents, seeking, contacts</p><p><strong>Tags:</strong> education, Video, Player, playlist, blip, edumagnet, magnet, iptv, YouTube, Web</p><p><strong>Licenses:</strong> GPLv2</p><p><a href="http://feedads.g.doubleclick.net/~at/F5ri3U5pC3veLixrW8jzGr-zBko/0/da"><img src="http://feedads.g.doubleclick.net/~at/F5ri3U5pC3veLixrW8jzGr-zBko/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/F5ri3U5pC3veLixrW8jzGr-zBko/1/da"><img src="http://feedads.g.doubleclick.net/~at/F5ri3U5pC3veLixrW8jzGr-zBko/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/H9srcEChbzE" height="1" width="1"/> Kristian Mueller http://freshmeat.net/users/Kriss23 http://freshmeat.net/projects/edumagnet#release_301897 tag:freshmeat.net,2005:Release/301894 2009-07-02T16:55:47Z 2009-07-02T18:39:24Z UDAV 0.5.2 <p><a href="http://freshmeat.net/projects/udav"><img alt="26111704624ff23f143e580304c459da_thumb" src="http://freshmeat.net/screenshots/26/11/26111704624ff23f143e580304c459da_thumb.png?1237060100" /></a></p>UDAV is a cross-platform program for data arrayvisualization based on the MathGL library. Itsupports a wide spectrum of graphics, simplescript language, and visual data handling andediting. It has a windowed interface for dataviewing, changing, and plotting. It can executeMGL scripts, set up and rotate graphics, export tobitmap or vector (EPS or SVG) files, draw TeX-likeformulas, and so on.<p><strong>Changes:</strong> A mostly new set of toolbutton icons. Help and table windows are closed automatically. The last used file path is saved now. Many improvements from MathGL v.1.9. A drawing time indicator has been added to the status bar. Spell checking of hints and a man page have been added. Compiler warnings are cleaned up.</p><p><strong>Release Tags:</strong> Minor feature enhancements, Minor bugfixes</p><p><strong>Tags:</strong> Scientific/Engineering, Visualization, Mathematics</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/VPiMUEa-4kepcjP1qj7nBEYnxfk/0/da"><img src="http://feedads.g.doubleclick.net/~at/VPiMUEa-4kepcjP1qj7nBEYnxfk/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/VPiMUEa-4kepcjP1qj7nBEYnxfk/1/da"><img src="http://feedads.g.doubleclick.net/~at/VPiMUEa-4kepcjP1qj7nBEYnxfk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/7bYjXdiLeUs" height="1" width="1"/> A.Balakin http://freshmeat.net/users/aabalakin http://freshmeat.net/projects/udav#release_301894 tag:freshmeat.net,2005:Release/301896 2009-07-02T18:12:49Z 2009-07-02T18:37:48Z Ctalk 0.0.96a rc3 Ctalk is a compact object oriented language thatadds classes, methods, operator overloading, andinheritance to otherwise standard C programs. Youcan use only a few Ctalk objects and methods in aC program, or you can write programs entirely inCtalk. The package includes a front end for GCC, aC99 compatible preprocessor, and class andrun-time libraries. The package also includessample programs, a tutorial, and languagereference.<p><strong>Changes:</strong> This release allows programs to define methods that handle exceptions and adds many internal improvements.</p><p><strong>Tags:</strong> Software Development, Libraries, Interpreters</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/WG6TkOqsXTOJPSnCjVeoTvojF1c/0/da"><img src="http://feedads.g.doubleclick.net/~at/WG6TkOqsXTOJPSnCjVeoTvojF1c/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/WG6TkOqsXTOJPSnCjVeoTvojF1c/1/da"><img src="http://feedads.g.doubleclick.net/~at/WG6TkOqsXTOJPSnCjVeoTvojF1c/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/lOt3yO6fgEQ" height="1" width="1"/> thx1132 http://freshmeat.net/users/kiesling3 http://freshmeat.net/projects/ctalk-lang#release_301896 tag:freshmeat.net,2005:Release/301889 2009-07-02T14:58:01Z 2009-07-02T18:36:11Z Omnia XP 1.2-2 Alpha <p><a href="http://freshmeat.net/projects/omnia-xp"><img alt="5006732f33e97aec07d558593ac9283b_thumb" src="http://freshmeat.net/screenshots/50/06/5006732f33e97aec07d558593ac9283b_thumb.jpg?1246547157" /></a></p>Omnia XP is a remastering of Debian GNU/Linux 5.0 Lenny, with a visual interface easily adapted for deployment in small businesses and end users by facilitating migration to the Linux world. It supports a total of 12 architectures and runs from a live CD with an option for installing to a hard disk.<p><strong>Changes:</strong> New visuals and a new GDM. Better detection of hardware. Speed improvements. The image remains small (below 500 MB). Pidgin, a terminal server client, and a new Firefox theme and add-on (FireFTP). Updates to all packages. An icon for the installation disk. Installation in graphical mode. Some bugfixes.</p><p><strong>Tags:</strong> Linux, Linux Distributions, Debian Lenny</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/FEVa7BztNlvbwGWLdeqIOhOfRvs/0/da"><img src="http://feedads.g.doubleclick.net/~at/FEVa7BztNlvbwGWLdeqIOhOfRvs/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/FEVa7BztNlvbwGWLdeqIOhOfRvs/1/da"><img src="http://feedads.g.doubleclick.net/~at/FEVa7BztNlvbwGWLdeqIOhOfRvs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/eJmBXlvTFs4" height="1" width="1"/> http://freshmeat.net/users/straioto http://freshmeat.net/projects/omnia-xp#release_301889 tag:freshmeat.net,2005:Release/301888 2009-07-02T14:43:04Z 2009-07-02T18:30:18Z POMStrap 1.0.14 POMStrap is a little library whose purpose is to solve the Java JAR hell problem. It works as an application bootstrap that builds a classloaders tree based on Maven 2 dependencies declared in project files (pom). Using POMStrap allows you to execute an application depending on multiple versions of a library without any conflict.<p><strong>Changes:</strong> A custom group bugfix. A bugfix for better pom parent file properties support. Small lookup optimizations to speed up findclass/findresource. Avoids cyclic dependency in classloader. A cache feature on resources. enumeration != null has been removed, as findRessource always return an instance of enumeration (empty or not). A small fix to avoid deprecated in JDK5. Optimization in DependencyClassloader to avoid findClass if it has already been set as not found. A pomstrap.loadscope property to allow fetching the specified dependency artifact scope.</p><p><strong>Release Tags:</strong> Stable, cleanup, Bugfixes</p><p><strong>Tags:</strong> Software Development, Build Tools</p><p><a href="http://feedads.g.doubleclick.net/~at/eqLGjeQrikkoxkjdCe7Uslmh4lg/0/da"><img src="http://feedads.g.doubleclick.net/~at/eqLGjeQrikkoxkjdCe7Uslmh4lg/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/eqLGjeQrikkoxkjdCe7Uslmh4lg/1/da"><img src="http://feedads.g.doubleclick.net/~at/eqLGjeQrikkoxkjdCe7Uslmh4lg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/4D3dIlqKi3o" height="1" width="1"/> Alag http://freshmeat.net/users/Alag http://freshmeat.net/projects/pomstrap#release_301888 tag:freshmeat.net,2005:Release/301890 2009-07-02T15:18:14Z 2009-07-02T17:58:41Z XPTracker 20090702 <p><a href="http://freshmeat.net/projects/xptracker"><img alt="C717f499e3d0cdc635f9d89606114171_thumb" src="http://freshmeat.net/screenshots/c7/17/c717f499e3d0cdc635f9d89606114171_thumb.png?1237059812" /></a></p>XPTracker is a radical alternative agile planningtool aimed at keeping out of your way and makingsure you can see the stuff you care about at a glance. Included in this tool is a very advanced search system based on Lucene, an easy-to-use planning system based on Queues, and a customizable reporting engine (with burndown/scope creep charts) called Timelines.<p><strong>Changes:</strong> This release adds CSS fixes, making XPTracker compatible with Firefox 3.5 and Safari 4.</p><p><strong>Tags:</strong> Software Development, Bug Tracking, Office/Business, Scheduling</p><p><strong>Licenses:</strong> GPLv2</p><p><a href="http://feedads.g.doubleclick.net/~at/6uyPS6hsRN5yosVlN4fN3P1IyOo/0/da"><img src="http://feedads.g.doubleclick.net/~at/6uyPS6hsRN5yosVlN4fN3P1IyOo/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/6uyPS6hsRN5yosVlN4fN3P1IyOo/1/da"><img src="http://feedads.g.doubleclick.net/~at/6uyPS6hsRN5yosVlN4fN3P1IyOo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/GuWXpQsyJ4U" height="1" width="1"/> Stephen Starkey http://freshmeat.net/users/firepoet78 http://freshmeat.net/projects/xptracker#release_301890 tag:freshmeat.net,2005:Release/301891 2009-07-02T16:18:38Z 2009-07-02T17:57:24Z mxGraph 1.0.0.4 <p><a href="http://freshmeat.net/projects/mxgraph"><img alt="Db7494b2282836441fe4b7a688ab3909_thumb" src="http://freshmeat.net/screenshots/db/74/db7494b2282836441fe4b7a688ab3909_thumb.gif?1237057130" /></a></p>mxGraph is a JavaScript library that uses built-inbrowser capabilities to provide an interactivedrawing and diagramming solution. Targetapplications are Web based applications thatrequire workflow/BPM, diagram, network, or generalgraph editing to be available in-place on a Webpage.<p><strong>Changes:</strong> This releases fixes minor issues with the handlers in the Java visualization client and various bugs in two of the JavaScript visualization examples.</p><p><strong>Release Tags:</strong> Stable</p><p><strong>Tags:</strong> multimedia, Graphics, Editors, Vector-Based, Information Management, Workflow Frameworks, Software Development, User Interfaces, Scientific/Engineering, Visualization, Viewers</p><p><strong>Licenses:</strong> Other</p><p><a href="http://feedads.g.doubleclick.net/~at/pVONZoXCVq2H9pGmSBGiMZFndZ4/0/da"><img src="http://feedads.g.doubleclick.net/~at/pVONZoXCVq2H9pGmSBGiMZFndZ4/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/pVONZoXCVq2H9pGmSBGiMZFndZ4/1/da"><img src="http://feedads.g.doubleclick.net/~at/pVONZoXCVq2H9pGmSBGiMZFndZ4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/k9ViqUrRQTg" height="1" width="1"/> bensond http://freshmeat.net/users/BessyBoo http://freshmeat.net/projects/mxgraph#release_301891 tag:freshmeat.net,2005:Release/301893 2009-07-02T16:45:56Z 2009-07-02T17:54:49Z Zoph 0.7.0.6 <p><a href="http://freshmeat.net/projects/zoph"><img alt="6ad13c65f3cff6e8913de16558816023_thumb" src="http://freshmeat.net/screenshots/6a/d1/6ad13c65f3cff6e8913de16558816023_thumb.jpg?1237049784" /></a></p>There are many photo-gallery programs available. Zoph is different, as it concentrates on the management of large collection of photos instead of just showing them on the Web. It can store a lot of information about your photos, including the regular EXIF info, photographer, location, title, description, rating, and the people in the photo. Photos can appearin multiple albums and categories. Additional features include search, slideshows, lightboxes, email, access privileges, and multiple languages.<p><strong>Changes:</strong> This release fixes a cross-site scripting bug.</p><p><strong>Tags:</strong> Internet, multimedia, photo, photo management, Site Management, Web, Dynamic Content, Graphics, Presentation, Viewers</p><p><strong>Licenses:</strong> GPLv2</p><p><a href="http://feedads.g.doubleclick.net/~at/qB3mmECAI40aNg9mu1vPLVzKziY/0/da"><img src="http://feedads.g.doubleclick.net/~at/qB3mmECAI40aNg9mu1vPLVzKziY/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/qB3mmECAI40aNg9mu1vPLVzKziY/1/da"><img src="http://feedads.g.doubleclick.net/~at/qB3mmECAI40aNg9mu1vPLVzKziY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/My01oE9pXjo" height="1" width="1"/> Jeroen Roos http://freshmeat.net/users/jeroenr http://freshmeat.net/projects/zoph#release_301893 tag:freshmeat.net,2005:Release/301887 2009-07-02T14:15:26Z 2009-07-02T14:51:19Z Tablatures 1.15 <p><a href="http://freshmeat.net/projects/tablatures"><img alt="25afe2b5c7eeaf1f9b24915fb1c19877_thumb" src="http://freshmeat.net/screenshots/25/af/25afe2b5c7eeaf1f9b24915fb1c19877_thumb.jpg?1237059509" /></a></p>Tablatures is a guitar tablature editor.Tablatures is compatible with PowerTab, which is awell-known and widely adopted tablature editor forWindows systems. You can easily find thousands ofsong transcriptions in this format on theInternet.<p><strong>Changes:</strong> A crash that would happen when trying to undo a change in a system containing dynamics has been fixed.</p><p><strong>Tags:</strong> education, music, guitar, Bass, tablature</p><p><strong>Licenses:</strong> Shareware</p><p><a href="http://feedads.g.doubleclick.net/~at/ZXjgL2zM9UK7XwcVeygpiOAVDQE/0/da"><img src="http://feedads.g.doubleclick.net/~at/ZXjgL2zM9UK7XwcVeygpiOAVDQE/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/ZXjgL2zM9UK7XwcVeygpiOAVDQE/1/da"><img src="http://feedads.g.doubleclick.net/~at/ZXjgL2zM9UK7XwcVeygpiOAVDQE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/HEvzkUHH0dc" height="1" width="1"/> Simone Tellini http://freshmeat.net/users/simtel http://freshmeat.net/projects/tablatures#release_301887 tag:freshmeat.net,2005:Release/301886 2009-07-02T14:09:36Z 2009-07-02T14:48:58Z rsyslog 3.22.1 <p><a href="http://freshmeat.net/projects/rsyslog"><img alt="9338383a7258fb100761a40b0947e85e_thumb" src="http://freshmeat.net/screenshots/93/38/9338383a7258fb100761a40b0947e85e_thumb.png?1238489869" /></a></p>Rsyslog is an enhanced multi-threaded syslogd. Among others, it offers support for on-demand disk buffering, reliable syslog over TCP, SSL, TLS, and RELP, writing to databases (MySQL, PostgreSQL, Oracle, and many more), email alerting, fully configurable output formats (including high-precision timestamps), the ability to filter on any part of the syslog message, on-the-wire message compression, and the ability to convert text files to syslog. It is a drop-in replacement for stock syslogd and able to work with the same configuration file syntax.<p><strong>Changes:</strong> This release mainly consists of bugfixes like a fix for an invalid error message issued if $inlcudeConfig was on an empty set of files.</p><p><strong>Release Tags:</strong> Stable, Bugfixes</p><p><strong>Tags:</strong> Logging</p><p><strong>Licenses:</strong> GPLv3</p><p><a href="http://feedads.g.doubleclick.net/~at/4Rwa00Nkw_fKWqDGf4GJLYZC4C4/0/da"><img src="http://feedads.g.doubleclick.net/~at/4Rwa00Nkw_fKWqDGf4GJLYZC4C4/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/4Rwa00Nkw_fKWqDGf4GJLYZC4C4/1/da"><img src="http://feedads.g.doubleclick.net/~at/4Rwa00Nkw_fKWqDGf4GJLYZC4C4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/ybkr0ZDhS2w" height="1" width="1"/> http://freshmeat.net/users/tbergfeld http://freshmeat.net/projects/rsyslog#release_301886 tag:freshmeat.net,2005:Release/301885 2009-07-02T13:44:20Z 2009-07-02T14:02:46Z ns4 4.3.2 <p><a href="http://freshmeat.net/projects/ns4"><img alt="Cbb21b8a630be0600934694615c38b60_thumb" src="http://freshmeat.net/screenshots/cb/b2/cbb21b8a630be0600934694615c38b60_thumb.png?1246546221" /></a></p>ns4 is a command line configuration management tool that runs on a Unix or Windows based operating system. It allows the automated backup of node (i.e. routers and switches) configurations to an FTP/SFTP server or local media on a daily basis to create configuration archives. It can run ad-hoc commands on multiple nodes as well as custom scripts for automating complex tasks. It uses Perl and allows you to manipulate the output of commands using regular expressions within scripts. Configuration based cartridges are used to specify new node types, allowing the user to extend its functionality in a simple and dynamic way.<p><strong>Changes:</strong> This release only fixes a couple of minor cosmetic issues where duplicated lines were being added to outputs when routers were incorrectly terminating lines with "\r\r\n". It also fixes a minor issue with the "cdiff.nss" script where blank lines were being sent to stdout.</p><p><strong>Release Tags:</strong> Minor bugfixes</p><p><strong>Tags:</strong> Internet, Networking, Monitoring, Utilities, Archiving</p><p><a href="http://feedads.g.doubleclick.net/~at/6f0O8fwBFb5MdQKwEY_uyGlKWJE/0/da"><img src="http://feedads.g.doubleclick.net/~at/6f0O8fwBFb5MdQKwEY_uyGlKWJE/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/6f0O8fwBFb5MdQKwEY_uyGlKWJE/1/da"><img src="http://feedads.g.doubleclick.net/~at/6f0O8fwBFb5MdQKwEY_uyGlKWJE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/jjNwU_5oJrc" height="1" width="1"/> Chris Mason http://freshmeat.net/users/chrimaso http://freshmeat.net/projects/ns4#release_301885 tag:freshmeat.net,2005:Release/301884 2009-07-02T13:20:38Z 2009-07-02T14:01:36Z ClearBudget 0.9.3 <p><a href="http://freshmeat.net/projects/clearbudget"><img alt="Caae46993693e429c87b0027940544f9_thumb" src="http://freshmeat.net/screenshots/ca/ae/caae46993693e429c87b0027940544f9_thumb.jpg?1237061029" /></a></p>ClearBudget is a Web-based tool that helps you to manage your budgets and finances easily.Simply upload your bank transactions regularly and ClearBudget produces analytical and graphical reports reflecting the changes in real-time.Your transactions are categorized automaticaly using keywords you define. It is a breeze to install with no configuration file.<p><strong>Changes:</strong> This version is a major upgrade. It provides support for all currencies as defined by ISO standard 4217 and support for an initial balance setting, allowing you to start from your real balance. A couple of bugs were fixed, mainly one where the overall balance was wrongly computed.</p><p><strong>Release Tags:</strong> major enhancements, Major bugfixes</p><p><strong>Tags:</strong> Office/Business, Financial, Accounting</p><p><strong>Licenses:</strong> GPLv3</p><p><a href="http://feedads.g.doubleclick.net/~at/ZPCglbqB129XgVrSI48cY65S8cY/0/da"><img src="http://feedads.g.doubleclick.net/~at/ZPCglbqB129XgVrSI48cY65S8cY/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/ZPCglbqB129XgVrSI48cY65S8cY/1/da"><img src="http://feedads.g.doubleclick.net/~at/ZPCglbqB129XgVrSI48cY65S8cY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/M99KyG9Q_7M" height="1" width="1"/> clearbudget http://freshmeat.net/users/clearbudget http://freshmeat.net/projects/clearbudget#release_301884 tag:freshmeat.net,2005:Release/301883 2009-07-02T12:12:45Z 2009-07-02T13:37:59Z TikiWiki CMS/Groupware 3.1 <p><a href="http://freshmeat.net/projects/tiki"><img alt="Bb633662ca9392d71d8f6647d6fce3d1_thumb" src="http://freshmeat.net/screenshots/bb/63/bb633662ca9392d71d8f6647d6fce3d1_thumb.gif?1237050632" /></a></p>TikiWiki CMS/Groupware is a powerful multilingual CMS and groupware that can be used to create all sorts of Web applications, sites, portals, intranets, and extranets. Major features include articles, forums, newsletters, blogs, a file/image gallery, a wiki, drawing, trackers, a directory, polls/surveys and quizzes, a FAQ, chat, a banner management system, acalendar, maps, charts, Mobile Tiki (PDA and WAP access), RSS feeds, a category system, a theme control center, workflow, live support, Shoutbox, ACLs, and more.<p><strong>Changes:</strong> This version contains a large number of significant function and display fixes and improvements in areas including trackers, search, permissions, calendars, forums, wiki page staging, wiki plugins, mail functions, translations, interface elements such as buttons, Smarty templates checking, and improvements in individual themes.</p><p><strong>Release Tags:</strong> Stable</p><p><strong>Tags:</strong> Information Management, Workflow Frameworks, Internet, Web, Dynamic Content, News/Diary, Message Boards, Office/Business, groupware, Site Management, Wiki, Documentation, Scheduling, education</p><p><strong>Licenses:</strong> LGPL</p><p><a href="http://feedads.g.doubleclick.net/~at/VRfQRolBydL0BmPuP0ZnBCvHrlE/0/da"><img src="http://feedads.g.doubleclick.net/~at/VRfQRolBydL0BmPuP0ZnBCvHrlE/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/VRfQRolBydL0BmPuP0ZnBCvHrlE/1/da"><img src="http://feedads.g.doubleclick.net/~at/VRfQRolBydL0BmPuP0ZnBCvHrlE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/BLURroQXR6M" height="1" width="1"/> Marc Laporte http://freshmeat.net/users/marclaporte http://freshmeat.net/projects/tiki#release_301883 tag:freshmeat.net,2005:Release/301882 2009-07-02T11:41:49Z 2009-07-02T13:34:36Z fsc2 2.3.13 <p><a href="http://freshmeat.net/projects/fsc2"><img alt="78075469d89623867cf0a693c6daa022_thumb" src="http://freshmeat.net/screenshots/78/07/78075469d89623867cf0a693c6daa022_thumb.jpg?1237057745" /></a></p>fsc2 is a program for controlling spectrometers. Experiments are done by interpretation of scriptswritten in a simple language, EDL. Devices are handled via modules in order to allow easy integration of new devices. More than 50 devices are supported, connected via serial port, GPIB, LAN, or USB as well as data acquisition cards, etc. The state of an experiment can be remotely monitored via a built-in Web server.<p><strong>Changes:</strong> Bugs were fixed for several device modules. Changes were made to allow compilation with the newest version of bison. Support for a few new devices was added.</p><p><strong>Tags:</strong> Scientific/Engineering, Physics, Chemistry</p><p><strong>Licenses:</strong> GPLv2</p><p><a href="http://feedads.g.doubleclick.net/~at/5YxqDnJfDx4_Vh96lKMqH6J_Xd0/0/da"><img src="http://feedads.g.doubleclick.net/~at/5YxqDnJfDx4_Vh96lKMqH6J_Xd0/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/5YxqDnJfDx4_Vh96lKMqH6J_Xd0/1/da"><img src="http://feedads.g.doubleclick.net/~at/5YxqDnJfDx4_Vh96lKMqH6J_Xd0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/OA42T8IbSjk" height="1" width="1"/> Jens Thoms Törring http://freshmeat.net/users/jtto http://freshmeat.net/projects/fsc2#release_301882 tag:freshmeat.net,2005:Release/301881 2009-07-02T11:35:40Z 2009-07-02T13:32:19Z HTTPTunnel 1.3.2 HTTPTunnel is a simple client/server applicationfor creating an HTTP tunnel between two machines,optionally via a Web proxy. This tunnel can thenbe used to wrap arbitrary TCP socket traffic inHTTP, thus allowing communications even through arestrictive firewall that only allows outgoingHTTP connections.<p><strong>Changes:</strong> This release fixes a few long-standing server polling bugs.</p><p><strong>Tags:</strong> Communications, Internet, Web, Networking, Firewalls, Utilities</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/Yjb7tgEw3GilHu74JxIXDKM8k70/0/da"><img src="http://feedads.g.doubleclick.net/~at/Yjb7tgEw3GilHu74JxIXDKM8k70/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/Yjb7tgEw3GilHu74JxIXDKM8k70/1/da"><img src="http://feedads.g.doubleclick.net/~at/Yjb7tgEw3GilHu74JxIXDKM8k70/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/yrPAZ-Vv0PM" height="1" width="1"/> Richard Mills http://freshmeat.net/users/richmills http://freshmeat.net/projects/httptunnel#release_301881 tag:freshmeat.net,2005:Release/301880 2009-07-02T09:55:47Z 2009-07-02T10:34:17Z ExactScan 2.7.0 <p><a href="http://freshmeat.net/projects/exact-scan"><img alt="E9cad1a6006cf96bdaed521c6594c7eb_thumb" src="http://freshmeat.net/screenshots/e9/ca/e9cad1a6006cf96bdaed521c6594c7eb_thumb.png?1237058377" /></a></p>ExactScan is a versatile document captureapplication for home offices and workgroups. It isdesigned from the ground up for high-speeddocument scanners and can easily handle hundredsof images per minute, including duplex scans.Included functionality reaches from managing,sorting, and editing singles pages to writingmulti- as well as single-page PDF files includingJPEG compression and TIFF, JPEG, JPEG2000, and PNG bitmap files. ExactScan allows performing state ofthe art image processing including automaticcropping, deskewing, dynamic thresholding forperfect black and white documents, and descreeningprint rasters.<p><strong>Changes:</strong> Support was added for automatically scanning profiles on document placement in ADF units. New algorithms were added to allow auto-crop from flatbed scanners. Paper format handling was improved for scanners with bigger ADF units than flatbed areas. Handling of scanner hardware buttons, usually labelled with actions such as Simplex, Duplex, Cancel, or Scan, Copy, and E-Mail was improved. General image processing performance was improved and memory utilization reduced. Many language translations were updated and various small issues were fixed.</p><p><strong>Release Tags:</strong> Stable</p><p><strong>Tags:</strong> Text Processing, General, Information Management, Office/Business, multimedia, Graphics, Capture, Scanners, Viewers</p><p><strong>Licenses:</strong> Other</p><p><a href="http://feedads.g.doubleclick.net/~at/pVjAZRdUUhU8j34x0b9GuDkIlHo/0/da"><img src="http://feedads.g.doubleclick.net/~at/pVjAZRdUUhU8j34x0b9GuDkIlHo/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/pVjAZRdUUhU8j34x0b9GuDkIlHo/1/da"><img src="http://feedads.g.doubleclick.net/~at/pVjAZRdUUhU8j34x0b9GuDkIlHo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/6ti-daGSLPI" height="1" width="1"/> René Rebe http://freshmeat.net/users/ReneRebe http://freshmeat.net/projects/exact-scan#release_301880 tag:freshmeat.net,2005:Release/301878 2009-07-02T09:04:47Z 2009-07-02T10:28:58Z web2ldap 1.0.22 web2ldap is a full-featured Web-based LDAPv3 client written in Python. It is designed to run either as with stand-alone built-in Web server or under the control of another Web server with FastCGI support (e.g. Apache with mod_fastcgi). It has support for various LDAPv3 bind methods and a powerful built-in schema browser. HTML templates are supported for displaying and editing entries, and LDIF templates can be used for quickly adding new entries. A built-in X.509 parser displays a detailed view of certificates and CRLs with active links.<p><strong>Changes:</strong> A debugprint statement that caused problems when running under the control of another Web server was fixed.</p><p><strong>Tags:</strong> Networking, LDAP, Internet, Web, Systems Administration, Database, Front-Ends</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/yADXjONHFFvdQIOx8D_WP7dz4a8/0/da"><img src="http://feedads.g.doubleclick.net/~at/yADXjONHFFvdQIOx8D_WP7dz4a8/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/yADXjONHFFvdQIOx8D_WP7dz4a8/1/da"><img src="http://feedads.g.doubleclick.net/~at/yADXjONHFFvdQIOx8D_WP7dz4a8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/kYCh4gOrEYo" height="1" width="1"/> Michael Stroeder http://freshmeat.net/users/stroeder http://freshmeat.net/projects/web2ldap#release_301878 tag:freshmeat.net,2005:Release/301877 2009-07-02T09:02:03Z 2009-07-02T10:28:41Z Openbakery Translation 0.4 Openbakery Translation is an internationalizationtool for Java. Unlike standard i18n in Java,openbakery translation uses the text in thedefault locale as the key. There is also a toolwhich checks all of the source code fortranslations. This tool then provides a list ofkey/value pairs which have to be added to acertain resource file, and another list of pairswhich can be removed. The translation works bysimply calling a static method called "translate".The code works out of the box, without writing anyproperties files. You only write properties fileswhen you really translate the program to a secondlanguage.<p><strong>Changes:</strong> Classpath scanning when running in a Tomcat Web container and thread isolation of static method calls with different locales were fixed.</p><p><strong>Tags:</strong> Software Development, Internationalization, Localization</p><p><strong>Licenses:</strong> Apache 2.0</p><p><a href="http://feedads.g.doubleclick.net/~at/FrWECNaF9pTUdoHt8df5BBLqNVY/0/da"><img src="http://feedads.g.doubleclick.net/~at/FrWECNaF9pTUdoHt8df5BBLqNVY/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/FrWECNaF9pTUdoHt8df5BBLqNVY/1/da"><img src="http://feedads.g.doubleclick.net/~at/FrWECNaF9pTUdoHt8df5BBLqNVY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/K4jDJL_K3j8" height="1" width="1"/> struppi http://freshmeat.net/users/struppi http://freshmeat.net/projects/oc_translation#release_301877 tag:freshmeat.net,2005:Release/301876 2009-07-02T09:01:00Z 2009-07-02T10:28:22Z BTG 1.0 <p><a href="http://freshmeat.net/projects/btg"><img alt="E83fe9549ec8e179a7c6772df7a4c108_thumb" src="http://freshmeat.net/screenshots/e8/3f/e83fe9549ec8e179a7c6772df7a4c108_thumb.png?1237057531" /></a></p>BTG is a bittorrent daemon implemented in C++ andusing the libtorrent library. It provides anncurses UI, a gtkmm GUI, and a Web interface,which communicate with a common backend runningthe actual bittorrent operation.<p><strong>Changes:</strong> This release adds a Hungarian translation of the Web UI and a few small features to btgncli and fixes a crashexperienced when loading IPv4 filters. Some refactoring was also done to avoid using boost iostreams and to use a GPL resource allocator.</p><p><strong>Tags:</strong> Communications, File Sharing</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/pnng2BD9Lu6OzrRrJCYJF9DqsYc/0/da"><img src="http://feedads.g.doubleclick.net/~at/pnng2BD9Lu6OzrRrJCYJF9DqsYc/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/pnng2BD9Lu6OzrRrJCYJF9DqsYc/1/da"><img src="http://feedads.g.doubleclick.net/~at/pnng2BD9Lu6OzrRrJCYJF9DqsYc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/e3r-EBQYdTU" height="1" width="1"/> Michael Wojciechowski http://freshmeat.net/users/wojci http://freshmeat.net/projects/btg#release_301876 tag:freshmeat.net,2005:Release/301879 2009-07-02T09:23:10Z 2009-07-02T10:28:09Z slimrat 0.9.5 <p><a href="http://freshmeat.net/projects/slimrat"><img alt="81c786340616b9dfc8400896fc8677fb_thumb" src="http://freshmeat.net/screenshots/81/c7/81c786340616b9dfc8400896fc8677fb_thumb.png?1237312229" /></a></p>slimrat is a command line and GUI utility for downloading files from Rapidshare Free.<p><strong>Changes:</strong> More plugins.</p><p><strong>Tags:</strong> download, Web, File Sharing, Internet, rapidshare</p><p><strong>Licenses:</strong> Public Domain</p><p><a href="http://feedads.g.doubleclick.net/~at/AVRPvRavlwNVOe1q1595D_VpqW0/0/da"><img src="http://feedads.g.doubleclick.net/~at/AVRPvRavlwNVOe1q1595D_VpqW0/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/AVRPvRavlwNVOe1q1595D_VpqW0/1/da"><img src="http://feedads.g.doubleclick.net/~at/AVRPvRavlwNVOe1q1595D_VpqW0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/cs38sb8YJaM" height="1" width="1"/> http://freshmeat.net/users/premek_v http://freshmeat.net/projects/slimrat#release_301879 tag:freshmeat.net,2005:Release/301875 2009-07-02T08:26:27Z 2009-07-02T10:27:33Z fio 1.29 <p><a href="http://freshmeat.net/projects/fio"><img alt="D5826213ba6b5eb9818a51a3dfe1cb14_thumb" src="http://freshmeat.net/screenshots/d5/82/d5826213ba6b5eb9818a51a3dfe1cb14_thumb.png?1240402219" /></a></p>fio is an I/O tool meant to be used both for benchmark and stress/hardware verification. It has support for 13 different types of I/O engines (sync, mmap, libaio, posixaio, SG v3, splice, null, network, syslet, guasi, solarisaio, and more), I/O priorities (for newer Linux kernels), rate I/O, forked or threaded jobs, and much more. It can work on block devicesas well as files. fio accepts job descriptions in a simple-to-understand text format. Several example job files are included. fio displays all sorts of I/O performance information. It supports Linux, FreeBSD, and OpenSolaris.<p><strong>Changes:</strong> Fixes and improvements forthe IO limiting rate option, a fix for submission latency numbers in some cases, and a fix for a bug in the job parser that would sometimes truncate the postfix value when multiple values were given. A continue_on_error option was added to allow a job to keep running if it sees non-fatal errors. Abug in the mmap engine with large files and 32-bit machines was fixed. Support for fdatasync() was added with the fdatasync option. An iomem_align option was added for fine-grained control over IO buffer memory alignment. The pre_read option was fixed and no longer attempts to pre-read on IO engines that cannot seek.</p><p><strong>Release Tags:</strong> Minor feature enhancements</p><p><strong>Tags:</strong> Benchmark, Filesystems</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/iND3umgd66JjSMmgktygj6uPrPg/0/da"><img src="http://feedads.g.doubleclick.net/~at/iND3umgd66JjSMmgktygj6uPrPg/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/iND3umgd66JjSMmgktygj6uPrPg/1/da"><img src="http://feedads.g.doubleclick.net/~at/iND3umgd66JjSMmgktygj6uPrPg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/XFaZxFTrYXk" height="1" width="1"/> axboe http://freshmeat.net/users/axboe http://freshmeat.net/projects/fio#release_301875 tag:freshmeat.net,2005:Release/301874 2009-07-02T08:16:20Z 2009-07-02T10:26:06Z Clonezilla 1.2.2-24 <p><a href="http://freshmeat.net/projects/clonezilla"><img alt="F7a70a2d14894b359112e9060622041d_thumb" src="http://freshmeat.net/screenshots/f7/a7/f7a70a2d14894b359112e9060622041d_thumb.png?1243487091" /></a></p>Clonezilla is a partition or disk cloning toolsimilar to Symantec Ghost. It saves and restoresonly blocks in use on the hard drive if the filesystem is supported. For unsupported file systems,dd is used instead. It has been used to clone a 5GB system to 40 clients in about 10 minutes.<p><strong>Changes:</strong> A "--rescue" option was added in ocs-onthefly to be used with partclone. A bug where the swap partition was not cloned when doing a disk-to-disk clone was fixed.</p><p><strong>Release Tags:</strong> live-testing</p><p><strong>Tags:</strong> Archiving, backup, Mirroring</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/MYvg1cSwqjgsRUExzyX_Efb_NCA/0/da"><img src="http://feedads.g.doubleclick.net/~at/MYvg1cSwqjgsRUExzyX_Efb_NCA/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/MYvg1cSwqjgsRUExzyX_Efb_NCA/1/da"><img src="http://feedads.g.doubleclick.net/~at/MYvg1cSwqjgsRUExzyX_Efb_NCA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/Mvl9IV_W7ZI" height="1" width="1"/> Steven http://freshmeat.net/users/stevenshiau http://freshmeat.net/projects/clonezilla#release_301874 tag:freshmeat.net,2005:Release/301873 2009-07-02T07:46:13Z 2009-07-02T10:24:44Z GTK+ 2.16.4 GTK, which stands for the Gimp ToolKit, is a library for creating graphical user interfaces. It is designed to be small and efficient, but still flexible enough to allow the programmer freedom in the interfaces created. GTK provides some unique features over standard widget libraries.<p><strong>Changes:</strong> A side-effect introduced by a recent bugfix that caused all stock buttons to lose their mnemonics was now fixed.</p><p><strong>Release Tags:</strong> Stable, Minor bugfixes</p><p><strong>Tags:</strong> Desktop Environment, Software Development, Libraries, Application Frameworks, Widget Sets</p><p><strong>Licenses:</strong> LGPL</p><p><a href="http://feedads.g.doubleclick.net/~at/5YHGF3eKqlIk7Pq7o7dmUFVtzWo/0/da"><img src="http://feedads.g.doubleclick.net/~at/5YHGF3eKqlIk7Pq7o7dmUFVtzWo/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/5YHGF3eKqlIk7Pq7o7dmUFVtzWo/1/da"><img src="http://feedads.g.doubleclick.net/~at/5YHGF3eKqlIk7Pq7o7dmUFVtzWo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/93EbJnSwtL0" height="1" width="1"/> Moritz Barsnick http://freshmeat.net/users/barsnick http://freshmeat.net/projects/gtk#release_301873 tag:freshmeat.net,2005:Release/301872 2009-07-02T07:33:34Z 2009-07-02T10:23:56Z Asymptote 1.79 <p><a href="http://freshmeat.net/projects/asy"><img alt="4de9ff6f41ac3f22dcd372385a06d14f_thumb" src="http://freshmeat.net/screenshots/4d/e9/4de9ff6f41ac3f22dcd372385a06d14f_thumb.jpg?1237054703" /></a></p>Asymptote is a powerful descriptive vector graphics language for technical drawing, inspired by MetaPost but with an improved C++-like syntax. It provides for figures the same high-quality level of typesetting that LaTeX does for scientific text. Asymptote is a programming language as opposed to just a graphics program. It can exploit the best features of script (command-driven) and graphical user interface (GUI) methods. High-level graphics commands are implemented in the language itself, allowing them to be easily tailored to specific applications.<p><strong>Changes:</strong> The perp vector calculation in the solids module was fixed. A bug in the mouse motion functions was fixed. A pan action was added to the OpenGL renderer; the Camera (c) menu item now outputs all camera settings.The default right mouse button mouse binding was changed from "zoom/menu" to "zoom". Dynamic time stepping was fixed in the ode module; the "integrate"routines now return the array of computed values. == and != operators were added for all built-in arithmetic 2D arrays. A segmentation fault was fixed. The etc/fstab kludge for Cygwin 1.7 was removed.</p><p><strong>Release Tags:</strong> Minor bugfixes, Minor feature enhancements</p><p><strong>Tags:</strong> Scientific/Engineering, Visualization, education, Text Processing, Markup, TeX/LaTeX, Mathematics, multimedia, Graphics, Editors, Vector-Based, 3D Modeling</p><p><strong>Licenses:</strong> LGPL</p><p><a href="http://feedads.g.doubleclick.net/~at/ih1I2covSIgfWRImeyeKhsG8-Pc/0/da"><img src="http://feedads.g.doubleclick.net/~at/ih1I2covSIgfWRImeyeKhsG8-Pc/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/ih1I2covSIgfWRImeyeKhsG8-Pc/1/da"><img src="http://feedads.g.doubleclick.net/~at/ih1I2covSIgfWRImeyeKhsG8-Pc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/yeCj60qLYUs" height="1" width="1"/> John Bowman http://freshmeat.net/users/jcbowman http://freshmeat.net/projects/asy#release_301872 tag:freshmeat.net,2005:Release/301871 2009-07-02T07:29:30Z 2009-07-02T10:23:07Z PHP MIME Mail decoder class 2009.07.02 <p><a href="http://freshmeat.net/projects/phpmimemaildecoder"><img alt="135f6a0600e02a78f1f5387132d44647_thumb" src="http://freshmeat.net/screenshots/13/5f/135f6a0600e02a78f1f5387132d44647_thumb.gif?1237057640" /></a></p>PHP MIME Mail decoder class is a PHP class to parse and decode MIME email messages. It supports decoding single RFC 2822 MIME messages or archives that aggregate multiple messages in the mbox format. It can decode messages read from files or data strings. The bodies of multipart messages can be decoded into distinct sub-messages. Optionally, the message body data can be saved to separate files, so the class can handle messages larger than the available memory. The parser can tolerate some syntax errors in malformed messages that are not compliant with RFC 2822.<p><strong>Changes:</strong> Bugs in handling 'From' lines in messages from mbox files were fixed.</p><p><strong>Release Tags:</strong> Minor bugfixes</p><p><strong>Tags:</strong> Software Development, Libraries, php classes, Communications, Email, Filters</p><p><strong>Licenses:</strong> BSD Revised</p><p><a href="http://feedads.g.doubleclick.net/~at/QyI9dbwE2o9c6yDPUUyObvNSkSU/0/da"><img src="http://feedads.g.doubleclick.net/~at/QyI9dbwE2o9c6yDPUUyObvNSkSU/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/QyI9dbwE2o9c6yDPUUyObvNSkSU/1/da"><img src="http://feedads.g.doubleclick.net/~at/QyI9dbwE2o9c6yDPUUyObvNSkSU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/8QMH6A4_InI" height="1" width="1"/> http://freshmeat.net/users/phpclasses http://freshmeat.net/projects/phpmimemaildecoder#release_301871 tag:freshmeat.net,2005:Release/301870 2009-07-02T07:25:33Z 2009-07-02T10:22:21Z WebIssues 0.9.5-rc1 <p><a href="http://freshmeat.net/projects/webissues"><img alt="80ade402aa9e94826ee5fa4a3908393e_thumb" src="http://freshmeat.net/screenshots/80/ad/80ade402aa9e94826ee5fa4a3908393e_thumb.png?1237058080" /></a></p>WebIssues is a system that supports team collaboration across the Internet. It can be used for storing bugs and other information with customizable attributes, comments, and file attachments. The server can be installed on any host with PHP and MySQL, PostgreSQL, Firebird, or MS SQL Server. The client is a native desktop application for both Windows andLinux.<p><strong>Changes:</strong> This release candidate features minor usability improvements and bugfixes. A new dashboard view was introduced and the behavior of the single window mode of user interface was improved. A bug related to compiling on Qt 4.4 or earlier was fixed.</p><p><strong>Release Tags:</strong> Minor feature enhancements, Beta, Client</p><p><strong>Tags:</strong> Software Development, Bug Tracking, Information Management, Issue Tracking, Communications, Database, Office/Business, groupware</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/ZixNnkbSVbCJZJ3zbe8rZzLpwK4/0/da"><img src="http://feedads.g.doubleclick.net/~at/ZixNnkbSVbCJZJ3zbe8rZzLpwK4/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/ZixNnkbSVbCJZJ3zbe8rZzLpwK4/1/da"><img src="http://feedads.g.doubleclick.net/~at/ZixNnkbSVbCJZJ3zbe8rZzLpwK4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/WyT6uCV0gZ0" height="1" width="1"/> Michal Mecinski http://freshmeat.net/users/mimec http://freshmeat.net/projects/webissues#release_301870 tag:freshmeat.net,2005:Release/301869 2009-07-02T07:19:02Z 2009-07-02T10:17:36Z Toorox 06.2009 <p><a href="http://freshmeat.net/projects/toorox"><img alt="C9c624029955067c2a25fcc2ae2ffffc_thumb" src="http://freshmeat.net/screenshots/c9/c6/c9c624029955067c2a25fcc2ae2ffffc_thumb.png?1237060764" /></a></p>Toorox is a Linux live-DVD based on Gentoo thatstarts as a bootable media using KNOPPIXtechnology. It is designed for ease of use, with asimple control center and a hard disk installer.It contains many applications and uses KDE asworking environment. It is multi-lingual (Germanand English) and contains the unstable branch ofGentoo (~x86).<p><strong>Changes:</strong> This release includes kernel 2.6.28-gentoo-r6, KDE 4.2.4, OpenOffice 3.1, Iceweasel 3.0.11, and Amarok 2.1. KDE was updated to version 4.2.4. The live USB stick creator was improved with three options: static (as DVD), personal (user data storage), and encrypted (password encrypted user data storage). An external USB-HDD installation issue has been fixed in the installer.</p><p><strong>Tags:</strong> Operating Systems, Linux Distributions, Desktop Environment, KDE, Operating System Kernels, Linux, CD-Based, Window Manager, Communications, Internet, multimedia, Office/Business</p><p><strong>Licenses:</strong> GPLv2</p><p><a href="http://feedads.g.doubleclick.net/~at/VUAggnYCINcjA71nv_wunIcTwJM/0/da"><img src="http://feedads.g.doubleclick.net/~at/VUAggnYCINcjA71nv_wunIcTwJM/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/VUAggnYCINcjA71nv_wunIcTwJM/1/da"><img src="http://feedads.g.doubleclick.net/~at/VUAggnYCINcjA71nv_wunIcTwJM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/vTCFRKuu9a8" height="1" width="1"/> Joern Lindau http://freshmeat.net/users/joerni http://freshmeat.net/projects/toorox#release_301869 tag:freshmeat.net,2005:Release/301868 2009-07-02T07:15:20Z 2009-07-02T10:16:47Z Bordeaux 1.8 beta 1 <p><a href="http://freshmeat.net/projects/bordeaux"><img alt="1625575e5565fc9d3855433c9c5810da_thumb" src="http://freshmeat.net/screenshots/16/25/1625575e5565fc9d3855433c9c5810da_thumb.png?1237059776" /></a></p>Bordeaux is a Wine GUI configuration manager that runs winelib applications. It also supports installation of third party utilities, installation of applications and games, and the ability to use custom configurations.<p><strong>Changes:</strong> This release adds support for Microsoft Office 2003 Applications (Word, Excel, and Powerpoint), Microsoft Project 2003, and Microsoft Visio 2003. There were also fixes to app bundles, stability and speed enhancements, and many bugfixes.</p><p><strong>Release Tags:</strong> Major feature enhancements, Major bugfixes, Mac OS X</p><p><strong>Tags:</strong> Desktop Environment, GNOME, Utilities, Emulators, GUI, Office/Business, Games/Entertainment, multimedia</p><p><strong>Licenses:</strong> Other</p><p><a href="http://feedads.g.doubleclick.net/~at/__M3TZ2uBr4EBLbTOb1G0FiFal4/0/da"><img src="http://feedads.g.doubleclick.net/~at/__M3TZ2uBr4EBLbTOb1G0FiFal4/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/__M3TZ2uBr4EBLbTOb1G0FiFal4/1/da"><img src="http://feedads.g.doubleclick.net/~at/__M3TZ2uBr4EBLbTOb1G0FiFal4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/WfYvajcTBBs" height="1" width="1"/> twickline http://freshmeat.net/users/twickline http://freshmeat.net/projects/bordeaux#release_301868 tag:freshmeat.net,2005:Release/301867 2009-07-02T03:28:07Z 2009-07-02T10:15:57Z Daikon 4.6.0 Daikon is an implementation of dynamic detectionof likely invariants. An invariant is a property(such as "x=2*y+5" or "this.next.prev = this" or "myarray is sorted by &lt;")that holds at a certain point or points in aprogram. Invariants are often seen in assertstatements, documentation, and formalspecifications. Invariants can be useful inprogram understanding and a host of otherapplications. Daikon runs a program, observes thevalues that the program computes, and then reportsproperties that were true over the observedexecutions. It can detect properties in Java, C,C++, Perl, and IOA programs, in spreadsheet files,and in other data sources.<p><strong>Changes:</strong> Kvasir now supports binaries created with GCC 4.0+ and glibc versions 2.2 to 2.10. The Daikon user manual was updated for clarity and completeness. Bugs were fixed in Daikon, Kvasir, and Chicory.</p><p><strong>Tags:</strong> Documentation, Scientific/Engineering, Artificial Intelligence, Mathematics, Software Development, Quality Assurance, Testing</p><p><strong>Licenses:</strong> Open Software</p><p><a href="http://feedads.g.doubleclick.net/~at/EqUoN16afmhIDijgzSgD-C1tqwo/0/da"><img src="http://feedads.g.doubleclick.net/~at/EqUoN16afmhIDijgzSgD-C1tqwo/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/EqUoN16afmhIDijgzSgD-C1tqwo/1/da"><img src="http://feedads.g.doubleclick.net/~at/EqUoN16afmhIDijgzSgD-C1tqwo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/Wy3anOo3bek" height="1" width="1"/> Jeff Perkins http://freshmeat.net/users/jhpnez http://freshmeat.net/projects/daikon#release_301867 tag:freshmeat.net,2005:Release/301865 2009-07-02T02:06:45Z 2009-07-02T10:15:33Z episoder 0.5.2 <p><a href="http://freshmeat.net/projects/episoder"><img alt="5e054efdfb9bbcb79eec8ed8b21a991d_thumb" src="http://freshmeat.net/screenshots/5e/05/5e054efdfb9bbcb79eec8ed8b21a991d_thumb.png?1237054815" /></a></p>episoder is a tool to tell you about new episodes of yourfavourite TV shows. It does so by parsing online TV show episode guides.<p><strong>Changes:</strong> This release improves compatibility with older libraries and fixes some encoding issues in the console renderer.</p><p><strong>Release Tags:</strong> Minor bugfixes, Minor feature enhancements</p><p><strong>Tags:</strong> Television</p><p><strong>Licenses:</strong> GPL</p><p><a href="http://feedads.g.doubleclick.net/~at/XJv685qf7ROEDs7LwNkmQBMfZ8Q/0/da"><img src="http://feedads.g.doubleclick.net/~at/XJv685qf7ROEDs7LwNkmQBMfZ8Q/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/XJv685qf7ROEDs7LwNkmQBMfZ8Q/1/da"><img src="http://feedads.g.doubleclick.net/~at/XJv685qf7ROEDs7LwNkmQBMfZ8Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/feeds/fm-releases-global/~4/cfgB_nyVvhs" height="1" width="1"/> Stefan Ott http://freshmeat.net/users/cockroach http://freshmeat.net/projects/episoder#release_301865 tag:freshmeat.net,2005:Release/301864 2009-07-02T01:35:29Z 2009-07-02T10:15:10Z SOFA Statistics 0.8.0 <p><a href="http://freshmeat.net/projects/sofa-statistics"><img alt="926339b59ff75b41f6654f5911e1f4ce_thumb" src="http://freshmeat.net/screenshots/92/63/926339b59ff75b41f6654f5911e1f4ce_thumb.jpg?1243905349" /></a></p>SOFA is a statistics program that focuses on beingeasy to use. SOFA won't replace sophisticated statistics systems like R, but there is a good chance it will do what you need and do it well. SOFA can connect directly to your database and lets you display results in an attractive format ready to share or put in a spread­sheet. SOFA will help you learn as you go, whether you are a student, business analyst, or researcher.<p><strong>Changes:</strong> Both the independent samples t-test and the paired samples t-test are now included. The option for assistance is now provided when selecting a statistical test. Random quotations on statistics are shown when hovering over the Statistics button. Minor layout and label changes were made to increase usability.</p><p><strong>Tags:</strong> Statistics, Analysis, Reporting</p><p><strong>Licenses:</strong> AGPLv3</p><p><a href="http://feedads.g.doubleclick.net/~at/q8rKEzuwupC2lTiFppXpO8Odm3s/0/da"><img src="http://feedads.g.doubleclick.net/~at/q8rKEzuwupC2lTiFppXpO8Odm3s/0/di" border="0" ismap="true"></img></a><br/><a href="http://feedads.g.doubleclick.net/~at/q8rKEzuwupC2lTiFppXpO8Odm3s/1/da"><img src="http://feedads.g.doubleclick.net/~at/q8rKEzuwupC2lTiFppXpO8Odm3s/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/freshmeat/f