server 3.12
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4578
Mail::Bulkmail::Server 3.12
Mail::Bulkmail::Server is a Perl module that handles server connections and communication for Mail::Bulkmail. more>>
Mail::Bulkmail::Server is a Perl module that handles server connections and communication for Mail::Bulkmail.
SYNOPSIS
my $server = Mail::Bulkmail::Server->new(
Smtp => your.smtp.com,
Port => 25
) || die Mail::Bulkmail::Server->error();
#connect to the SMTP relay
$server->connect || die $server->error();
#talk to the server
my $response = $server->talk_and_respond("RSET");
Mail::Bulkmail::Server now handles server connections. Mail::Bulkmail 1.x and 2.x had all the server functionality built into the module itself. That was nice in terms of simplicity - one module, one connection, one server, and so on. But it had some downsides. For one thing, it only allowed for one connection. And since I wanted to allow multiple server connections in 3.00, that had to go. For another, it was a pain in the butt to change the server implementation. This way, you can easily write your own server class, drop it in here, and be off to the races.
For example, the Mail::Bulkmail::DummyServer module for debugging purposes.
This is not a module that youll really need to access directly, since it is accessed internally by Mail::Bulkmail when it is needed. Specify the data you need in the conf file and the server_file attribute, and you wont ever need to touch this directly.
<<lessSYNOPSIS
my $server = Mail::Bulkmail::Server->new(
Smtp => your.smtp.com,
Port => 25
) || die Mail::Bulkmail::Server->error();
#connect to the SMTP relay
$server->connect || die $server->error();
#talk to the server
my $response = $server->talk_and_respond("RSET");
Mail::Bulkmail::Server now handles server connections. Mail::Bulkmail 1.x and 2.x had all the server functionality built into the module itself. That was nice in terms of simplicity - one module, one connection, one server, and so on. But it had some downsides. For one thing, it only allowed for one connection. And since I wanted to allow multiple server connections in 3.00, that had to go. For another, it was a pain in the butt to change the server implementation. This way, you can easily write your own server class, drop it in here, and be off to the races.
For example, the Mail::Bulkmail::DummyServer module for debugging purposes.
This is not a module that youll really need to access directly, since it is accessed internally by Mail::Bulkmail when it is needed. Specify the data you need in the conf file and the server_file attribute, and you wont ever need to touch this directly.
Download (0.070MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1046 downloads
SME Server 7.2
e-smith is a server-oriented distribution. more>>
The SME Server server and gateway is free software (also referred to as open-source software) and is freely available for anyone to download.
This software is brought to you by the community and contribs.org. Many individuals and organizations (both commercial and non-profit) use the SME Server as their primary network server and gateway.
We would like to remind you that the SME Server software is licensed under the General Public License (GPL). This means that if you alter the software and distribute the altered version, you must make the source code for your altered version freely available.
The GPL is a large part of why free software has made such an impact on the commercial scene. By restricting anyone from making proprietary modifications, the GPL ensures that improvements find their way back to the original code base, thereby creating an explosive rate of technical advance.
The difference between traditional development and GPL development is the difference between a light bulb - where output is radiated in many directions - and a laser - where output is reflected back in a coherent way to produce a greater, more focused result.
Its main design focus is simple, centralized configuration, along with security and ease of installation.
Enhancements:
- This release is based on CentOS 4.5 and all packages have been updated to the latest releases. This release contains many new features, all released updates for SME Server 7.1 and fixes for many reported problems. Upgrades will be available by CD, the Software Installer and command line. All users should upgrade to this release.
<<lessThis software is brought to you by the community and contribs.org. Many individuals and organizations (both commercial and non-profit) use the SME Server as their primary network server and gateway.
We would like to remind you that the SME Server software is licensed under the General Public License (GPL). This means that if you alter the software and distribute the altered version, you must make the source code for your altered version freely available.
The GPL is a large part of why free software has made such an impact on the commercial scene. By restricting anyone from making proprietary modifications, the GPL ensures that improvements find their way back to the original code base, thereby creating an explosive rate of technical advance.
The difference between traditional development and GPL development is the difference between a light bulb - where output is radiated in many directions - and a laser - where output is reflected back in a coherent way to produce a greater, more focused result.
Its main design focus is simple, centralized configuration, along with security and ease of installation.
Enhancements:
- This release is based on CentOS 4.5 and all packages have been updated to the latest releases. This release contains many new features, all released updates for SME Server 7.1 and fixes for many reported problems. Upgrades will be available by CD, the Software Installer and command line. All users should upgrade to this release.
Download (515MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
844 downloads
NNML::Server 1.14
NNML::Server is a minimal NNTP server. more>>
NNML::Server is a minimal NNTP server.
SYNOPSIS
perl -MNNML::Server -e server
perl -MNNML::Server -e unspool
NNML::Server server implements a minimal NNTP server. It is (hope-) fully conformant to rfc977. In addition the commands XOVER and AUTHINFO are implemented.
Supported commands:
ARTICLE, AUTHINFO, BODY, GROUP, HEAD, HELP, IHAVE, LAST, LIST,
MODE, NEWGROUPS, NEWNEWS, NEXT, POST, QUIT, SLAVE, STAT
XOVER, XHDR, LIST NEWSGROUPS ng-spec
The main reason for writing this was to synchronize my mail directories across different hosts. The Mail directories are MH-Style with a .overview file in each folder and an active file in the base directory. These are maintained by the Emacs Gnus backend NNML. To get started, you can generate/update this files using the overview program. Upon POST and IHAVE commands this files will also be updated.
To start from scratch use:
touch /tmp/active;
perl -MNNML::Server -e server(base => "/tmp", port => 3000)
To export your mh-Mail use:
perl overview -base ~/Mail
perl -MNNML::Server -e server(base => "$ENV{HOME}/Mail", port => 3000)
The command POST and IHAVE honour the Newsgroups header if not overwritten by the X-Nnml-Groups header. Articles will contain an appropriate X-Nnml-Groups header when retrieved by message-id.
When the client submits the SLAVE command, all forther post requests are spooled in $Config-spool> (usually ~/Mail/NNML.spool) for performance reasons. You can process the spooled articles by submitting the XUNSPOOL command or by calling
perl -MNNML::Server -e unspool
Rejected articles will be saven in $Config-bad> (usually ~/Mail/NNML.bad)
<<lessSYNOPSIS
perl -MNNML::Server -e server
perl -MNNML::Server -e unspool
NNML::Server server implements a minimal NNTP server. It is (hope-) fully conformant to rfc977. In addition the commands XOVER and AUTHINFO are implemented.
Supported commands:
ARTICLE, AUTHINFO, BODY, GROUP, HEAD, HELP, IHAVE, LAST, LIST,
MODE, NEWGROUPS, NEWNEWS, NEXT, POST, QUIT, SLAVE, STAT
XOVER, XHDR, LIST NEWSGROUPS ng-spec
The main reason for writing this was to synchronize my mail directories across different hosts. The Mail directories are MH-Style with a .overview file in each folder and an active file in the base directory. These are maintained by the Emacs Gnus backend NNML. To get started, you can generate/update this files using the overview program. Upon POST and IHAVE commands this files will also be updated.
To start from scratch use:
touch /tmp/active;
perl -MNNML::Server -e server(base => "/tmp", port => 3000)
To export your mh-Mail use:
perl overview -base ~/Mail
perl -MNNML::Server -e server(base => "$ENV{HOME}/Mail", port => 3000)
The command POST and IHAVE honour the Newsgroups header if not overwritten by the X-Nnml-Groups header. Articles will contain an appropriate X-Nnml-Groups header when retrieved by message-id.
When the client submits the SLAVE command, all forther post requests are spooled in $Config-spool> (usually ~/Mail/NNML.spool) for performance reasons. You can process the spooled articles by submitting the XUNSPOOL command or by calling
perl -MNNML::Server -e unspool
Rejected articles will be saven in $Config-bad> (usually ~/Mail/NNML.bad)
Download (0.023MB)
Added: 2007-04-19 License: Perl Artistic License Price:
919 downloads
Tail Server 0.2.2
Tail server allows you to export the output of a more>>
Tail server allows you to export the output of a "tail -f" command of a log file to a TCP port, allowing it to be viewed remotely with telnet. Tail Server provides a regular expression filter to include or exclude output view.
In several circumstances the need to access on remote time-varying log file leads to write some simple scripts.
These files generated by applications like syslog, http, news, etc. are often located on different machines.
System Administrator usually logon on remote system then type:
# tail -f filename
Tail Server offers the possibliy to map on Tcp/Ip port the output of "# tail -f filename" without (each time) logging on remote systems.
Also offers output regular expressions filter in order to include or exclude strings.
Enhancements:
- Server Log File has been implemented.
<<lessIn several circumstances the need to access on remote time-varying log file leads to write some simple scripts.
These files generated by applications like syslog, http, news, etc. are often located on different machines.
System Administrator usually logon on remote system then type:
# tail -f filename
Tail Server offers the possibliy to map on Tcp/Ip port the output of "# tail -f filename" without (each time) logging on remote systems.
Also offers output regular expressions filter in order to include or exclude strings.
Enhancements:
- Server Log File has been implemented.
Download (0.011MB)
Added: 2007-01-25 License: GPL (GNU General Public License) Price:
1003 downloads
Server Monitor 0.1
Server Monitor is a theme which displays the status of your servers. more>>
Server Monitor is a theme which displays the status of your servers. Also you can start / stop them by clicking the names.
You cann add servers by editing the py-file. You may resize theme in the .theme-fille.
Based on vpn by N7DR (http://www.kde-look.org/content/show.php?content=39390).
<<lessYou cann add servers by editing the py-file. You may resize theme in the .theme-fille.
Based on vpn by N7DR (http://www.kde-look.org/content/show.php?content=39390).
Download (0.002MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
TFTP Server 1.4
TFTP Server supports tsize, blksize, and interval options, supports PXE boot, and can be run standalone or as a daemon. more>>
TFTP Server is a multi-threaded TFTP server, which means any number of clients can connect simultaneously.
TFTP Server supports tsize, blksize, and interval options, supports PXE boot, and can be run standalone or as a daemon.
TESTING
This server runs in Debug Mode (with flag -v) or as Service (without any flag). Please expand the .gz file to an directory, using shell, goto that directory, edit tftpserver.ini file (just specify home dir) and give following command as root:-
tftpserver#./tftpserver -v
You will see following results:-
Ready...
Now open one more shell and give following commands:-
$tftp
tftp>connect localhost
tftp>get [some file name in home dir]
Received 13112 bytes in 0.0 seconds
and on server you may see
client 127.0.0.1:xxxxx file ...... # blocks served
INSTALLATION
This program runs in two modes:-
a) Debug Mode (using -v argument)
b) Daemon (using no argument)
This program should be setup to start automatically modifying boot scripts /etc/rc.d/rc.local file or /etc/inittab file. Never include -v (verbatim flag) while running as Daemon from these scripts.
CONFIGURATION
You need home directory to be set in tftpserver.ini file, you can comment other parameters like blksize and interval.
UNINSTALLATION
Just remove the program directory. You should also remove entries from initialize scripts of
your machine.
Enhancements:
- This release uses Thread Pool, which improves performance.
- Log file and ini file locations can now be overridden in the Unix version.
<<lessTFTP Server supports tsize, blksize, and interval options, supports PXE boot, and can be run standalone or as a daemon.
TESTING
This server runs in Debug Mode (with flag -v) or as Service (without any flag). Please expand the .gz file to an directory, using shell, goto that directory, edit tftpserver.ini file (just specify home dir) and give following command as root:-
tftpserver#./tftpserver -v
You will see following results:-
Ready...
Now open one more shell and give following commands:-
$tftp
tftp>connect localhost
tftp>get [some file name in home dir]
Received 13112 bytes in 0.0 seconds
and on server you may see
client 127.0.0.1:xxxxx file ...... # blocks served
INSTALLATION
This program runs in two modes:-
a) Debug Mode (using -v argument)
b) Daemon (using no argument)
This program should be setup to start automatically modifying boot scripts /etc/rc.d/rc.local file or /etc/inittab file. Never include -v (verbatim flag) while running as Daemon from these scripts.
CONFIGURATION
You need home directory to be set in tftpserver.ini file, you can comment other parameters like blksize and interval.
UNINSTALLATION
Just remove the program directory. You should also remove entries from initialize scripts of
your machine.
Enhancements:
- This release uses Thread Pool, which improves performance.
- Log file and ini file locations can now be overridden in the Unix version.
Download (0.018MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
885 downloads
GSnes9x 3.12
GSnes9x project is a GNOME front end for the Snes9X SNES emulator more>>
GSnes9x project is a GNOME front end for the Snes9X SNES emulator
GSnes9x is a GNOME front-end for the Snes9X SNES emulator.
It allows setting and preservation of options for each ROM, and keeps a Cheat Codes database, an unlimited amount of codes can be stored.
Enhancements:
- Version 3.12 release
- remove help hackery, use Gnome help system
- include Snes9x Readme v1.37
- patch to use GSNES9X_IMAGE_DIR environment variable from morpheus2371
- Gnomified image loading
<<lessGSnes9x is a GNOME front-end for the Snes9X SNES emulator.
It allows setting and preservation of options for each ROM, and keeps a Cheat Codes database, an unlimited amount of codes can be stored.
Enhancements:
- Version 3.12 release
- remove help hackery, use Gnome help system
- include Snes9x Readme v1.37
- patch to use GSNES9X_IMAGE_DIR environment variable from morpheus2371
- Gnomified image loading
Download (0.46MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1082 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
Video server 0.6
Video server is a streaming video server which feeds a Java applet/application for display. more>>
Video server is a streaming video server which feeds a Java applet/application for display. The updates are rather slow, somewhere in the 10 frames/second range on a PIII. The server is written in Bigloo scheme and C. The client is written in Java.
To bring up the video server you have to do the following.
./vs --channel 25 --sd 12 --input 0
./vs --help
for more options. (This seems broken with the newest version of bigloo .... )
How to bring up a java client to connect to a server:
Insure that video/java is in your classpath, and invoke
java vpanel servername
<<lessTo bring up the video server you have to do the following.
./vs --channel 25 --sd 12 --input 0
./vs --help
for more options. (This seems broken with the newest version of bigloo .... )
How to bring up a java client to connect to a server:
Insure that video/java is in your classpath, and invoke
java vpanel servername
Download (5.5MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1210 downloads
Net::Server 0.93
Net::Server is an extensible, general Perl server engine. more>>
Net::Server is an extensible, general Perl server engine.
SYNOPSIS
#!/usr/bin/perl -w -T
package MyPackage;
use Net::Server;
@ISA = qw(Net::Server);
sub process_request {
#...code...
}
MyPackage->run(port => 160);
exit;
Main features:
- Single Server Mode
- Inetd Server Mode
- Preforking Simple Mode (PreForkSimple)
- Preforking Managed Mode (PreFork)
- Forking Mode
- Multiplexing Mode using a single process
- Multi port accepts on Single, Preforking, and Forking modes
- Simultaneous accept/recv on tcp, udp, and unix sockets
- Safe signal handling in Fork/PreFork avoids perl signal trouble
- User customizable hooks
- Chroot ability after bind
- Change of user and group after bind
- Basic allow/deny access control
- Customized logging (choose Syslog, log_file, or STDERR)
- HUP able server (clean restarts via sig HUP)
- Dequeue ability in all Fork and PreFork modes.
- Taint clean
- Written in Perl
- Protection against buffer overflow
- Clean process flow
- Extensibility
Net::Server is an extensible, generic Perl server engine. Net::Server combines the good properties from Net::Daemon (0.34), NetServer::Generic (1.03), and Net::FTPServer (1.0), and also from various concepts in the Apache Webserver.
Net::Server attempts to be a generic server as in Net::Daemon and NetServer::Generic. It includes with it the ability to run as an inetd process (Net::Server::INET), a single connection server (Net::Server or Net::Server::Single), a forking server (Net::Server::Fork), a preforking server which maintains a constant number of preforked children (Net::Server::PreForkSimple), or as a managed preforking server which maintains the number of children based on server load (Net::Server::PreFork). In all but the inetd type, the server provides the ability to connect to one or to multiple server ports.
Net::Server uses ideologies of Net::FTPServer in order to provide extensibility. The additional server types are made possible via "personalities" or sub classes of the Net::Server. By moving the multiple types of servers out of the main Net::Server class, the Net::Server concept is easily extended to other types (in the near future, we would like to add a "Thread" personality).
Net::Server borrows several concepts from the Apache Webserver. Net::Server uses "hooks" to allow custom servers such as SMTP, HTTP, POP3, etc. to be layered over the base Net::Server class. In addition the Net::Server::PreFork class borrows concepts of min_start_servers, max_servers, and min_waiting servers.
Net::Server::PreFork also uses the concept of an flock serialized accept when accepting on multiple ports (PreFork can choose between flock, IPC::Semaphore, and pipe to control serialization).
<<lessSYNOPSIS
#!/usr/bin/perl -w -T
package MyPackage;
use Net::Server;
@ISA = qw(Net::Server);
sub process_request {
#...code...
}
MyPackage->run(port => 160);
exit;
Main features:
- Single Server Mode
- Inetd Server Mode
- Preforking Simple Mode (PreForkSimple)
- Preforking Managed Mode (PreFork)
- Forking Mode
- Multiplexing Mode using a single process
- Multi port accepts on Single, Preforking, and Forking modes
- Simultaneous accept/recv on tcp, udp, and unix sockets
- Safe signal handling in Fork/PreFork avoids perl signal trouble
- User customizable hooks
- Chroot ability after bind
- Change of user and group after bind
- Basic allow/deny access control
- Customized logging (choose Syslog, log_file, or STDERR)
- HUP able server (clean restarts via sig HUP)
- Dequeue ability in all Fork and PreFork modes.
- Taint clean
- Written in Perl
- Protection against buffer overflow
- Clean process flow
- Extensibility
Net::Server is an extensible, generic Perl server engine. Net::Server combines the good properties from Net::Daemon (0.34), NetServer::Generic (1.03), and Net::FTPServer (1.0), and also from various concepts in the Apache Webserver.
Net::Server attempts to be a generic server as in Net::Daemon and NetServer::Generic. It includes with it the ability to run as an inetd process (Net::Server::INET), a single connection server (Net::Server or Net::Server::Single), a forking server (Net::Server::Fork), a preforking server which maintains a constant number of preforked children (Net::Server::PreForkSimple), or as a managed preforking server which maintains the number of children based on server load (Net::Server::PreFork). In all but the inetd type, the server provides the ability to connect to one or to multiple server ports.
Net::Server uses ideologies of Net::FTPServer in order to provide extensibility. The additional server types are made possible via "personalities" or sub classes of the Net::Server. By moving the multiple types of servers out of the main Net::Server class, the Net::Server concept is easily extended to other types (in the near future, we would like to add a "Thread" personality).
Net::Server borrows several concepts from the Apache Webserver. Net::Server uses "hooks" to allow custom servers such as SMTP, HTTP, POP3, etc. to be layered over the base Net::Server class. In addition the Net::Server::PreFork class borrows concepts of min_start_servers, max_servers, and min_waiting servers.
Net::Server::PreFork also uses the concept of an flock serialized accept when accepting on multiple ports (PreFork can choose between flock, IPC::Semaphore, and pipe to control serialization).
Download (0.080MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1219 downloads
k12admin-server 0.3.6-1
k12admin-server project is a web-based server administration tool for K-12 school systems (server package). more>>
k12admin-server project is a web-based server administration tool for K-12 school systems (server package).
K12Admin is a Wide Area Network administration program geared specifically to K-12 school systems.
It allows teachers in individual schools to administer the accounts in that school. K12Admin will administer the account information on client Linux servers in each school from a central server.
All administration is done through a Web browser interface. The system also includes inappropriate Web use scanning and security auditing. The k12admin-server package is the server part of the K12Admin system.
It will typically be run on only one computer in a district. In order to be fully functional, the k12admin-client package needs to be installed on at least one server, possibly even the k12admin-server machine.
Enhancements:
- Added storyboard database - students and teachers can enter original stories, with pictures.
- Added title field to users table (ie Mr. Mrs. Miss) I use this for the StoryBoard so that a teachers first name is not displayed.
- No usable passwords for default users on new installs
- Passwords for default domain admins (demoteacher, swedishteacher, frenchteacher) are set to the password supplied on install for the mysql database.
<<lessK12Admin is a Wide Area Network administration program geared specifically to K-12 school systems.
It allows teachers in individual schools to administer the accounts in that school. K12Admin will administer the account information on client Linux servers in each school from a central server.
All administration is done through a Web browser interface. The system also includes inappropriate Web use scanning and security auditing. The k12admin-server package is the server part of the K12Admin system.
It will typically be run on only one computer in a district. In order to be fully functional, the k12admin-client package needs to be installed on at least one server, possibly even the k12admin-server machine.
Enhancements:
- Added storyboard database - students and teachers can enter original stories, with pictures.
- Added title field to users table (ie Mr. Mrs. Miss) I use this for the StoryBoard so that a teachers first name is not displayed.
- No usable passwords for default users on new installs
- Passwords for default domain admins (demoteacher, swedishteacher, frenchteacher) are set to the password supplied on install for the mysql database.
Download (0.38MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
Sws Web Server 0.1.7
Sws Web Server is a fast, secure, and simple Web server. more>>
Sws Web Server is a fast, secure, and simple Web server.
Installation:
./make
./make install
Usage:
For start
Redhat and Debian users
/etc/init.d/sws_web_server.init start
slackware users
/etc/rc.d/init.d/rc.sws start
First create /etc/sws directory
sws.conf file copy in to /etc/sws
Edit sws.conf
Enhancements:
- A file transfer problem has been solved.
<<lessInstallation:
./make
./make install
Usage:
For start
Redhat and Debian users
/etc/init.d/sws_web_server.init start
slackware users
/etc/rc.d/init.d/rc.sws start
First create /etc/sws directory
sws.conf file copy in to /etc/sws
Edit sws.conf
Enhancements:
- A file transfer problem has been solved.
Download (0.005MB)
Added: 2005-07-13 License: GPL (GNU General Public License) Price:
1569 downloads
Linx Kiss Server 1.1
Linx Kiss Server project was primarily intended for personal purpose. more>>
Linx Kiss Server project was primarily intended for personal purpose. I couldnt make any of available kiss linux servers work with my new Kiss DP-600 player in a way I would imagine so I found kissd simple kiss daemon by Alexandre Becoulet which is really simple and clear code to understand and fixed it up and added some more features.
Linux Kiss Server (LKS) works with Kiss DP-600 but I think it should work with any other Kiss player as well.
Main features:
- makes selected direcotory accessible for Kiss player
- can run either as a daemon or in foreground
- can answer Kiss player queries for PC-LINK server
- can disable UDP binding at all (doesnt respond to Kiss player looking for PC-LINK server queries)
- can overide default server port
Enhancements:
- A problem with zombie processes when the opening of files failed was fixed.
- TIME_WAIT sockets are now closed correctly.
- Events are now logged using syslog when the server is run in daemon mode.
<<lessLinux Kiss Server (LKS) works with Kiss DP-600 but I think it should work with any other Kiss player as well.
Main features:
- makes selected direcotory accessible for Kiss player
- can run either as a daemon or in foreground
- can answer Kiss player queries for PC-LINK server
- can disable UDP binding at all (doesnt respond to Kiss player looking for PC-LINK server queries)
- can overide default server port
Enhancements:
- A problem with zombie processes when the opening of files failed was fixed.
- TIME_WAIT sockets are now closed correctly.
- Events are now logged using syslog when the server is run in daemon mode.
Download (0.060MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1199 downloads
Graveman 0.3.12-5
GRAVEMAN is a GUI frontend for CD-R tools (cdrecord, readcd, and mkisofs), cdrdao, DVD+RW tools, and sox. more>>
GRAVEMAN is a GUI frontend for CD-R tools (cdrecord, readcd, and mkisofs), cdrdao, DVD+RW tools (growisofs and dvd+rw-format), and sox.
You can also import M3U and PTS playlists.
Main features:
- burn audio cd (from wav, ogg, mp3, flac, import m3u and pts playlists)
- burn data cd and dvd
- duplicate cd
- clean rewritable cd and dvd
Enhancements:
- Just a bugfixe release to close major "invalid free" bug.
<<lessYou can also import M3U and PTS playlists.
Main features:
- burn audio cd (from wav, ogg, mp3, flac, import m3u and pts playlists)
- burn data cd and dvd
- duplicate cd
- clean rewritable cd and dvd
Enhancements:
- Just a bugfixe release to close major "invalid free" bug.
Download (0.92MB)
Added: 2006-06-06 License: GPL (GNU General Public License) Price:
1242 downloads

FreeMarker 2.3.12
a "template engine"; a generic tool to generate text output based on templates more>> FreeMarker is a "template engine"; a generic tool to generate text output (anything from HTML to autogenerated source code) based on templates. Its a Java package, a class library for Java programmers. Its not an application for end-users in itself, but something that programmers can embed into their products.
FreeMarker is designed to be practical for the generation of HTML Web pages, particularly by servlet-based applications following the MVC (Model View Controller) pattern. The idea behind using the MVC pattern for dynamic Web pages is that you separate the designers (HTML authors) from the programmers. Everybody works on what they are good at. Designers can change the appearance of a page without programmers having to change or recompile code, because the application logic (Java programs) and page design (FreeMarker templates) are separated. Templates do not become polluted with complex program fragments. This separation is useful even for projects where the programmer and the HTML page author is the same person, since it helps to keep the application clear and easily maintainable.
Although FreeMarker has some programming capabilities, it is not a full-blown programming language like PHP. Instead, Java programs prepare the data to be displayed (like issue SQL queries), and FreeMarker just generates textual pages that display the prepared data using templates.
FreeMarker is not a Web application framework. It is suitable as a component in a Web application framework, but the FreeMarker engine itself knows nothing about HTTP or servlets. It simply generates text. As such, it is perfectly usable in non-web application environments as well. Note, however, that we provide out-of-the-box solutions for using FreeMarker as the view component of Model 2 frameworks (e.g. Struts), which also let you use JSP taglibs in the templates.<<less
Download (2.02MB)
Added: 2009-04-07 License: Freeware Price: Free
210 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 server 3.12 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