Stunnix Advanced Web Server for CD-ROMs 2.6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Stunnix Advanced Web Server for CD-ROMs 2.6 (Default branch)
# 1  
Old 03-06-2008
Stunnix Advanced Web Server for CD-ROMs 2.6 (Default branch)

Image Stunnix Advanced Web Server is a Web server for putting Web sites onto CD-ROMs, DVDs, FlashDisks, and other readonly media to be used on any typical system. Sites can be scripted with PHP, Python, Java, or Perl and can be driven by MySQL or SQLite databases. All required software programs are designed to reside on the CD-ROM to avoid the need to install software on the user's computer. The Web serving core is based on Apache 1.3.x, and has additional functionality to detect and use free ports and automatically start a browser on each platform. Desktop applications can also be created with it. License: Other/Proprietary License with Free Trial Changes:
The GUI has a command to generate ISO images of CDs with a Web server on them. CDBuilder has a much nicer look. Support for MySQL v4 on Leopard for x86 has been improved. MySQL table names have been made case-insensitive to simplify porting CD-ROMs with a Web server to Linux.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
SVN::Web::I18N(3pm)					User Contributed Perl Documentation				       SVN::Web::I18N(3pm)

NAME
SVN::Web::I18N - SVN::Web internationalisation class SYNOPSIS
use SVN::Web::I18N; # Nothing exported # Add a directory that contains .po and/or .mo files SVN::Web::I18N::add_directory('/path/to/directory'); # Specify the current language SVN::Web::I18N::loc_lang('en'); # Get a translated string my $xlated = SVN::Web::I18N::loc('(a string to translate)'); DESCRIPTION
SVN::Web::I18N provides the interface through which SVN::Web is internationalised, and how different localisations are implemented. SUBROUTINES
SVN::Web::I18N::add_directory($path) Adds a new directory to the list of directories in which localisations will be found. Any *.po and *.mo files in this directory will automatically be scanned for localisations, and added to the language key given by the file's basename. In case where two different directories both contain a localisation file that defines the same localisation key for the same language, the localisation key from the most recently added directory will be used. SVN::Web::I18N::loc_lang($lang) Selects the language to use for subsequent calls to "loc()". The $lang parameter should be a valid language name -- i.e., there must exist at least one $lang.po file in one of the directories used in a call to "SVN::Web::I18N::add_directory()". SVN::Web::I18N::loc($text) and SVN::Web::I18N::loc($text, $param1, ...) Returns the localised form of $text according to the localisation selected by the most recent call to "loc_lang()". If the localisation expects parameters to fill in the localisation result they should be passed as the second and subsequent arguments. If $text does not have a defined localised form it is returned with the parameters interpolated in to it. SEE ALSO
Locale::Maketext, Locale::Maketext::Lexicon, SVN::Web AUTHORS
Nik Clayton "<nik@FreeBSD.org>" COPYRIGHT
Copyright 2006-2007 by Nik Clayton "<nik@FreeBSD.org>". This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-06-11 SVN::Web::I18N(3pm)