Quick.Cms.Lite 2.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Quick.Cms.Lite 2.1 (Default branch)
# 1  
Old 05-13-2008
Quick.Cms.Lite 2.1 (Default branch)

Image Quick.Cms.Lite is a small, simple, and multilingual content management system. It offers plenty of options. It is very easy to setup and install. It is based on flat files. It is XHTML 1.1 compliant and WAI compliant. It is very easy to customize. It has good support for email and forums. It features a WYSIWYG editor, SEO tools, no limit pages depth, no limit to the number of images per page, and more. License: GNU General Public License (GPL) Changes:
Pages files list management was added. An option to "display files from server in form" was added. A new option in the settings to "change file name to page name" was added. A submission was added in the pages form to "save and go to the list". A new .htaccess file was added in the "templates/" directory. This disables viewing template files for security reasons. The tinyMCE editor was updated to version 3.0.8. A few small bugs were fixed.Image

More...
Login or Register to Ask a Question

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

NAME
XMLRPC::Lite - client and server implementation of XML-RPC protocol SYNOPSIS
Client use XMLRPC::Lite; print XMLRPC::Lite -> proxy('http://betty.userland.com/RPC2') -> call('examples.getStateStruct', {state1 => 12, state2 => 28}) -> result; CGI server use XMLRPC::Transport::HTTP; my $server = XMLRPC::Transport::HTTP::CGI -> dispatch_to('methodName') -> handle ; Daemon server use XMLRPC::Transport::HTTP; my $daemon = XMLRPC::Transport::HTTP::Daemon -> new (LocalPort => 80) -> dispatch_to('methodName') ; print "Contact to XMLRPC server at ", $daemon->url, " "; $daemon->handle; DESCRIPTION
XMLRPC::Lite is a Perl modules which provides a simple nterface to the XML-RPC protocol both on client and server side. Based on SOAP::Lite module, it gives you access to all features and transports available in that module. See t/26-xmlrpc.t for client examples and examples/XMLRPC/* for server implementations. DEPENDENCIES
SOAP::Lite SEE ALSO
SOAP::Lite CREDITS
The XML-RPC standard is Copyright (c) 1998-2001, UserLand Software, Inc. See <http://www.xmlrpc.com> for more information about the XML- RPC specification. COPYRIGHT
Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHOR
Paul Kulchenko (paulclinger@yahoo.com) perl v5.12.4 2011-08-18 XMLRPC::Lite(3pm)