configured to
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2218
configure 0.0.2
The configure project is a Makefile generator which uses project description files to create simple Makefiles. more>>
The configure project is a Makefile generator which uses project description files to create simple Makefiles.
It stives to keep the generated code as simple as possible
Enhancements:
- The program has been fully rewritten, and has migrated to libSystem in place of libutils.
- It now supports source archive generation and installation rules.
- The documentation has been updated.
<<lessIt stives to keep the generated code as simple as possible
Enhancements:
- The program has been fully rewritten, and has migrated to libSystem in place of libutils.
- It now supports source archive generation and installation rules.
- The documentation has been updated.
Download (0.008MB)
Added: 2005-10-26 License: GPL (GNU General Public License) Price:
1459 downloads
Dconf 0.5.1
Dconf is a tool to collect a systems hardware and software configuration. more>>
Dconf is a tool to collect a systems hardware and software configuration. Dconf allows you to take your system configuration with you and compare systems (like nodes in a cluster) to troubleshoot hardware or software problems.
It can also be configured to send out configuration changes at given intervals to a group of people, or store a new snapshot when system changes happen.
Main features:
- Stores both hardware and software configuration in a single file
- Only considers files that are not the default (compares with rpmdb if possible)
- Allows to compare different systems in real-time
- Allows to take configuration of systems with you to customers
- Makes it easier to manage systems as a group
- Can send out mails when changes have happened
- Allows to roll back changes or associate problems with changes
Enhancements:
- Improvements to syslog logging.
- The proprietary software configuration sections have been moved together.
- netiq and iproute2 sections have been added.
<<lessIt can also be configured to send out configuration changes at given intervals to a group of people, or store a new snapshot when system changes happen.
Main features:
- Stores both hardware and software configuration in a single file
- Only considers files that are not the default (compares with rpmdb if possible)
- Allows to compare different systems in real-time
- Allows to take configuration of systems with you to customers
- Makes it easier to manage systems as a group
- Can send out mails when changes have happened
- Allows to roll back changes or associate problems with changes
Enhancements:
- Improvements to syslog logging.
- The proprietary software configuration sections have been moved together.
- netiq and iproute2 sections have been added.
Download (0.034MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1178 downloads
Close Button 0.3.5
Close Button is an extension which adds a Close Tab (or Window, or Browser) button to the toolbar. more>>
Close Button is an extension which adds a Close Tab (or Window, or Browser) button to the toolbar.
This is especially handy if you put your tab bar at the bottom but want a Close Tab button in the top right, where youd find it in most well behaved Windows programs with child windows.
Once installed, just right click on the toolbar, select "Customize...", and drag the button wherever you like. The buttons appearance is determined by the installed theme, and its behavior can be configured to close the current tab, window, or Firefox session.
<<lessThis is especially handy if you put your tab bar at the bottom but want a Close Tab button in the top right, where youd find it in most well behaved Windows programs with child windows.
Once installed, just right click on the toolbar, select "Customize...", and drag the button wherever you like. The buttons appearance is determined by the installed theme, and its behavior can be configured to close the current tab, window, or Firefox session.
Download (0.004MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
926 downloads
Linux Firewall 2.0
Linux Firewall is a robust, well-designed firewall for Linux 2.4 based on netfilter/iptables. more>>
Linux Firewall is a robust, well-designed firewall for Linux 2.4 based on netfilter/iptables. The Projectfiles.com Linux Firewall is the swiss army knife of Linux firewall software. Based on the netfilter-iptables tools, the firewall is a single shell executable written in bash with configuration options and basic documentation included in the same file. It is designed for use with all types of systems: workstations, routers, and servers, and includes advanced features for expert users and Internet Service Providers.
Here are some installation tips:
1. Download the latest rc.firewall [wget http://projectfiles.com/firewall/rc.firewall]
2. Edit the options at the beginning of the file with your favorite text editor. The script comes pre-configured to deny all incoming connections. This is suitable for a typical workstation installation. Refer to the configuration page for in depth explanation of available options.
3. Make the script executable [chmod +x ./rc.firewall]
4. Become root [su]
5. Run the script [./rc.firewall]
6. After you verify that the firewall runs without errors, you may want it to be run automatically on boot. To accomplish this, move the script to the appropriate startup script directory for your distribution [/etc/rc.d/ for Slackware, /etc/init.d/ for Gentoo] and add the following lines in your startup scripts at some point after your ethernet interfaces are configured [for example /etc/rc.d/rc.local for Slackware, and /etc/conf.d/local.start for Gentoo].
Slackware
if [ -x /etc/rc.d/rc.firewall ]; then
/etc/rc.d/rc.firewall
fi
Gentoo
if [ -x /etc/init.d/rc.firewall ]; then
/etc/init.d/rc.firewall
fi
See forum for alternate installation methods.
7. If you are using this firewall on a machine to which you do not have physical access, but can reboot remotely (for example a collocated server or a Linux router at a computer illiterate friends house), you might want to think about putting in a short delay between the time the machine boots and the initialization of the firewall. This would give you a chance to log in and disable the firewall [chmod -x] if something goes wrong. A good example might be if you have the script configured to allow you to connect from a specific remote IP address and your address changes. If you choose to implement this idea, it can be done with the following code in rc.local:
if [ -x /etc/rc.d/rc.firewall ]; then
sleep 30 && /etc/rc.d/rc.firewall | logger -t rc.firewall &
echo "Firewall init in 30 seconds. Check syslog for results."
fi
<<lessHere are some installation tips:
1. Download the latest rc.firewall [wget http://projectfiles.com/firewall/rc.firewall]
2. Edit the options at the beginning of the file with your favorite text editor. The script comes pre-configured to deny all incoming connections. This is suitable for a typical workstation installation. Refer to the configuration page for in depth explanation of available options.
3. Make the script executable [chmod +x ./rc.firewall]
4. Become root [su]
5. Run the script [./rc.firewall]
6. After you verify that the firewall runs without errors, you may want it to be run automatically on boot. To accomplish this, move the script to the appropriate startup script directory for your distribution [/etc/rc.d/ for Slackware, /etc/init.d/ for Gentoo] and add the following lines in your startup scripts at some point after your ethernet interfaces are configured [for example /etc/rc.d/rc.local for Slackware, and /etc/conf.d/local.start for Gentoo].
Slackware
if [ -x /etc/rc.d/rc.firewall ]; then
/etc/rc.d/rc.firewall
fi
Gentoo
if [ -x /etc/init.d/rc.firewall ]; then
/etc/init.d/rc.firewall
fi
See forum for alternate installation methods.
7. If you are using this firewall on a machine to which you do not have physical access, but can reboot remotely (for example a collocated server or a Linux router at a computer illiterate friends house), you might want to think about putting in a short delay between the time the machine boots and the initialization of the firewall. This would give you a chance to log in and disable the firewall [chmod -x] if something goes wrong. A good example might be if you have the script configured to allow you to connect from a specific remote IP address and your address changes. If you choose to implement this idea, it can be done with the following code in rc.local:
if [ -x /etc/rc.d/rc.firewall ]; then
sleep 30 && /etc/rc.d/rc.firewall | logger -t rc.firewall &
echo "Firewall init in 30 seconds. Check syslog for results."
fi
Download (0.10MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
694 downloads
httpMonitor 0.2
httpMonitor is a Python program which lets you monitor the HTTP traffic between a browser and a Web server. more>>
httpMonitor is a Python program which lets you monitor the HTTP traffic between a browser and a Web server. You configure your browser to use httpMonitor as its proxy to ensure that all HTTP traffic between browser and server goes via httpMonitor. In a
XML-configuration file you can specify python-functions as processors for the HTTP-messages you are interested in (requests or responses, which match certain criteria). You may have as many processors as you want, without modifying the actual program.
The package comes with three sample processors. One for logging header-information of the HTTP messages (httpMonitor.filters.logger), one for modifying header fields (httpMonitor.filters.headermodifier) and a third one for accessing (and modifiying) parsed html-text. The processors can be configured to tell them exactly what to log or what to modify.The only thing you have to do, is to configure the httpMonitor and write your processors.
Although the current version is 0.2 it works nice already, it just has not been tested extensively. I may also add a few more processors and/or other features in the final release.
<<lessXML-configuration file you can specify python-functions as processors for the HTTP-messages you are interested in (requests or responses, which match certain criteria). You may have as many processors as you want, without modifying the actual program.
The package comes with three sample processors. One for logging header-information of the HTTP messages (httpMonitor.filters.logger), one for modifying header fields (httpMonitor.filters.headermodifier) and a third one for accessing (and modifiying) parsed html-text. The processors can be configured to tell them exactly what to log or what to modify.The only thing you have to do, is to configure the httpMonitor and write your processors.
Although the current version is 0.2 it works nice already, it just has not been tested extensively. I may also add a few more processors and/or other features in the final release.
Download (0.040MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1213 downloads
Redirex 1.0
Redirex is a small, lightweight Perl server which intercepts HTTP requests. more>>
Redirex is a small, lightweight Perl server which intercepts HTTP requests sent to the old address and redirects them to the sites new home. Handy when you change the IP address of a Web server and discover that, months later, requests still rain in from search engines and other sites which have linked to the absolute IP address rather than your site name.
There are few better ways to appreciate the breadth of the Web and the depth of its content as to move a Web server from one machine to another with a different IP address. Whatever the reason motivating the change, youll quickly discover that requests continue to rain onto the obsolete server, diminishing ever so slowly only as other webmasters discover and correct broken links to your site, and search engines eventually discover the change and re-index your site at its new location. Redirex is a utility which can smooth the transition of a Web site from one server to another, both for users of the site and its administrators. Redirex is a Perl program which receives requests at the address of the old server and responds with HTTP "redirect" (301 status code) replies indicating the new servers name.
To install and configure Redirex, you have to do the following steps:
1. Download the Redirex source archive and extract its contents into a new directory. The archive contains redirex, the main Perl script and redirex.conf, its configuration file.
2. Edit redirex.conf and set the configuration variables appropriately for your application. The configuration variables are discussed in detail below.
3. (Optional) Test Redirex by running it on a user port (for example, 9080), then accessing it from your Web browser with a URL like: "http://my.hostname.net:9080/whatever.html". Verify that the request was redirected as specified by the configuration file.
4. Install Redirex on the old server, configured to listen to the port (usually 80) on which that server used to accept HTTP requests. If the old server no longer exists, configure a different machine to respond to the old servers IP address, perhaps using "IP aliases" or "logical interfaces" to make an existing machine respond to the old servers address. This is discussed in more detail below in the "Virtual Host Setup" section.
5. Verify that Redirex is correctly redirecting requests to the old server and writing log items to the configured file.
<<lessThere are few better ways to appreciate the breadth of the Web and the depth of its content as to move a Web server from one machine to another with a different IP address. Whatever the reason motivating the change, youll quickly discover that requests continue to rain onto the obsolete server, diminishing ever so slowly only as other webmasters discover and correct broken links to your site, and search engines eventually discover the change and re-index your site at its new location. Redirex is a utility which can smooth the transition of a Web site from one server to another, both for users of the site and its administrators. Redirex is a Perl program which receives requests at the address of the old server and responds with HTTP "redirect" (301 status code) replies indicating the new servers name.
To install and configure Redirex, you have to do the following steps:
1. Download the Redirex source archive and extract its contents into a new directory. The archive contains redirex, the main Perl script and redirex.conf, its configuration file.
2. Edit redirex.conf and set the configuration variables appropriately for your application. The configuration variables are discussed in detail below.
3. (Optional) Test Redirex by running it on a user port (for example, 9080), then accessing it from your Web browser with a URL like: "http://my.hostname.net:9080/whatever.html". Verify that the request was redirected as specified by the configuration file.
4. Install Redirex on the old server, configured to listen to the port (usually 80) on which that server used to accept HTTP requests. If the old server no longer exists, configure a different machine to respond to the old servers IP address, perhaps using "IP aliases" or "logical interfaces" to make an existing machine respond to the old servers address. This is discussed in more detail below in the "Virtual Host Setup" section.
5. Verify that Redirex is correctly redirecting requests to the old server and writing log items to the configured file.
Download (0.017MB)
Added: 2006-06-21 License: Freeware Price:
1220 downloads
Solsoft NetfilterOne 1.0
Solsoft NetfilterOne is a graphical interface that will automate the design, deployment and documentation of security rules. more>>
Solsoft NetfilterOne is a graphical interface that will automate the design, deployment and documentation of security rules and policies as they pertain to a networked netfilter firewall.
As the name suggests, NetfilterOne will support one installation of the netfilter firewall.
With Solsoft NetfilterOne, IT administrators will realize the advantages of a centralized interface from which to configure, deploy, enforce and audit rules and policies consistently among netfilter firewall(s).
NetfilterOne is the ideal tool to remotely maintain security policies on Linux servers, webservers, DNS, Mail servers which often resides on DMZ.
Main features:
No manual coding
- Centralizing and automating design and generation of accurate security configurations for all devices using the same management software is very important for small, resource-constrained IT departments.
Higher operational efficiency
- Solsoft NetfilterOne enables you to deploy accurate security rules to ALL security devices on your network, instead of manually configuring devices one at a time. Changes to complex networks can be made in minutes - reducing the costs required to manage multi-vendor security environments.
Faster incident response
- Solsoft NetfilterOne makes your organization more agile and improves your ability to react to virus, worm, and network attacks. More importantly, Solsofts policy-based system hardens your network against future attacks by making sure security rules are consistently and correctly configured end-to-end - something that is very hard to do through other means.
Broad interoperability
- Solsoft NetfilterOne provides the glue that connects the sources of policy - business requirements, security audits, vulnerability scans, and event correlation alerts - with the security device infrastructure that must be configured to enforce policy. Only a truly open management solution can provide this level of interoperability and agility.
Greater vendor and device independence
- Solsoft NetfilterOne supports the ability to import existing device configurations and quickly migrate to different security platforms. With Solsoft NetfilterOne, you enjoy the flexibility to pick the best security device based on price vs. performance, regardless of team expertise.
Enhancements:
- This release supports Cisco IOS, PIX, ASA, FWSM, Netscreen, Nortel, Linux, and ISS proventia.
<<lessAs the name suggests, NetfilterOne will support one installation of the netfilter firewall.
With Solsoft NetfilterOne, IT administrators will realize the advantages of a centralized interface from which to configure, deploy, enforce and audit rules and policies consistently among netfilter firewall(s).
NetfilterOne is the ideal tool to remotely maintain security policies on Linux servers, webservers, DNS, Mail servers which often resides on DMZ.
Main features:
No manual coding
- Centralizing and automating design and generation of accurate security configurations for all devices using the same management software is very important for small, resource-constrained IT departments.
Higher operational efficiency
- Solsoft NetfilterOne enables you to deploy accurate security rules to ALL security devices on your network, instead of manually configuring devices one at a time. Changes to complex networks can be made in minutes - reducing the costs required to manage multi-vendor security environments.
Faster incident response
- Solsoft NetfilterOne makes your organization more agile and improves your ability to react to virus, worm, and network attacks. More importantly, Solsofts policy-based system hardens your network against future attacks by making sure security rules are consistently and correctly configured end-to-end - something that is very hard to do through other means.
Broad interoperability
- Solsoft NetfilterOne provides the glue that connects the sources of policy - business requirements, security audits, vulnerability scans, and event correlation alerts - with the security device infrastructure that must be configured to enforce policy. Only a truly open management solution can provide this level of interoperability and agility.
Greater vendor and device independence
- Solsoft NetfilterOne supports the ability to import existing device configurations and quickly migrate to different security platforms. With Solsoft NetfilterOne, you enjoy the flexibility to pick the best security device based on price vs. performance, regardless of team expertise.
Enhancements:
- This release supports Cisco IOS, PIX, ASA, FWSM, Netscreen, Nortel, Linux, and ISS proventia.
Download (114.6MB)
Added: 2005-10-26 License: Freeware Price:
1459 downloads
X-files 1.43
X-Files is a graphical file management program. more>>
X-Files is a graphical file management program for Unix/X-Window environment. It was inspired by the Amiga program DirWork.
This application differs slightly from the main stream file managers in that it has always only one window. On top (or bottom) of the window you have ActionbuttonsTM -area. Other main areas are the two directory listings for file related actions. You can use quick pop-up menu for basic operations. File extensions can be configured to launch any program you desire for that file.
The appearance and functionality can be fully configured according to your taste using the built-in editors.
Tested on: Intel Linux, DEC Alpha, SGI, HP-UX, Solaris
(Should work on any Unix-machine running Tcl/Tk.)
<<lessThis application differs slightly from the main stream file managers in that it has always only one window. On top (or bottom) of the window you have ActionbuttonsTM -area. Other main areas are the two directory listings for file related actions. You can use quick pop-up menu for basic operations. File extensions can be configured to launch any program you desire for that file.
The appearance and functionality can be fully configured according to your taste using the built-in editors.
Tested on: Intel Linux, DEC Alpha, SGI, HP-UX, Solaris
(Should work on any Unix-machine running Tcl/Tk.)
Download (0.15MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1649 downloads
GreenT 0.9.1
GreenT is a terminal emulator with tabs written in C#. more>>
GreenT is a terminal emulator with tabs written in C#.
GreenT is a linux terminal emulator written in C#. Its visibility can be toggled by a hotkey just like the consoles found in games.
Additionally it supports tabs like gnome-terminal. GreenT uses gnome terminals settings for its configuration which it updates in realtime when changed in gnome terminal.
Main features:
- uses gnome terminals settings and adjusts to them at runtime
- has a systemwide hotkey to show and hide itself
- can be configured to hide automatically when loosing focus
- does not show up in taskbar
- has support for multiple tabs
<<lessGreenT is a linux terminal emulator written in C#. Its visibility can be toggled by a hotkey just like the consoles found in games.
Additionally it supports tabs like gnome-terminal. GreenT uses gnome terminals settings for its configuration which it updates in realtime when changed in gnome terminal.
Main features:
- uses gnome terminals settings and adjusts to them at runtime
- has a systemwide hotkey to show and hide itself
- can be configured to hide automatically when loosing focus
- does not show up in taskbar
- has support for multiple tabs
Download (0.031MB)
Added: 2006-03-02 License: GPL (GNU General Public License) Price:
1331 downloads
ifplugd 0.27
ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in. more>>
ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in and automatically unconfigure it if the cable is pulled.
Installation:
As this package is made with the GNU autotools you should run ./configure inside the distribution directory for configuring the source tree. After that you should run make for compilation and make install (as root) for installation of ifplugd.
The installation scripts create an init script in ${sysconfdir}/init.d/ifplugd, however no /etc/rc?.d/ links are created for it.
This is useful on laptops with onboard network adapters, since it will only configure the interface when a cable is really connected.
Main features:
- Uses your distributions native ifup/ifdown programs.
- May beep when the cable is unplugged, plugged, the interface configuration succeeded or failed.
- Supports the Linux SIOCETHTOOL (newer, aka ethtool API), SIOCGMIIREG (older, aka mii-diag/mii-tool API) and SIOCDEVPRIVATE (oldest, aka mii-tool API) ioctl()s for getting link status. Release 0.24 introduces support for link detection with the IFF_RUNNING interface flag.
- Syslog support
- Small program - the binary is just 25 KB (plus 16 KB for libdaemon).
- Multiple ethernet interface support
- Can be configured to ignore short "unplugged" periods (-d option) or short "plugged" periods(-u option)
- Support for wireless networking. Whenever an association to an AP is detected the network is configured. Have a look on waproamd if you need a facility to configure WEP keys before AP associations succeed.
- Compatibility mode for network devices which do not support cable detection (-F option)
<<lessInstallation:
As this package is made with the GNU autotools you should run ./configure inside the distribution directory for configuring the source tree. After that you should run make for compilation and make install (as root) for installation of ifplugd.
The installation scripts create an init script in ${sysconfdir}/init.d/ifplugd, however no /etc/rc?.d/ links are created for it.
This is useful on laptops with onboard network adapters, since it will only configure the interface when a cable is really connected.
Main features:
- Uses your distributions native ifup/ifdown programs.
- May beep when the cable is unplugged, plugged, the interface configuration succeeded or failed.
- Supports the Linux SIOCETHTOOL (newer, aka ethtool API), SIOCGMIIREG (older, aka mii-diag/mii-tool API) and SIOCDEVPRIVATE (oldest, aka mii-tool API) ioctl()s for getting link status. Release 0.24 introduces support for link detection with the IFF_RUNNING interface flag.
- Syslog support
- Small program - the binary is just 25 KB (plus 16 KB for libdaemon).
- Multiple ethernet interface support
- Can be configured to ignore short "unplugged" periods (-d option) or short "plugged" periods(-u option)
- Support for wireless networking. Whenever an association to an AP is detected the network is configured. Have a look on waproamd if you need a facility to configure WEP keys before AP associations succeed.
- Compatibility mode for network devices which do not support cable detection (-F option)
Download (0.14MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1478 downloads
servicemon 0.2
servicemon is a simple service monitoring application written in Python. more>>
servicemon is a simple service monitoring application written in Python. The project periodically calls the init scripts for services it has been configured to monitor and determines whether each service is running, restarting failed services as appropriate.
It can send e-mail alerts and has a network interface to talk to a graphical frontend. There is a graphical client available for Linux written in Python/GTK and also a Java client which will run on any platform supported by Suns Java.
Enhancements:
- This version features a Makefile to automate installation, an init script to start servicemon automatically on boot, and many fixes and improvements to the core code.
<<lessIt can send e-mail alerts and has a network interface to talk to a graphical frontend. There is a graphical client available for Linux written in Python/GTK and also a Java client which will run on any platform supported by Suns Java.
Enhancements:
- This version features a Makefile to automate installation, an init script to start servicemon automatically on boot, and many fixes and improvements to the core code.
Download (0.006MB)
Added: 2007-05-16 License: GPL (GNU General Public License) Price:
891 downloads
multicolumn 0.2
multicolumn is a Firefox extension that sllows web pages to be configured to display in multiple columns. more>>
multicolumn is a Firefox extension that sllows web pages to be configured to display in multiple columns using Firefox 1.5 (Gecko 1.8) CSS property -moz-column-count, inspired by the draft CSS3 module: Multi-column layout. Make better use of high res screen real estate.
To see it in operation, install it, restart firefox, and then try visiting digg, slashdot, or google (for google, you need to do a search before youll see anything).
To change the number of columns to suit your screen or to configure it for another site, go into the settings tab (thin strip at the top of the browser window - click "more previews" above too see this highlighted on a screenshot).
Note that the tabs will only appear on sites which are configured (eg digg, slashdot, google).
To stop this extension from affecting a particular website, uncheck the relevant checkbox on the settings tab.
Further documentation is available on the settings tab.
<<lessTo see it in operation, install it, restart firefox, and then try visiting digg, slashdot, or google (for google, you need to do a search before youll see anything).
To change the number of columns to suit your screen or to configure it for another site, go into the settings tab (thin strip at the top of the browser window - click "more previews" above too see this highlighted on a screenshot).
Note that the tabs will only appear on sites which are configured (eg digg, slashdot, google).
To stop this extension from affecting a particular website, uncheck the relevant checkbox on the settings tab.
Further documentation is available on the settings tab.
Download (0.017MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
877 downloads
Webcockpit 1.5.0
Webcockpit is a Web application generator for reporting and monitoring applications. more>>
Webcockpit is a Web application generator for reporting and monitoring applications. It generates complete JSP-based Web applications which contain charts and tables whose contents are retrieved using database queries.
The charts and tables can be configured to link to each other, enabling master detail-like drill-down. You can provide your own HTML or JSP template files which are mixed with the generated JSP to provide a final Web application.
Enhancements:
- This minor release greatly improves the tabulation power by using the "displaytag" JSP taglib for runtime HTML table generation.
- Features include sorting or grouping by column, pagination, data export to CSV, Excel, and XML formats, and having full control of the tables CSS style markup.
- Improvements to charts include the possibility of defining the orientation of the label for the category axis.
- The embedded charting library "jfreechart" (v1.0.0) and "cewolf" (v0.11.0) have been upgraded to the latest versions.
<<lessThe charts and tables can be configured to link to each other, enabling master detail-like drill-down. You can provide your own HTML or JSP template files which are mixed with the generated JSP to provide a final Web application.
Enhancements:
- This minor release greatly improves the tabulation power by using the "displaytag" JSP taglib for runtime HTML table generation.
- Features include sorting or grouping by column, pagination, data export to CSV, Excel, and XML formats, and having full control of the tables CSS style markup.
- Improvements to charts include the possibility of defining the orientation of the label for the category axis.
- The embedded charting library "jfreechart" (v1.0.0) and "cewolf" (v0.11.0) have been upgraded to the latest versions.
Download (4.9MB)
Added: 2005-09-28 License: The Apache License 2.0 Price:
1488 downloads
pDonkey Server 0.01
pDonkeyS is Perl implementation of an eDonkey server. more>>
pDonkeyS is Perl implementation of an eDonkey server. The main goal of the server is to provide framework for further eDonkey protocol exploration, but it could be useful in testing of client software, since the server can be configured to output very detailed debugging info about eDonkey traffic.
This server was made to provide framework for further eDonkey protocol exploration, but it could be usefull in testing of client software, since the server can be configured to output very detailed debug info about eDonkey traffic.
<<lessThis server was made to provide framework for further eDonkey protocol exploration, but it could be usefull in testing of client software, since the server can be configured to output very detailed debug info about eDonkey traffic.
Download (0.011MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1228 downloads
Wizz RSS News Reader 2.1.8
Wizz RSS News Reader is a very simple Really Simple Syndication and Atom news aggregator. more>>
Wizz RSS News Reader is a very simple Really Simple Syndication and Atom news aggregator.
It is an XUL application, implements as a Firefox extension and is absolutely 100% free of charge. Wizz RSS does NOT contain ANY spyware or adware.
Main features:
- Drag and drop Quick View function for viewing feeds without having to add them.
- Optionally store lists centrally to make them easily available from any PC.
- Simple drag and drop for adding feeds.
- Share news items and feeds via email.
- Watch List to periodically check feeds for new news items.
- Watch list entries can be configured to notify when new news items are found or they can be configured to save new items locally.
- Watch list works fairly well as a Gmail checker.
- Optionally log Watch List activity.
- Integrated search functionality.
- Integrated weather information.
- Integrated Live Bookmark import.
- HTTP Authentication.
- Supports OPML imports and exports.
- Supports all versions of RSS.
- Supports Atom 0.3.
- Supports Atom 1.0.
- Supports integration with Firefox 2.0 feed handling.
- Supports GZIP compression (i.e. Feeds that are gzipped).
- Filter feed items on words and/or phrases.
- Feed Search for finding RSS feeds, Atom feeds and OPML on any web page (Will only find feeds and OPML that are identified with the correct mime types).
- Supports Podcast feeds (Enclosures).
- Enclosures can be saved or played through Firefox.
- Supports the Feed protocol.
- Optionally hide/show read items.
- Optionally sort news items alphabetically.
- Optionally limit the number of news items returned from a feed.
- Publish your collection of feeds on your Web site
<<lessIt is an XUL application, implements as a Firefox extension and is absolutely 100% free of charge. Wizz RSS does NOT contain ANY spyware or adware.
Main features:
- Drag and drop Quick View function for viewing feeds without having to add them.
- Optionally store lists centrally to make them easily available from any PC.
- Simple drag and drop for adding feeds.
- Share news items and feeds via email.
- Watch List to periodically check feeds for new news items.
- Watch list entries can be configured to notify when new news items are found or they can be configured to save new items locally.
- Watch list works fairly well as a Gmail checker.
- Optionally log Watch List activity.
- Integrated search functionality.
- Integrated weather information.
- Integrated Live Bookmark import.
- HTTP Authentication.
- Supports OPML imports and exports.
- Supports all versions of RSS.
- Supports Atom 0.3.
- Supports Atom 1.0.
- Supports integration with Firefox 2.0 feed handling.
- Supports GZIP compression (i.e. Feeds that are gzipped).
- Filter feed items on words and/or phrases.
- Feed Search for finding RSS feeds, Atom feeds and OPML on any web page (Will only find feeds and OPML that are identified with the correct mime types).
- Supports Podcast feeds (Enclosures).
- Enclosures can be saved or played through Firefox.
- Supports the Feed protocol.
- Optionally hide/show read items.
- Optionally sort news items alphabetically.
- Optionally limit the number of news items returned from a feed.
- Publish your collection of feeds on your Web site
Download (0.21MB)
Added: 2007-04-08 License: MPL (Mozilla Public License) Price:
1478 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 configured to 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