multi languages
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3152
Translate! (multi-language) 1.0
Translate! (multi-language) is a Google-based, over-the-network translation desktop widget. more>>
Translate! (multi-language) is a Google-based, over-the-network translation desktop widget.
It automatically supports all languages translate.google.com supports as of the moment you start the widget.
(Double-)Click the Wrench button on the middle to chose the language pair.
<<lessIt automatically supports all languages translate.google.com supports as of the moment you start the widget.
(Double-)Click the Wrench button on the middle to chose the language pair.
Download (0.014MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
935 downloads
X Language 0.7.1
X Language is a programming language. more>>
X Language is a new multi-syntax programming including a portable set of APIs to create console or graphical applications runnable on many platforms (UNIX/X11, Win32, ...). X Language comes with an interpreter, a compiler and a debugger.
X Language is publicly available under the GPL.
Installation
- tar -xzf xlang-0.7.1.tar.gz
- cd xlang-0.7.1
- ./configure
- make
- make install
- ./xlc calc.xc
Enhancements:
- Adding LANG/MATH specifications
- Adding SYS (basic) specifications
- Start implementing the SCR API
<<lessX Language is publicly available under the GPL.
Installation
- tar -xzf xlang-0.7.1.tar.gz
- cd xlang-0.7.1
- ./configure
- make
- make install
- ./xlc calc.xc
Enhancements:
- Adding LANG/MATH specifications
- Adding SYS (basic) specifications
- Start implementing the SCR API
Download (0.35MB)
Added: 2005-04-22 License: GPL (GNU General Public License) Price:
1646 downloads
MetaTrans::Languages 1.04
MetaTrans::Languages Perl module contains a simple database of most of the known languages. more>>
MetaTrans::Languages Perl module contains a simple "database" of most of the known languages. Extracted from MARC codes for languages, http://www.loc.gov/marc/languages/.
SYNOPSIS
use MetaTrans::Languages qw(get_lang_by_code get_code_by_lang);
print get_lang_by_code(afr); # prints Afrikaans
print get_code_by_lang(Afrikaans); # prints afr
FUNCTIONS
get_lang_by_code($code)
Returns the name of the language with $code or undef if no language with such a $code is known.
get_code_by_lang($language)
Returns the code of the $language or undef if the language is unknown.
is_known_lang($code)
Returns true if the language with $code exists in the "database", false otherwise.
get_langs_hash
Returns the {code_1 => language_1, code_2 => language_2, ...} hash containing all known languages and their codes.
get_langs_hash_rev
Returns the {language_1 => code_1, language_2 => code_2, ...} hash containing all known languages and their codes.
<<lessSYNOPSIS
use MetaTrans::Languages qw(get_lang_by_code get_code_by_lang);
print get_lang_by_code(afr); # prints Afrikaans
print get_code_by_lang(Afrikaans); # prints afr
FUNCTIONS
get_lang_by_code($code)
Returns the name of the language with $code or undef if no language with such a $code is known.
get_code_by_lang($language)
Returns the code of the $language or undef if the language is unknown.
is_known_lang($code)
Returns true if the language with $code exists in the "database", false otherwise.
get_langs_hash
Returns the {code_1 => language_1, code_2 => language_2, ...} hash containing all known languages and their codes.
get_langs_hash_rev
Returns the {language_1 => code_1, language_2 => code_2, ...} hash containing all known languages and their codes.
Download (0.032MB)
Added: 2007-06-01 License: Perl Artistic License Price:
875 downloads
Plone Language Tool 1.5
Plone Language Tool is a product which allows you to set the available languages in your Plone site. more>>
Plone Language Tool is a product which allows you to set the available languages in your Plone site.
PloneLanguageTool allows you to set the available languages in your Plone site, select various fallback mechanisms, and control the use of flags for language selection and translations.
When installed, a new Plone control panel action will allow you to select various language options, such as the default and list of allowed languages.
PloneLanguageTool is shipped with Plone beginning in version 2.1 and up.
Enhancements:
- Bug fix release included in Plone 2.5.2.
<<lessPloneLanguageTool allows you to set the available languages in your Plone site, select various fallback mechanisms, and control the use of flags for language selection and translations.
When installed, a new Plone control panel action will allow you to select various language options, such as the default and list of allowed languages.
PloneLanguageTool is shipped with Plone beginning in version 2.1 and up.
Enhancements:
- Bug fix release included in Plone 2.5.2.
Download (0.10MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
942 downloads
Tk::Multi::Manager 1.006
Tk::Multi::Manager is a Tk composite widget managing Tk::Multi slaves. more>>
Tk::Multi::Manager is a Tk composite widget managing Tk::Multi slaves.
SYNOPSIS
use Tk::Multi::Manager ;
use Tk::Multi::Text ; # if you use MultiText as a slave
my $manager = yourWindow -> MultiManager
(
menu => $menu_ref , # optionnal
title => "windows", # optionnal
help => "Explain what your set of widget do" #optionnal
) -> pack ();
# Dont pack it, the managet will do it
my $w1 = $manager -> newSlave
(
type => MultiText,
title => a_label,
help => "Explain what your slave widget does" #optionnal
);
The manager is a composite widget made of a menu cascade of check buttons and slaves which can be Tk::Multi::Text.
The user can add windows to the manager. Each window visibility is controled by a check button in the menu cascade. The check button actually tells the packer to forget the window. note that the window object is not destroyed.
The main menu bar will feature a Help menu on the right. If the main help which explain the purpose of the Multi::Manager and its slaves is provided when creating the widget, the Help sub-menu will feature a global label.
Each slave widget which is created with a help will have its own label in the help menu.
<<lessSYNOPSIS
use Tk::Multi::Manager ;
use Tk::Multi::Text ; # if you use MultiText as a slave
my $manager = yourWindow -> MultiManager
(
menu => $menu_ref , # optionnal
title => "windows", # optionnal
help => "Explain what your set of widget do" #optionnal
) -> pack ();
# Dont pack it, the managet will do it
my $w1 = $manager -> newSlave
(
type => MultiText,
title => a_label,
help => "Explain what your slave widget does" #optionnal
);
The manager is a composite widget made of a menu cascade of check buttons and slaves which can be Tk::Multi::Text.
The user can add windows to the manager. Each window visibility is controled by a check button in the menu cascade. The check button actually tells the packer to forget the window. note that the window object is not destroyed.
The main menu bar will feature a Help menu on the right. If the main help which explain the purpose of the Multi::Manager and its slaves is provided when creating the widget, the Help sub-menu will feature a global label.
Each slave widget which is created with a help will have its own label in the help menu.
Download (0.015MB)
Added: 2006-11-03 License: Perl Artistic License Price:
1091 downloads
Multi-Cursor Window Manager 1.0
Multi-Cursor Window Manager is a modified Unix window manager which provides multiple cursors. more>>
Multi-Cursor Window Manager is a modified Unix window manager which provides multiple cursors. This allows multiple users to simultaneously interact with a Unix desktop environment.
Using a modified x2x client users can capture the keyboard and mouse input from their workstation and send to their personal cursor on a shared computer display. Multiple cursors are distinguished by different colors, and users can simultaneously interact with separate windows.
There are 7 uniquely colored cursors available. The current multi-cursor window manager is based on a modified version of IceWM 1.2.13
The multi-cursor window manager works by time-slicing the system cursor to provide the appearance of multiple independent cursors.
Compiling the Software:
To compile Ice Window Manager:
>cd icewm
>./configure --without-imlib
>make
>make install
Note: there is a preferences file in the icewm directory ("icewm/preferences"). Move this file to the installation preferences directory. It has some default choices that work well for multi-user interaction. Also, use the "nice" theme in IceWM.
To compile the x2x client:
>cd x2x-mp
>xmkmf
>make
<<lessUsing a modified x2x client users can capture the keyboard and mouse input from their workstation and send to their personal cursor on a shared computer display. Multiple cursors are distinguished by different colors, and users can simultaneously interact with separate windows.
There are 7 uniquely colored cursors available. The current multi-cursor window manager is based on a modified version of IceWM 1.2.13
The multi-cursor window manager works by time-slicing the system cursor to provide the appearance of multiple independent cursors.
Compiling the Software:
To compile Ice Window Manager:
>cd icewm
>./configure --without-imlib
>make
>make install
Note: there is a preferences file in the icewm directory ("icewm/preferences"). Move this file to the installation preferences directory. It has some default choices that work well for multi-user interaction. Also, use the "nice" theme in IceWM.
To compile the x2x client:
>cd x2x-mp
>xmkmf
>make
Download (1.5MB)
Added: 2006-03-13 License: GPL (GNU General Public License) Price:
768 downloads
Multi Distro 2.5
Multi Distro is a CD that contains multiple small linux distributions. more>>
Multi Distro is a CD that contains multiple small linux distributions. Multi Distro is a compilation of several live, bootable, distributions.
Its based on R.I.P. It uses GRUB, as bootloader. It goes in one, 700MB CD.
Enhancements:
- 11.04.06 RIP from 11.6 to 15.2
- DSL from 0.9.3 to 2.3
- GeexBOX from 0.98.5 to 0.98.7
- INSERT from 1.2.18 to 1.3.6
- SLAX from 4.2.0 to 5.1.0 (PE version)
- added Olive 0.2
- added Mpentoo 2006.0
- added Grafpup 1.0.2
- added Limp 2.2
- released as Multi Distro v2.5
<<lessIts based on R.I.P. It uses GRUB, as bootloader. It goes in one, 700MB CD.
Enhancements:
- 11.04.06 RIP from 11.6 to 15.2
- DSL from 0.9.3 to 2.3
- GeexBOX from 0.98.5 to 0.98.7
- INSERT from 1.2.18 to 1.3.6
- SLAX from 4.2.0 to 5.1.0 (PE version)
- added Olive 0.2
- added Mpentoo 2006.0
- added Grafpup 1.0.2
- added Limp 2.2
- released as Multi Distro v2.5
Download (697.5MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1292 downloads
AFNIX programming language 1.5.2
AFNIX is a multi-threaded functional programming language with dynamic symbol bindings that support the object oriented paradigm more>>
AFNIX is a multi-threaded functional programming language with dynamic symbol bindings that support the object oriented paradigm. AFNIX programming language features a state of the art runtime engine that supports both 32 and 64 bits platforms.
AFNIX is distributed with several clients and a rich set of libraries that are designed to be platform independent. For a short description, you can look at the contents or for a short introduction, you can look at the tutorial.
A flexible license has been designed for both individuals and corporations. Everybody is encouraged to use, distribute and/or modify the AFNIX engine for any purpose. You can register on our mailing list. We issue news once a month. Your email address is covered by our strict privacy policy.
AFNIX is a powerful engine associated with a rich set of libraries. The interpreter is written in C++. Its modular architecture makes the installation and maintenance an easy task.
AFNIX has a rich syntax which make the functional programming a pleasant activity. AFNIX is ready for use on various UNIX platforms. A rich documentation is also provided as a guide and reference material.
Enhancements:
- This is a minor release that fixes the build process with GCC 4.2.
<<lessAFNIX is distributed with several clients and a rich set of libraries that are designed to be platform independent. For a short description, you can look at the contents or for a short introduction, you can look at the tutorial.
A flexible license has been designed for both individuals and corporations. Everybody is encouraged to use, distribute and/or modify the AFNIX engine for any purpose. You can register on our mailing list. We issue news once a month. Your email address is covered by our strict privacy policy.
AFNIX is a powerful engine associated with a rich set of libraries. The interpreter is written in C++. Its modular architecture makes the installation and maintenance an easy task.
AFNIX has a rich syntax which make the functional programming a pleasant activity. AFNIX is ready for use on various UNIX platforms. A rich documentation is also provided as a guide and reference material.
Enhancements:
- This is a minor release that fixes the build process with GCC 4.2.
Download (1.5MB)
Added: 2007-06-08 License: BSD License Price:
881 downloads
Multi Switch Looking Glass for PHP 0.1.0
Multi Switch Looking Glass for PHP allows network administrators to open/close ports on Cisco CatOS/IOS switches. more>>
Multi Switch Looking Glass for PHP allows network administrators to open/close ports on Cisco CatOS/IOS switches via a Web interface.
It is clear, configurable, and very useful to LAN party organizers for opening a port when a gamer pays for his place in the manifestation
<<lessIt is clear, configurable, and very useful to LAN party organizers for opening a port when a gamer pays for his place in the manifestation
Download (0.010MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
980 downloads
Multi-Simulation Interface 0.14.0
Multi-Simulator Interface, in shrot MSI, is a simulation interconnection engine. more>>
Multi-Simulator Interface, in shrot MSI, is a simulation interconnection engine. In other words it is a program that connects simulations together by synchronizing their clocks and data. Multi-Simulation Interface serves the same purpose as HLA and supports most of HLAs functionality (and more).
The MSI is an HLA alternative. The major motivating factors in the design of the MSI are speed, interoperability, and ease of use.
The MSI was written as a cutting edge distributed simulation component to connect multiple instances of ATLs premiere simulation software, CSIM, and it can be used to interface any compatible simulations.
How does the MSI compare to HLA?
The MSI was originally created to be just a light weight HLA RTI. However, as it was written, limitations in HLA were discovered. The MSI is an improvement on both the design and implementation of HLA. Some highlights include:
A 1,536 to 1 reduction in size over the publicly available (until late 2002) HLA RTI.
At least one order of magnitude of bandwidth consumption less than the publicly available (until late 2002) HLA RTI.
The ability to subscribe to an object name in addition to a type.
Time synchronization that allows for proper causality when used with discrete event simulators.
Support for systems-of-systems (SoS) and hierarchically organized simulations.
Availability for many platforms.
MSI Concept - A Synchronized Data Broker
The concept behind MSI is the synchronized data broker. There are many connected software systems that posses state data that changes over the life of that system. In the case where these systems need to exchange this changing data with other systems and the other systems will exhibit the effects of this data on their own state, the synchronization of this data may need to be managed.
Historically the management of this data has been as simple as tagging it with the time of its release. If there is any conflict in the data the most recent version of the data is used. If the data is late an extrapolation can potentially be used. In SQL relational databases transactions and locking are used to ensure data integrity. Most data brokering services offer little or no sychronization, only delivery.
MSI Setup and Use
The MSI uses a XML stream through a direct socket connection for communications. This enables the MSI to be used from any programming language that can use sockets (C, C++, Java, Ada, Lisp, Perl, etc.). Also, the MSI was written with cross-platform libraries that make it portable to all the major OS platforms (Linux, Solaris, Mac OS X, Microsoft Windows, IRIX, HPUX, etc.).
The MSI is a single executable file and is distributed with example code for the simulator/federate side interface.
MSI Time Synchronization
The MSI time synchronizer can mix unconstrained with time constrained simulations. Each constrained simulation reports the time of the next event that will occur in that simulation/federate. This time may be artificially inflated to cause loose synchronization (less overhead but less guarantee of accuracy). The simulations/federates will advance to the announced time.
MSI Data Synchronization
The MSI implements a publish/subscribe data broker. The MSI is presently not validating, therefore it does not require a separate data format specification (like the HLA FOM). When data format validation is implemented, it will be an optional feature and not written in Lisp. This greatly reduces MSIs setup time. Also, not being locked to a predetermined data format allows for dynamic data types.
There are five commands associated with the MSI data broker: publish, subscribe, update, unsubscribe, destroy (destroy is not implemented yet). Simulations/federates may subscribe to object names in addition to object types. This allows simulations to subscribe to specific objects of a type without needing to receive updates of all objects of that type. The update command is both an incoming and outgoing command. When a simulation/federate receives an update command, it is expected to reflect the new values of that object.
The MSI has a very flexible publish and subscribe system. A federate may subscribe to an object type or an object name. In addition a federate may specify particular attributes of an object or object type. For example, if an object has attributes name, x, y, and z, a federate that only considers two dimensions may choose to subscribe only to name, x, and y.
The MSI also supports systems of systems and object hierarchy in simulations. A publishing federate may designate a parent object. Subscribers may then subscribe to the objects children.
MSI Messaging
The MSI allows simulations/federates to send messages (interactions in HLA) to each other. These messages can contain multiple attributes and be multicast to a specific group of simulations.
Recently Added Features
Removed external library dependencies to improve the portability and fragility of the MSI.
Added a better client library.
Improved documentation.
Enhancements:
- An XML parsing bug in the utilities library was fixed.
- The socket library was enhanced with more protocols, Win32 tricks, and the ability to key off of addresses as well as names.
- The --wait-for command line argument was added.
- Several internal bugs were fixed.
- More of the client library and the CSIM interface were flushed out.
- All standard functionality was tested.
<<lessThe MSI is an HLA alternative. The major motivating factors in the design of the MSI are speed, interoperability, and ease of use.
The MSI was written as a cutting edge distributed simulation component to connect multiple instances of ATLs premiere simulation software, CSIM, and it can be used to interface any compatible simulations.
How does the MSI compare to HLA?
The MSI was originally created to be just a light weight HLA RTI. However, as it was written, limitations in HLA were discovered. The MSI is an improvement on both the design and implementation of HLA. Some highlights include:
A 1,536 to 1 reduction in size over the publicly available (until late 2002) HLA RTI.
At least one order of magnitude of bandwidth consumption less than the publicly available (until late 2002) HLA RTI.
The ability to subscribe to an object name in addition to a type.
Time synchronization that allows for proper causality when used with discrete event simulators.
Support for systems-of-systems (SoS) and hierarchically organized simulations.
Availability for many platforms.
MSI Concept - A Synchronized Data Broker
The concept behind MSI is the synchronized data broker. There are many connected software systems that posses state data that changes over the life of that system. In the case where these systems need to exchange this changing data with other systems and the other systems will exhibit the effects of this data on their own state, the synchronization of this data may need to be managed.
Historically the management of this data has been as simple as tagging it with the time of its release. If there is any conflict in the data the most recent version of the data is used. If the data is late an extrapolation can potentially be used. In SQL relational databases transactions and locking are used to ensure data integrity. Most data brokering services offer little or no sychronization, only delivery.
MSI Setup and Use
The MSI uses a XML stream through a direct socket connection for communications. This enables the MSI to be used from any programming language that can use sockets (C, C++, Java, Ada, Lisp, Perl, etc.). Also, the MSI was written with cross-platform libraries that make it portable to all the major OS platforms (Linux, Solaris, Mac OS X, Microsoft Windows, IRIX, HPUX, etc.).
The MSI is a single executable file and is distributed with example code for the simulator/federate side interface.
MSI Time Synchronization
The MSI time synchronizer can mix unconstrained with time constrained simulations. Each constrained simulation reports the time of the next event that will occur in that simulation/federate. This time may be artificially inflated to cause loose synchronization (less overhead but less guarantee of accuracy). The simulations/federates will advance to the announced time.
MSI Data Synchronization
The MSI implements a publish/subscribe data broker. The MSI is presently not validating, therefore it does not require a separate data format specification (like the HLA FOM). When data format validation is implemented, it will be an optional feature and not written in Lisp. This greatly reduces MSIs setup time. Also, not being locked to a predetermined data format allows for dynamic data types.
There are five commands associated with the MSI data broker: publish, subscribe, update, unsubscribe, destroy (destroy is not implemented yet). Simulations/federates may subscribe to object names in addition to object types. This allows simulations to subscribe to specific objects of a type without needing to receive updates of all objects of that type. The update command is both an incoming and outgoing command. When a simulation/federate receives an update command, it is expected to reflect the new values of that object.
The MSI has a very flexible publish and subscribe system. A federate may subscribe to an object type or an object name. In addition a federate may specify particular attributes of an object or object type. For example, if an object has attributes name, x, y, and z, a federate that only considers two dimensions may choose to subscribe only to name, x, and y.
The MSI also supports systems of systems and object hierarchy in simulations. A publishing federate may designate a parent object. Subscribers may then subscribe to the objects children.
MSI Messaging
The MSI allows simulations/federates to send messages (interactions in HLA) to each other. These messages can contain multiple attributes and be multicast to a specific group of simulations.
Recently Added Features
Removed external library dependencies to improve the portability and fragility of the MSI.
Added a better client library.
Improved documentation.
Enhancements:
- An XML parsing bug in the utilities library was fixed.
- The socket library was enhanced with more protocols, Win32 tricks, and the ability to key off of addresses as well as names.
- The --wait-for command line argument was added.
- Several internal bugs were fixed.
- More of the client library and the CSIM interface were flushed out.
- All standard functionality was tested.
Download (3.0MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1254 downloads
SmileTAG 2.3
SmileTAG is a shoutbox written in PHP. more>>
SmileTAG is a shoutbox written in PHP. It has a powerful template system; its easy-to-modify templates using only simple tags, and no programming skill is needed.
Smart auto-refresh automatically refreshes whenever a new message is posted. No database is needed.
SmileTAG includes profanity filters, flood guard, IP address/nick banning, customizable smilies, time zone control, multi-language support, email/URL recognition, a custom CSS file, and a lot more.
Main features:
- Powerful template system, easy-to-modify templates using only simple tags, no programming skills required.
- Smart auto-refresh, automagically refreshes whenever new message is posted.
- No database is needed, uses flat file (XML) for storage.
- Profanity filters, easily add your own custom words to filter as well.
- Flood guard, stop spammer from flooding your board.
- IP Address/Nick banning, support for both manual and automatic banning.
- Customizable smilies, you can add your own images as many as you want.
- Time Zone Control, sets the time zone to any GMT offset.
- Multi-language support.
- Email/URL recognition, automatically convert any email or url into link.
- Custom CSS File, you have complete control for your board look and feel.
- Alternate custom text, more than just alternating background color, you can alternate any text to switch for each row.
- Filters HTML tags and blank messages.
- Message formatting, allow bold, italic and underline.
- Custom Header and Footer, put any text at the top and bottom of your board.
- Timestamp, easily change the format using simple rule.
- Logs visitor IP Address.
- Auto rotate each message, in order to avoid a large file from staying on your server.
- Configurable number of messages to display.
- Configurable message length.
Enhancements:
- An admin panel has been added.
- Message moderation has been added.
- This release is valid XHTML 1.0 Transitional.
<<lessSmart auto-refresh automatically refreshes whenever a new message is posted. No database is needed.
SmileTAG includes profanity filters, flood guard, IP address/nick banning, customizable smilies, time zone control, multi-language support, email/URL recognition, a custom CSS file, and a lot more.
Main features:
- Powerful template system, easy-to-modify templates using only simple tags, no programming skills required.
- Smart auto-refresh, automagically refreshes whenever new message is posted.
- No database is needed, uses flat file (XML) for storage.
- Profanity filters, easily add your own custom words to filter as well.
- Flood guard, stop spammer from flooding your board.
- IP Address/Nick banning, support for both manual and automatic banning.
- Customizable smilies, you can add your own images as many as you want.
- Time Zone Control, sets the time zone to any GMT offset.
- Multi-language support.
- Email/URL recognition, automatically convert any email or url into link.
- Custom CSS File, you have complete control for your board look and feel.
- Alternate custom text, more than just alternating background color, you can alternate any text to switch for each row.
- Filters HTML tags and blank messages.
- Message formatting, allow bold, italic and underline.
- Custom Header and Footer, put any text at the top and bottom of your board.
- Timestamp, easily change the format using simple rule.
- Logs visitor IP Address.
- Auto rotate each message, in order to avoid a large file from staying on your server.
- Configurable number of messages to display.
- Configurable message length.
Enhancements:
- An admin panel has been added.
- Message moderation has been added.
- This release is valid XHTML 1.0 Transitional.
Download (0.070MB)
Added: 2006-01-02 License: GPL (GNU General Public License) Price:
1423 downloads
myGuests 0.2
myGuests is a guestbook written in PHP. more>>
myGuests is a guestbook written in PHP. It uses a simple textfile as storage, there is no need for a database server like mysql to use it. Ive started to develop myGuests in the year 2002 when database servers were only affordable for business applications. Using a simple textfile as storage made it possible for many people to install their own guestbook very easy.
Today I look back to three years of developing PHP applications for business use. I apologize for not releasing new open source projects in the past years, maybe there will be new things in the next months.
Main features:
- multi-language support (available languages: English, German, Dutch, Slovak)
- css support
- email notification
- email protection
- badwords filter
- admin-mode (delete&comment on entries)
<<lessToday I look back to three years of developing PHP applications for business use. I apologize for not releasing new open source projects in the past years, maybe there will be new things in the next months.
Main features:
- multi-language support (available languages: English, German, Dutch, Slovak)
- css support
- email notification
- email protection
- badwords filter
- admin-mode (delete&comment on entries)
Download (0.010MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1216 downloads
TaskFreak! 0.6.1 (Multi User)
TaskFreak! is a simple but efficient web based task manager written in PHP. more>>
TaskFreak! project is a simple but efficient web based task manager written in PHP.
Main features:
- GTD compliant (learn more about GTD)
- easy setup with MySQL or SQLite (PHP4 and PHP5 compatible)
- simple and easy to use (outrageously user friendly)
- order tasks by priority and deadline, organize by project and context
- absolutely free & open source
<<lessMain features:
- GTD compliant (learn more about GTD)
- easy setup with MySQL or SQLite (PHP4 and PHP5 compatible)
- simple and easy to use (outrageously user friendly)
- order tasks by priority and deadline, organize by project and context
- absolutely free & open source
Download (0.13MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
947 downloads
PSPL Multi Select Box 1.0.1
PSPL Multi Select Box is an enhanced implementation of the HTML form input element for selecting multiple items from a list. more>>
PSPL Multi Select Box is an enhanced implementation of the HTML form input element for selecting multiple items from a list.
Users can select multiple choices without having to press the ALT button like a normal "select multiple" box. It is easy to customize, and you can easily modify the visual style of PSPL Multi Select Box to match your Web site design or theme.
The project is also compliant to W3C standards, and has been tested with most recent browsers. Unlike normal "select multiple" boxes, PSPL Multi Select Box follows the layer design in IE.
<<lessUsers can select multiple choices without having to press the ALT button like a normal "select multiple" box. It is easy to customize, and you can easily modify the visual style of PSPL Multi Select Box to match your Web site design or theme.
The project is also compliant to W3C standards, and has been tested with most recent browsers. Unlike normal "select multiple" boxes, PSPL Multi Select Box follows the layer design in IE.
Download (MB)
Added: 2007-02-09 License: Free To Use But Restricted Price:
987 downloads
Multi-Protocol Remote Login 0.3.0
Multi-Protocol Remote Login provides a middleware allowing SSH, telnet, and local logins from the login: prompt. more>>
Multi-Protocol Remote Login provides a middleware allowing SSH, telnet, and local logins from the login: prompt.
MPRL is a middleware application between a *getty program and SSH, telnet, and other such remote-login protocols. It allows a user at a Linux terminal to log into other systems without needing a valid local user-id. It currently supports telnet, ssh, and /bin/login.
It syntax follows the [protocol:]user[@host][:port] fashion.
These are valid logins:
- buanzo - Normal local login: /bin/login gets called.
- buanzo@linux.org.ar - SSH protocol by default: /usr/bin/ssh gets called
- ssh:buanzo@webserver.algo.net
<<lessMPRL is a middleware application between a *getty program and SSH, telnet, and other such remote-login protocols. It allows a user at a Linux terminal to log into other systems without needing a valid local user-id. It currently supports telnet, ssh, and /bin/login.
It syntax follows the [protocol:]user[@host][:port] fashion.
These are valid logins:
- buanzo - Normal local login: /bin/login gets called.
- buanzo@linux.org.ar - SSH protocol by default: /usr/bin/ssh gets called
- ssh:buanzo@webserver.algo.net
Download (0.022MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
971 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 multi languages 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