category
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 375
Gentoo Category Select 0.3
Gentoo Category Select is a graphical tool for selecting Gentoo Package Categories to exclude from your local package repository more>>
Gentoo Category Select is a graphical tool for selecting Gentoo Package Categories to exclude from your local package repository.
It does so by weaning information from multiple directories and files for convenience, as well as providing warning about categories that should not be excluded due to currently installed packages.
This is achieved without the addition of a configuration file. Currently only the Qt front-end is finished. It is modularly designed for ease in creating front-ends based on other toolkits.
The advantages are saved disk space (small/MMV), quicker rsync time (small/MMV), and a lessening of bandwidth requirements by gentoo.org and its mirrors.
<<lessIt does so by weaning information from multiple directories and files for convenience, as well as providing warning about categories that should not be excluded due to currently installed packages.
This is achieved without the addition of a configuration file. Currently only the Qt front-end is finished. It is modularly designed for ease in creating front-ends based on other toolkits.
The advantages are saved disk space (small/MMV), quicker rsync time (small/MMV), and a lessening of bandwidth requirements by gentoo.org and its mirrors.
Download (0.008MB)
Added: 2005-08-26 License: GPL (GNU General Public License) Price:
1520 downloads
Coy 0.05
Coy is a Perl module like Carp only prettier. more>>
Coy is a Perl module like Carp only prettier.
SYNOPSIS
# In your application:
# ====================
use Coy;
warn "There seems to be a problem";
die "Looks like it might be fatal";
# You can add vocab in the $HOME/.coyrc file:
# ===========================================
noun {
wookie =>
{
category => [ Sentient ],
sound => [ "roars", "grunts", "bellows" ],
act =>
{
sits => { location => Arborial },
fights => { minimum => 2,
association => "argument",
},
},
},
};
category {
Sentient =>
{
act =>
{
quarrels =>
{
associations => "argument",
location => Terrestrial,
minimum => 2,
synonyms => [qw(bickers argues)],
},
laughs =>
{
associations => "happy",
location => Terrestrial,
non_adjectival => 1,
},
},
}
};
personage "R2D2";
personage "Darth Vader";
place "Mos Eisley";
place "the Death Star";
tree "Alderaan mangrove";
fruit_tree "Wookie-oak";
# You can also select a different syllable counter via .coyrc
# ===========================================================
use Lingua::EN::Syllables::syllable;
syllable_counter "Lingua::EN::Syllables::syllable";
# or
use Lingua::EN::Syllables::syllable;
syllable_counter &Lingua::EN::Syllables::syllable;
# or
syllable_counter sub { return 1 }; # FAST BUT INACCURATE
<<lessSYNOPSIS
# In your application:
# ====================
use Coy;
warn "There seems to be a problem";
die "Looks like it might be fatal";
# You can add vocab in the $HOME/.coyrc file:
# ===========================================
noun {
wookie =>
{
category => [ Sentient ],
sound => [ "roars", "grunts", "bellows" ],
act =>
{
sits => { location => Arborial },
fights => { minimum => 2,
association => "argument",
},
},
},
};
category {
Sentient =>
{
act =>
{
quarrels =>
{
associations => "argument",
location => Terrestrial,
minimum => 2,
synonyms => [qw(bickers argues)],
},
laughs =>
{
associations => "happy",
location => Terrestrial,
non_adjectival => 1,
},
},
}
};
personage "R2D2";
personage "Darth Vader";
place "Mos Eisley";
place "the Death Star";
tree "Alderaan mangrove";
fruit_tree "Wookie-oak";
# You can also select a different syllable counter via .coyrc
# ===========================================================
use Lingua::EN::Syllables::syllable;
syllable_counter "Lingua::EN::Syllables::syllable";
# or
use Lingua::EN::Syllables::syllable;
syllable_counter &Lingua::EN::Syllables::syllable;
# or
syllable_counter sub { return 1 }; # FAST BUT INACCURATE
Download (0.020MB)
Added: 2007-05-08 License: Perl Artistic License Price:
899 downloads
AI::Categorizer::Learner::SVM 0.07
AI::Categorizer::Learner::SVM is a Perl module to support Vector Machine Learner. more>>
AI::Categorizer::Learner::SVM is a Perl module to support Vector Machine Learner.
SYNOPSIS
use AI::Categorizer::Learner::SVM;
# Here $k is an AI::Categorizer::KnowledgeSet object
my $l = new AI::Categorizer::Learner::SVM(...parameters...);
$l->train(knowledge_set => $k);
$l->save_state(filename);
... time passes ...
$l = AI::Categorizer::Learner->restore_state(filename);
while (my $document = ... ) { # An AI::Categorizer::Document object
my $hypothesis = $l->categorize($document);
print "Best assigned category: ", $hypothesis->best_category, "n";
}
This class implements a Support Vector Machine machine learner, using Cory Spencers Algorithm::SVM module. In lots of the recent academic literature, SVMs perform very well for text categorization.
<<lessSYNOPSIS
use AI::Categorizer::Learner::SVM;
# Here $k is an AI::Categorizer::KnowledgeSet object
my $l = new AI::Categorizer::Learner::SVM(...parameters...);
$l->train(knowledge_set => $k);
$l->save_state(filename);
... time passes ...
$l = AI::Categorizer::Learner->restore_state(filename);
while (my $document = ... ) { # An AI::Categorizer::Document object
my $hypothesis = $l->categorize($document);
print "Best assigned category: ", $hypothesis->best_category, "n";
}
This class implements a Support Vector Machine machine learner, using Cory Spencers Algorithm::SVM module. In lots of the recent academic literature, SVMs perform very well for text categorization.
Download (0.25MB)
Added: 2006-10-12 License: Perl Artistic License Price:
1107 downloads
Netscape::Bookmarks 1.94
Netscape::Bookmarks is a Perl module to parse, manipulate, or create Netscape Bookmarks files. more>>
Netscape::Bookmarks is a Perl module to parse, manipulate, or create Netscape Bookmarks files.
SYNOPSIS
use Netscape::Bookmarks;
# parse an existing file
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
# -- OR --
# start a new Bookmarks structure
my $bookmarks = Netscape::Bookmarks->new;
# print a Netscape compatible file
print $bookmarks->as_string;
[ Note: I wrote this a long time ago. Although this should still work with "Netscape" browsers, Mozilla browsers do the same thing. When the docs say "Netscape", I mean either branch of browsers. ]
The Netscape bookmarks file has several basic components:
title
folders (henceforth called categories)
links
aliases
separators
On disk, Netscape browsers store this information in HTML. In the browser, it is displayed under the "Bookmarks" menu. The data can be manipulated through the browser interface.
This module allows one to manipulate the bookmarks file programmatically. One can parse an existing bookmarks file, manipulate the information, and write it as a bookmarks file again. Furthermore, one can skip the parsing step to create a new bookmarks file and write it in the proper format to be used by a Netscape browser.
The Bookmarks module simply parses the bookmarks file passed to it as the only argument to the constructor:
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
The returned object is a Netscape::Bookmarks::Category object, since the bookmark file is simply a collection of categories that contain any of the components listed above. The top level (i.e. root) category is treated specially and defines the title of the bookmarks file.
HTML::Parser is used behind the scenes to build the data structure (a simple list of lists (of lists ...)). Netscape::Bookmarks::Category, Netscape::Bookmarks::Link, Netscape::Bookmarks::Alias, or Netscape::Bookmarks::Separator objects can be stored in a Netscape::Bookmarks::Category object. Netscape::Bookmarks::Alias objects are treated as references to Netscape::Bookmarks::Link objects, so changes to one affect the other.
Methods for manipulating this object are in the Netscape::Bookmarks::Category module. Methods for dealing with the objects contained in a Netscape::Bookmarks::Category object are in their appropriate modules.
new( [filename] )
The constructor takes a filename as its single (optional) argument. If you do not give new an argument, an empty Netscape::Bookmarks::Category object is returned so that you can start to build up your new Bookmarks file. If the file that you name does not exist, undef is returned in scalar context and an empty list is returned in list context. If the file does exist it is parsed with HTML::Parser with the internal parser subclass defined in the same package as new. If the parsing finishes without error a Netscape::Bookmarks::Category object is returned.
parse_string
Method for HTML::Parser subclass method
start
Method for HTML::Parser subclass method
text
Method for HTML::Parser subclass method
end
Method for HTML::Parser subclass method
my_init
Method for HTML::Parser subclass method
<<lessSYNOPSIS
use Netscape::Bookmarks;
# parse an existing file
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
# -- OR --
# start a new Bookmarks structure
my $bookmarks = Netscape::Bookmarks->new;
# print a Netscape compatible file
print $bookmarks->as_string;
[ Note: I wrote this a long time ago. Although this should still work with "Netscape" browsers, Mozilla browsers do the same thing. When the docs say "Netscape", I mean either branch of browsers. ]
The Netscape bookmarks file has several basic components:
title
folders (henceforth called categories)
links
aliases
separators
On disk, Netscape browsers store this information in HTML. In the browser, it is displayed under the "Bookmarks" menu. The data can be manipulated through the browser interface.
This module allows one to manipulate the bookmarks file programmatically. One can parse an existing bookmarks file, manipulate the information, and write it as a bookmarks file again. Furthermore, one can skip the parsing step to create a new bookmarks file and write it in the proper format to be used by a Netscape browser.
The Bookmarks module simply parses the bookmarks file passed to it as the only argument to the constructor:
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
The returned object is a Netscape::Bookmarks::Category object, since the bookmark file is simply a collection of categories that contain any of the components listed above. The top level (i.e. root) category is treated specially and defines the title of the bookmarks file.
HTML::Parser is used behind the scenes to build the data structure (a simple list of lists (of lists ...)). Netscape::Bookmarks::Category, Netscape::Bookmarks::Link, Netscape::Bookmarks::Alias, or Netscape::Bookmarks::Separator objects can be stored in a Netscape::Bookmarks::Category object. Netscape::Bookmarks::Alias objects are treated as references to Netscape::Bookmarks::Link objects, so changes to one affect the other.
Methods for manipulating this object are in the Netscape::Bookmarks::Category module. Methods for dealing with the objects contained in a Netscape::Bookmarks::Category object are in their appropriate modules.
new( [filename] )
The constructor takes a filename as its single (optional) argument. If you do not give new an argument, an empty Netscape::Bookmarks::Category object is returned so that you can start to build up your new Bookmarks file. If the file that you name does not exist, undef is returned in scalar context and an empty list is returned in list context. If the file does exist it is parsed with HTML::Parser with the internal parser subclass defined in the same package as new. If the parsing finishes without error a Netscape::Bookmarks::Category object is returned.
parse_string
Method for HTML::Parser subclass method
start
Method for HTML::Parser subclass method
text
Method for HTML::Parser subclass method
end
Method for HTML::Parser subclass method
my_init
Method for HTML::Parser subclass method
Download (0.023MB)
Added: 2007-03-24 License: Perl Artistic License Price:
947 downloads
phpDirectory 0.0.2
phpDirectory provides a Web links directory manager. more>>
phpDirectory provides a Web links directory manager.
phpDirectory is a PHP application that allows you to easily run a links directory system on your Web site.
Its features include a search engine, "suggest link", "browse categories", and admin tools.
Each link entry has its own counter, votes, and rating.
The category manager allows you to create/edit/delete categories easily.
<<lessphpDirectory is a PHP application that allows you to easily run a links directory system on your Web site.
Its features include a search engine, "suggest link", "browse categories", and admin tools.
Each link entry has its own counter, votes, and rating.
The category manager allows you to create/edit/delete categories easily.
Download (0.027MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
PhpWebGallery 1.7.0
PhpWebGallery is an image gallery with a very simple installation interface and administration panel. more>>
PhpWebGallery is an image gallery with a very simple installation interface and administration panel.
PhpWebGallery features free or restricted access, user management, groups, access management for each category, multi-server support (to store your pictures on another Web site), user comments, HTML templates, virtual categories, and multilingual support.
Main features:
- under GPL (General Public License)
- automatic image imports through filesystem (a directory equals a category, simple and easy)
- image import through upload
- multiple (virtual) usage of images (one image multiple categories)
- easy administration of images, comments, users, groups, categories
- easy installation (unzip & install.php)
- possibility to make thumbnails
- special categories: new pictures, most seen, best rated, favorites, random, new categories, calendar
- mail notification of the administrator if anything new is added (if this is wanted!)
- (automatic) slideshow
- multiple languages
- multi storage server management
- ability to make some categorie private and manage permissions per user
- mysql database (mandatory)
- handle any type of file, not only picture
- manage EXIF and IPTC metadata
- html templates
- advanced search tool
<<lessPhpWebGallery features free or restricted access, user management, groups, access management for each category, multi-server support (to store your pictures on another Web site), user comments, HTML templates, virtual categories, and multilingual support.
Main features:
- under GPL (General Public License)
- automatic image imports through filesystem (a directory equals a category, simple and easy)
- image import through upload
- multiple (virtual) usage of images (one image multiple categories)
- easy administration of images, comments, users, groups, categories
- easy installation (unzip & install.php)
- possibility to make thumbnails
- special categories: new pictures, most seen, best rated, favorites, random, new categories, calendar
- mail notification of the administrator if anything new is added (if this is wanted!)
- (automatic) slideshow
- multiple languages
- multi storage server management
- ability to make some categorie private and manage permissions per user
- mysql database (mandatory)
- handle any type of file, not only picture
- manage EXIF and IPTC metadata
- html templates
- advanced search tool
Download (0.54MB)
Added: 2007-05-07 License: Freely Distributable Price:
906 downloads
Locale::Messages 1.16
Locale::Messages is a Perl module with Gettext Like Message Retrieval. more>>
Locale::Messages is a Perl module with Gettext Like Message Retrieval.
SYNOPSIS
use Locale::Messages (:locale_h :libintl_h);
gettext $msgid;
dgettext $textdomain, $msgid;
dcgettext $textdomain, $msgid, LC_MESSAGES;
ngettext $msgid, $msgid_plural, $count;
dngettext $textdomain, $msgid, $msgid_plural, $count;
dcngettext $textdomain, $msgid, $msgid_plural, $count, LC_MESSAGES;
textdomain $textdomain;
bindtextdomain $textdomain, $directory;
bind_textdomain_codeset $textdomain, $encoding;
bind_textdomain_filter $textdomain, &filter, $data;
turn_utf_8_on ($variable);
turn_utf_8_off ($variable);
nl_putenv (OUTPUT_CHARSET=koi8-r);
my $category = LC_CTYPE;
my $category = LC_NUMERIC;
my $category = LC_TIME;
my $category = LC_COLLATE;
my $category = LC_MONETARY;
my $category = LC_MESSAGES;
my $category = LC_ALL;
The module Locale::Messages is a wrapper around the interface to message translation according to the Uniforum approach that is for example used in GNU gettext and Suns Solaris. It is intended to allow Locale::Messages(3) to switch between different implementations of the lower level libraries but this is not yet implemented.
Normally you should not use this module directly, but the high level interface Locale::TextDomain(3) that provides a much simpler interface. This description is therefore deliberately kept brief. Please refer to the GNU gettext documentation available at http://www.gnu.org/manual/gettext/ for in-depth and background information on the topic.
The lower level module Locale::gettext_pp(3) provides the Perl implementation of gettext() and related functions.
<<lessSYNOPSIS
use Locale::Messages (:locale_h :libintl_h);
gettext $msgid;
dgettext $textdomain, $msgid;
dcgettext $textdomain, $msgid, LC_MESSAGES;
ngettext $msgid, $msgid_plural, $count;
dngettext $textdomain, $msgid, $msgid_plural, $count;
dcngettext $textdomain, $msgid, $msgid_plural, $count, LC_MESSAGES;
textdomain $textdomain;
bindtextdomain $textdomain, $directory;
bind_textdomain_codeset $textdomain, $encoding;
bind_textdomain_filter $textdomain, &filter, $data;
turn_utf_8_on ($variable);
turn_utf_8_off ($variable);
nl_putenv (OUTPUT_CHARSET=koi8-r);
my $category = LC_CTYPE;
my $category = LC_NUMERIC;
my $category = LC_TIME;
my $category = LC_COLLATE;
my $category = LC_MONETARY;
my $category = LC_MESSAGES;
my $category = LC_ALL;
The module Locale::Messages is a wrapper around the interface to message translation according to the Uniforum approach that is for example used in GNU gettext and Suns Solaris. It is intended to allow Locale::Messages(3) to switch between different implementations of the lower level libraries but this is not yet implemented.
Normally you should not use this module directly, but the high level interface Locale::TextDomain(3) that provides a much simpler interface. This description is therefore deliberately kept brief. Please refer to the GNU gettext documentation available at http://www.gnu.org/manual/gettext/ for in-depth and background information on the topic.
The lower level module Locale::gettext_pp(3) provides the Perl implementation of gettext() and related functions.
Download (0.45MB)
Added: 2007-03-06 License: Perl Artistic License Price:
962 downloads
Gnome-RDP 0.2.2
Gnome-RDP is a Remote Desktop Client for the GNOME Desktop. more>>
Gnome-RDP is a Remote Desktop Client for the GNOME Desktop. Gnome-RDP supports the following protocols: RDP, VNC, SSH.
Additional programs required: rdesktop, tightvnc, ssh, gnome-term.
Enhancements:
- Custom screen resolution for RDP sessions
- Database converter from ver. 0.2.0 to 0.2.2
- (bugfix) Disabled user field in case of VNC session
- (bugfix) Sound redirection combo displayed the value of Image quality. It has been fixed and now displayes the correct value.
- Double click on session name initiate the connection to remote computer. Double click on category expands/collapses its node.
- sessionTreeView expands to modified session after closing the options
<<lessAdditional programs required: rdesktop, tightvnc, ssh, gnome-term.
Enhancements:
- Custom screen resolution for RDP sessions
- Database converter from ver. 0.2.0 to 0.2.2
- (bugfix) Disabled user field in case of VNC session
- (bugfix) Sound redirection combo displayed the value of Image quality. It has been fixed and now displayes the correct value.
- Double click on session name initiate the connection to remote computer. Double click on category expands/collapses its node.
- sessionTreeView expands to modified session after closing the options
Download (0.10MB)
Added: 2006-05-13 License: GPL (GNU General Public License) Price:
1269 downloads
ustring C++ Unicode library 0.5
ustring is a C++ library to implement the complete Unicode 3.0 standard. more>>
ustring is a C++ library to implement the complete Unicode 3.0 standard. It gives an easy access to the properties of each of the 10600 characters defined by the Unicode 3.0 standard, including the uppercase and lowercase mapping, category and subcategory, character name, and bidirectional category.
ustring C++ Unicode library provides a wide string class which fits with STL, implementing a full Unicode normalizer, uppercase and lowercase transformation, and diacritical mark removal. A Unicode level-1 regular expression class is also provided.
<<lessustring C++ Unicode library provides a wide string class which fits with STL, implementing a full Unicode normalizer, uppercase and lowercase transformation, and diacritical mark removal. A Unicode level-1 regular expression class is also provided.
Download (0.14MB)
Added: 2006-08-23 License: GPL (GNU General Public License) Price:
1166 downloads
Seagull PHP Application Framework 0.6.2
Seagull is an OO PHP framework with the core modules licensed under BSD. more>>
Seagull is an OO PHP framework with the core modules licensed under BSD, and has the following design goals:
- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
<<less- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
Download (3.7MB)
Added: 2007-05-05 License: BSD License Price:
903 downloads
VideoManager 0.5
VideoManager is a PyGTk application to manage your movies. more>>
VideoManager is a PyGTk application to manage your movies.
An application for managing your movie collection. VideoManager is a free software for managing movies collections. Detailed information on each item can be automatically retrieved from the internet and movies can be sorted by category, year or producer.
Currently this program is only available in French.
You can help by translating the project : http://www.codingteam.net/videomanager-trad.html
Currently available in Ubuntu Feisty Universe and Arch Linux AUR.
<<lessAn application for managing your movie collection. VideoManager is a free software for managing movies collections. Detailed information on each item can be automatically retrieved from the internet and movies can be sorted by category, year or producer.
Currently this program is only available in French.
You can help by translating the project : http://www.codingteam.net/videomanager-trad.html
Currently available in Ubuntu Feisty Universe and Arch Linux AUR.
Download (0.082MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
936 downloads
SchoolAlumni Portal 2-26
SchoolAlumni Portal project is a Web portal for a high school alumni site. more>>
SchoolAlumni Portal project is a Web portal for a high school alumni site.
It features a content management system and online news publishing tools.
It can create an unlimited weblink category, publish articles with images, run an alumni list with edit-delete-update features, provide a forum, provide classified ads, and more.
Enhancements:
- You can now log out from two places; if you are logged in as the admin you can logout from the admin screen, and you can logout a user from the main list page.
- If you click on edit while viewing someone elses record, and you are logged in, you will get your record, otherwise you will be prompted to login.
<<lessIt features a content management system and online news publishing tools.
It can create an unlimited weblink category, publish articles with images, run an alumni list with edit-delete-update features, provide a forum, provide classified ads, and more.
Enhancements:
- You can now log out from two places; if you are logged in as the admin you can logout from the admin screen, and you can logout a user from the main list page.
- If you click on edit while viewing someone elses record, and you are logged in, you will get your record, otherwise you will be prompted to login.
Download (0.78MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1113 downloads
DateTime::TimeZone::SystemV 0.000
DateTime::TimeZone::SystemV is a Perl module with System V and POSIX timezone strings. more>>
DateTime::TimeZone::SystemV is a Perl module with System V and POSIX timezone strings.
SYNOPSIS
use DateTime::TimeZone::SystemV;
$tz = DateTime::TimeZone::SystemV->new("EST5EDT");
if($tz->is_floating) { ...
if($tz->is_utc) { ...
if($tz->is_olson) { ...
$category = $tz->category;
$tz_string = $tz->name;
if($tz->has_dst_changes) { ...
if($tz->is_dst_for_datetime($dt)) { ...
$offset = $tz->offset_for_datetime($dt);
$abbrev = $tz->short_name_for_datetime($dt);
$offset = $tz->offset_for_local_datetime($dt);
An instance of this class represents a timezone that was specified by means of a System V timezone string or the POSIX extended form of the same syntax. These can express a plain offset from Universal Time, or a system of two offsets (standard and daylight saving time) switching on a yearly cycle according to certain types of rule.
This class implements the DateTime::TimeZone interface, so that its instances can be used with DateTime objects.
<<lessSYNOPSIS
use DateTime::TimeZone::SystemV;
$tz = DateTime::TimeZone::SystemV->new("EST5EDT");
if($tz->is_floating) { ...
if($tz->is_utc) { ...
if($tz->is_olson) { ...
$category = $tz->category;
$tz_string = $tz->name;
if($tz->has_dst_changes) { ...
if($tz->is_dst_for_datetime($dt)) { ...
$offset = $tz->offset_for_datetime($dt);
$abbrev = $tz->short_name_for_datetime($dt);
$offset = $tz->offset_for_local_datetime($dt);
An instance of this class represents a timezone that was specified by means of a System V timezone string or the POSIX extended form of the same syntax. These can express a plain offset from Universal Time, or a system of two offsets (standard and daylight saving time) switching on a yearly cycle according to certain types of rule.
This class implements the DateTime::TimeZone interface, so that its instances can be used with DateTime objects.
Download (0.008MB)
Added: 2007-05-17 License: Perl Artistic License Price:
891 downloads
PhpWebGallery Alligator 2
PhpWebGallery is an image gallery with a very simple installation interface and administration panel. more>>
PhpWebGallery is an image gallery with a very simple installation interface and administration panel.
PhpWebGallery project features free or restricted access, user management, groups, access management for each category, multi-server support (to store your pictures on another Web site), user comments, HTML templates, virtual categories, and multilingual support.
Enhancements:
- The anti-spam system on user comments was improved.
- The history statistics graph was rewritten.
- A history search page was added.
- The plugin system was improved.
- A Web service API was added.
- Slideshow display was redesigned.
- Many small features were added.
<<lessPhpWebGallery project features free or restricted access, user management, groups, access management for each category, multi-server support (to store your pictures on another Web site), user comments, HTML templates, virtual categories, and multilingual support.
Enhancements:
- The anti-spam system on user comments was improved.
- The history statistics graph was rewritten.
- A history search page was added.
- The plugin system was improved.
- A Web service API was added.
- Slideshow display was redesigned.
- Many small features were added.
Download (0.39MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
989 downloads
Quick.Forum 2.2.1
Quick.Forum provides a simple, fast message board with category filtering and a flat file backend. more>>
Quick.Forum provides a simple, fast message board with category filtering and a flat file backend.
Quick.Forum is a fast, simple, and multilingual message board. It is based on text files and features a search engine, categories, and filters.
There is full administration for topics, answers, and categories.
Forum topics are displayed in a single window with color differentiation between categories.
Categories can be filtered on a per-user basis.
Main features:
- Freeware - based on licensed GPL with additional conditions,
- Simple installation - This tool is based on a secure flat files (SQL base not required). Installation needs just a few minutes and just the basic knowledge about FTP connection use,
- Stability - Application has been used since December 2003. Because of a common access to this application, any errors are immediately detected and removed,
- Speed - in designing this application, we tried to minimize the HTML code and also made possible generating small pictures, making web loading as short as possible,
- Standards - our solutions are compatible with XHTML 1.0 and also with settings of most of the popular servers,
- Template system - we made our best effort to separate the logic and presentational layers from each other. The application outlook change, is really simple and it works through templates in which complicated PHP language is not used at all.
Enhancements:
- html/css optimization
- updated libraries
- bugfixes
<<lessQuick.Forum is a fast, simple, and multilingual message board. It is based on text files and features a search engine, categories, and filters.
There is full administration for topics, answers, and categories.
Forum topics are displayed in a single window with color differentiation between categories.
Categories can be filtered on a per-user basis.
Main features:
- Freeware - based on licensed GPL with additional conditions,
- Simple installation - This tool is based on a secure flat files (SQL base not required). Installation needs just a few minutes and just the basic knowledge about FTP connection use,
- Stability - Application has been used since December 2003. Because of a common access to this application, any errors are immediately detected and removed,
- Speed - in designing this application, we tried to minimize the HTML code and also made possible generating small pictures, making web loading as short as possible,
- Standards - our solutions are compatible with XHTML 1.0 and also with settings of most of the popular servers,
- Template system - we made our best effort to separate the logic and presentational layers from each other. The application outlook change, is really simple and it works through templates in which complicated PHP language is not used at all.
Enhancements:
- html/css optimization
- updated libraries
- bugfixes
Download (0.054MB)
Added: 2007-01-26 License: Freeware Price:
609 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 category 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