functionality
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1312
Evolution 2.8.3
Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop. more>>
Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop.
Main features:
- No viruses or worms
- Junk filtering
- Desktop integration
- Developer Platform (EDS)
- Evolution#
- EPlugin
- Advanced email searching
- Web calendars
- vFolders
- User-defined filters
- Multiple accounts
- Palm device support
- Customized reminders
- Multiple calendar views
- iCalendar support
- To-Do list
- LDAP compatible
- Share vCards
- Security and encryption
- Open Source
<<lessMain features:
- No viruses or worms
- Junk filtering
- Desktop integration
- Developer Platform (EDS)
- Evolution#
- EPlugin
- Advanced email searching
- Web calendars
- vFolders
- User-defined filters
- Multiple accounts
- Palm device support
- Customized reminders
- Multiple calendar views
- iCalendar support
- To-Do list
- LDAP compatible
- Share vCards
- Security and encryption
- Open Source
Download (17MB)
Added: 2007-01-30 License: GPL (GNU General Public License) Price:
999 downloads
Other version of Evolution
License:GPL (GNU General Public License)
python_alsaplayer 0.3
python_alsaplayer is a set of Python bindings for the alsaplayer libraries. more>>
python_alsaplayer is a set of Python bindings for the alsaplayer libraries. The bindings are intended to provide a minimal level of abstraction over the C libraries.
Higher-level abstractions and functionality can then be written purely in Python. This module has dependencies on the boost and Python libraries.
<<lessHigher-level abstractions and functionality can then be written purely in Python. This module has dependencies on the boost and Python libraries.
Download (0.011MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
977 downloads
Object Relational Membrane 2a5
Object Relational Membrane is a Python package that provides the functionality of an object relational layer like EJB. more>>
Object Relational Membrane is a Python package that provides the functionality of an object relational layer like EJB or other persistence storage systems.
Object Relational Membrane is a thin compatibility layer between SQL table layouts and Object Oriented Python. While providing a good deal of functionality, it tries to be as small and simple as possible. It currently works with PostgreSQL and Gadfly.
Adapters for Firebird and MySQL are planed.
Enhancements:
- A number of small changes and enhancements.
- The last release previous to a "beta" release.
<<lessObject Relational Membrane is a thin compatibility layer between SQL table layouts and Object Oriented Python. While providing a good deal of functionality, it tries to be as small and simple as possible. It currently works with PostgreSQL and Gadfly.
Adapters for Firebird and MySQL are planed.
Enhancements:
- A number of small changes and enhancements.
- The last release previous to a "beta" release.
Download (0.17MB)
Added: 2007-01-23 License: GPL (GNU General Public License) Price:
1005 downloads
Oracle client 1.00
Oracle client is a simplistic Perl-based Oracle client. more>>
Oracle client is a simplistic Perl-based Oracle client that tries to mimic some of the functionality of PostgreSQL and MySQLs text-based SQL clients.
It is relatively simplistic, but much more useful than dbishell or sqlplus.
The project supports readline, history, desc, and various shorthand commands like d, , c, etc.
<<lessIt is relatively simplistic, but much more useful than dbishell or sqlplus.
The project supports readline, history, desc, and various shorthand commands like d, , c, etc.
Download (0.013MB)
Added: 2007-04-12 License: Perl Artistic License Price:
938 downloads
Kammu snapshot
Kammu is a mobile phone management tool. more>>
Kammu is a mobile phone management tool.
Kammu is a KDE frontend for the GNU all mobile management tools Gammu.
This is a very first development snapshot. Please note that this version has some basic functionality only, please dont report any bugs on that version.
<<lessKammu is a KDE frontend for the GNU all mobile management tools Gammu.
This is a very first development snapshot. Please note that this version has some basic functionality only, please dont report any bugs on that version.
Download (0.80MB)
Added: 2005-05-25 License: GPL (GNU General Public License) Price:
1618 downloads
gtinyfugue 0.1
gtinyfugue is a GUI for tinyfugue. more>>
gtinyfugue project is a GUI for tinyfugue.
Tinyfugue is a very popular MUD/MUSH command line client rich in functionality. When using tinyfugue in a graphical environment the only thing it lacks is the peripheral buttons and options that are available to graphical clients.
Gtinyfugue aims to embed tinyfugue within a GNOME wrapper that provides the GUI widgets that make tinyfugue easier and more comfortable to use on a day-to-day basis.
Embedding tinyfugue rather than using simple telnet gives the gtinyfugue user the advantage of the depth of tinyfugue functionality.
<<lessTinyfugue is a very popular MUD/MUSH command line client rich in functionality. When using tinyfugue in a graphical environment the only thing it lacks is the peripheral buttons and options that are available to graphical clients.
Gtinyfugue aims to embed tinyfugue within a GNOME wrapper that provides the GUI widgets that make tinyfugue easier and more comfortable to use on a day-to-day basis.
Embedding tinyfugue rather than using simple telnet gives the gtinyfugue user the advantage of the depth of tinyfugue functionality.
Download (0.48MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1041 downloads
ftplib++ 2.0.2
ftplib++ contains a c++ class providing ftp client functionality. more>>
ftplib++ contains a c++ class providing ftp client functionality.
It supports all basic ftp functionality plus some advanced features like resuming, fxp, ssl/tls encryption, large file support, or logging to fit todays standards. The very base of ftplib++ is the nice code of Thomas Pfaus ftplib c library.
Every ftp session is represented by an ftplib object, whose methods are called to communicate with the ftp server.
The ftp sessions should begin with a call to myftp.Connect("myftp.org:21") (and maybe myftp.NegotiateEncryption()), be followed with myftp.Login("myuser","mypass") and ended by myftp.Quit(); For the magic in between, read the class methods documentation.
Most methods have their tasks yet explained from their name. ftplib++ uses the openssl library for encryption functionality, if you dont need it you can use the "NOSSL" flag, when compiling ftplib.cpp (g++ -c ftplib.cpp -DNOSSL).
If your system does not feature large file support you can use the "NOLFS" flag (g++ -c ftplib.cpp -DNOLFS).
ToDo:
- implement up and download speed limitation.
Enhancements:
- fixed a bug in the upload routine
<<lessIt supports all basic ftp functionality plus some advanced features like resuming, fxp, ssl/tls encryption, large file support, or logging to fit todays standards. The very base of ftplib++ is the nice code of Thomas Pfaus ftplib c library.
Every ftp session is represented by an ftplib object, whose methods are called to communicate with the ftp server.
The ftp sessions should begin with a call to myftp.Connect("myftp.org:21") (and maybe myftp.NegotiateEncryption()), be followed with myftp.Login("myuser","mypass") and ended by myftp.Quit(); For the magic in between, read the class methods documentation.
Most methods have their tasks yet explained from their name. ftplib++ uses the openssl library for encryption functionality, if you dont need it you can use the "NOSSL" flag, when compiling ftplib.cpp (g++ -c ftplib.cpp -DNOSSL).
If your system does not feature large file support you can use the "NOLFS" flag (g++ -c ftplib.cpp -DNOLFS).
ToDo:
- implement up and download speed limitation.
Enhancements:
- fixed a bug in the upload routine
Download (0.027MB)
Added: 2005-09-23 License: LGPL (GNU Lesser General Public License) Price:
1495 downloads
Cython 0.9.6.3
Cython is a language that makes writing C extensions for the Python language as easy as Python itself. more>>
Cython is a language that makes writing C extensions for the Python language as easy as Python itself.
It is based on the well-known Pyrex, but supports more cutting edge functionality and optimizations.
Development of Cython is mainly motivated by the needs of SAGE.
<<lessIt is based on the well-known Pyrex, but supports more cutting edge functionality and optimizations.
Development of Cython is mainly motivated by the needs of SAGE.
Download (0.53MB)
Added: 2007-08-02 License: Python License Price:
814 downloads
Concepts 2.1.1
Concepts is a C++ class library for solving elliptic partial differential equations (PDEs) numerically. more>>
Concepts project is a C++ class library for solving elliptic partial differential equations (PDEs) numerically.
The design principle is the transfer of mathematical objects and grammar used to specify mathematical and numerical models of physical systems isomorphically into simulation software.
The design realization uses the C++ functionality of inheritance and derived classes.
<<lessThe design principle is the transfer of mathematical objects and grammar used to specify mathematical and numerical models of physical systems isomorphically into simulation software.
The design realization uses the C++ functionality of inheritance and derived classes.
Download (2.0MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1298 downloads
ftplibpp 2.0.2
ftplib++ contains a c++ class providing ftp client functionality. more>>
ftplib++ contains a c++ class providing ftp client functionality. ftplibpp library supports all basic ftp functionality plus some advanced features like resuming, fxp, ssl/tls encryption, large file support, or logging to fit todays standards.
The very base of ftplib++ is the nice code of Thomas Pfaus ftplib c library. Every ftp session is represented by an ftplib object, whose methods are called to communicate with the ftp server.
The ftp sessions should begin with a call to myftp.Connect("myftp.org:21") (and maybe myftp.NegotiateEncryption()), be followed with myftp.Login("myuser","mypass") and ended by myftp.Quit(); For the magic in between, read the class methods documentation.
Most methods have their tasks yet explained from their name. ftplib++ uses the openssl library for encryption functionality, if you dont need it you can use the "NOSSL" flag, when compiling ftplib.cpp (g++ -c ftplib.cpp -DNOSSL).
If your system does not feature large file support you can use the "NOLFS" flag (g++ -c ftplib.cpp -DNOLFS).
Enhancements:
- fixed a bug in the upload routine
<<lessThe very base of ftplib++ is the nice code of Thomas Pfaus ftplib c library. Every ftp session is represented by an ftplib object, whose methods are called to communicate with the ftp server.
The ftp sessions should begin with a call to myftp.Connect("myftp.org:21") (and maybe myftp.NegotiateEncryption()), be followed with myftp.Login("myuser","mypass") and ended by myftp.Quit(); For the magic in between, read the class methods documentation.
Most methods have their tasks yet explained from their name. ftplib++ uses the openssl library for encryption functionality, if you dont need it you can use the "NOSSL" flag, when compiling ftplib.cpp (g++ -c ftplib.cpp -DNOSSL).
If your system does not feature large file support you can use the "NOLFS" flag (g++ -c ftplib.cpp -DNOLFS).
Enhancements:
- fixed a bug in the upload routine
Download (0.027MB)
Added: 2005-11-30 License: GPL (GNU General Public License) Price:
1429 downloads
SMM++ Mud Client 6.1.1
SMM++ Mud Client project is a client with mapping functionality and lots of other features. more>>
SMM++ Mud Client project is a client with mapping functionality and lots of other features.
SMM++ Mud Client is a mud client with extended and unique features.
Aside from all standard mud client functionality like ANSI color support, aliases, action triggers, and tab-completion, SMM++ features a highly-customizable user interface (labels, buttons, and menus) and unique and powerful mapping capabilities, and SMM++ is the only mapping crossplatform (Tcl/Tk based) mud client available.
Enhancements:
- ::smm::action replaced with ::smm::reaction (pretty stable)
Added:
- ::smm::pasteok hook (not tested extensively, yet)
<<lessSMM++ Mud Client is a mud client with extended and unique features.
Aside from all standard mud client functionality like ANSI color support, aliases, action triggers, and tab-completion, SMM++ features a highly-customizable user interface (labels, buttons, and menus) and unique and powerful mapping capabilities, and SMM++ is the only mapping crossplatform (Tcl/Tk based) mud client available.
Enhancements:
- ::smm::action replaced with ::smm::reaction (pretty stable)
Added:
- ::smm::pasteok hook (not tested extensively, yet)
Download (0.24MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1082 downloads
fruMailer 0.121
fruMailer is a cross platform MUA written in both Java and Perl. more>>
fruMailer is a cross platform MUA written in both Java and Perl. The idea behind GUI is to have a mail client with a GIMP-like interface. FruMailer is a project written in Perl/Tk that aims to be an e-mail client (MUA) with a small, fast, light, and simple GUI interface.
Enhancements:
- MIME parsing/encoding
- http link parsing
- changelog started
- newline error fixed
- updated interface and some functionality
- lost much functionality
<<lessEnhancements:
- MIME parsing/encoding
- http link parsing
- changelog started
- newline error fixed
- updated interface and some functionality
- lost much functionality
Download (0.008MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1232 downloads
PloneInstallation 2.1.2
PloneInstallation provides a collection of helper scripts for Plone product installation. more>>
PloneInstallation provides a collection of helper scripts for Plone product installation.
This package doesnt add any functionality to Plone. It just provides friendly resources to make Plone adds (un)installation scripts easier.
<<lessThis package doesnt add any functionality to Plone. It just provides friendly resources to make Plone adds (un)installation scripts easier.
Download (0.028MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
989 downloads
PHP FormMail 2.0
PHP FormMail provides an ASP/PHP script conversion of FormMail.pl. more>>
PHP FormMail provides an ASP/PHP script conversion of FormMail.pl.
PHP FormMail is a PHP script conversion of the original FormMail.pl, but with many security and spam related fixes and improvements. Some customization options are removed for simplicity while keeping functionality and improving it where neccessary. An ASP version of this script is also included.
<<lessPHP FormMail is a PHP script conversion of the original FormMail.pl, but with many security and spam related fixes and improvements. Some customization options are removed for simplicity while keeping functionality and improving it where neccessary. An ASP version of this script is also included.
Download (0.007MB)
Added: 2007-02-21 License: Freely Distributable Price:
596 downloads
librmrtsp
librmrtsp is provided as a library to allow other free software projects to include the functionality in there software. more>>
librmrtsp performs the same function as imfetch, however it is provided as a library to allow other free software projects to include the functionality in there software.
librmrtsp is based on code from the xine project, but has been extensively modified to remove buffer overruns, crashes and dependencies on the rest of the xine source tree.
The idea is continue process in order to produce a high quality library that could be used by other projects like xine and Fido.
<<lesslibrmrtsp is based on code from the xine project, but has been extensively modified to remove buffer overruns, crashes and dependencies on the rest of the xine source tree.
The idea is continue process in order to produce a high quality library that could be used by other projects like xine and Fido.
Download (MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
613 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 functionality 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