Download Center Lite 2.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Download Center Lite 2.1 (Default branch)
# 1  
Old 04-13-2008
Download Center Lite 2.1 (Default branch)

Download Center Lite enables a Web site owner tooffer file downloads of any file type on the Website. The script has two potential uses. First,you can use it if you want to hide the real pathto the download folder on your Web server andprevent direct access to the download folder.Second, you can make sure that your visitors areprompted by their browser to save the file insteadof viewing within the browser or an externalapplication. The script can also log and count thedownloads.License: Other/Proprietary License with Free TrialChanges:
A minor security fix, a minor feature enhancement,and minor bugfixes were done.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. AIX

Download AIX information Center v6.1 ?

Hi, I have AIX Information Center 5.3 installed on my PC locally. How do I get v6.1 Information Center local copy ? thanks Vilius (1 Reply)
Discussion started by: vilius
1 Replies
Login or Register to Ask a Question
XML::Parser::Lite::Tree(3pm)				User Contributed Perl Documentation			      XML::Parser::Lite::Tree(3pm)

NAME
XML::Parser::Lite::Tree - Lightweight XML tree builder SYNOPSIS
use XML::Parser::Lite::Tree; my $tree_parser = XML::Parser::Lite::Tree::instance(); my $tree = $tree_parser->parse($xml_data); OR my $tree = XML::Parser::Lite::Tree::instance()->parse($xml_data); DESCRIPTION
This is a singleton class for parsing XML into a tree structure. How does this differ from other XML tree generators? By using XML::Parser::Lite, which is a pure perl XML parser. Using this module you can tree-ify simple XML without having to compile any C. For example, the following XML: <foo woo="yay"><bar a="b" c="d" />hoopla</foo> Parses into the following tree: 'children' => [ { 'children' => [ { 'children' => [], 'attributes' => { 'a' => 'b', 'c' => 'd' }, 'type' => 'element', 'name' => 'bar' }, { 'content' => 'hoopla', 'type' => 'text' } ], 'attributes' => { 'woo' => 'yay' }, 'type' => 'element', 'name' => 'foo' } ], 'type' => 'root' }; Each node contains a "type" key, one of "root", "element" and "text". "root" is the document root, and only contains an array ref "children". "element" represents a normal tag, and contains an array ref "children", a hash ref "attributes" and a string "name". "text" nodes contain only a "content" string. METHODS
"instance()" Returns an instance of the tree parser. "new( options... )" Creates a new parser. Valid options include "process_ns" to process namespaces. "parse($xml)" Parses the xml in $xml and returns the tree as a hash ref. AUTHOR
Copyright (C) 2004-2008, Cal Henderson, <cal@iamcal.com> SEE ALSO
XML::Parser::Lite. perl v5.12.3 2011-06-04 XML::Parser::Lite::Tree(3pm)