xsl
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 78
XSLrunner 0.2
XSLrunner project is a Kommander script that can process a XML file against a XSL document using xsltproc. more>>
XSLrunner project is a Kommander script that can process a XML file against a XSL document using xsltproc.
<<less Download (0.006MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
857 downloads
docbooktoc.xsl 0.1.0
docbooktoc.xsl is a XSLT file for generating a XHTML table of contents from DocBook XML documents. more>>
docbooktoc.xsl is a XSLT file for generating a XHTML table of contents from DocBook XML documents. It is used by the LayManSys project for the documentation.
Parameters
docbooktoc accepts the following parameters:
ext
The names of linked files are determined from the chapters id, which does not contain a filename suffix. This (string) parameter tells docbooktoc the suffix to use. Its default value is html.
style.sheet
This (string) parameter may contain stylesheets for styling the output document. You can pass more than one stylesheet by delimiting their filenames with a white-space (space, tab or newline).
style.type
This (string) parameter contains the MIME type used for content stylesheets. It defaults to text/css.
Program output
docbooktoc generates a XHTML document containing the books meta information (in DocBook XML, this is the subnode bookinfo and than lists all of the books chapters and section in an ordered list. The meta information are both used for generating the < head > as well as the documents header (in the XHTML < body >) and the output is the same like the DocBook XSLT driver for XHTML generates.
The books chapters and sections are presented as a n ordered, nested list, where the chapters are top level items, that contain lists of sections, where a section item again may contain a list of subsections.
You can use the Makefile distributed in this package and the LayManSys documentation for generating the example file toc.html. The make command for this is make test.
<<lessParameters
docbooktoc accepts the following parameters:
ext
The names of linked files are determined from the chapters id, which does not contain a filename suffix. This (string) parameter tells docbooktoc the suffix to use. Its default value is html.
style.sheet
This (string) parameter may contain stylesheets for styling the output document. You can pass more than one stylesheet by delimiting their filenames with a white-space (space, tab or newline).
style.type
This (string) parameter contains the MIME type used for content stylesheets. It defaults to text/css.
Program output
docbooktoc generates a XHTML document containing the books meta information (in DocBook XML, this is the subnode bookinfo and than lists all of the books chapters and section in an ordered list. The meta information are both used for generating the < head > as well as the documents header (in the XHTML < body >) and the output is the same like the DocBook XSLT driver for XHTML generates.
The books chapters and sections are presented as a n ordered, nested list, where the chapters are top level items, that contain lists of sections, where a section item again may contain a list of subsections.
You can use the Makefile distributed in this package and the LayManSys documentation for generating the example file toc.html. The make command for this is make test.
Download (0.016MB)
Added: 2006-09-04 License: Free To Use But Restricted Price:
1145 downloads
mod_xslt2 1.0 Beta
mod_xslt2 is is an Apache 1.3.xx Module written in C. more>>
mod_xslt is is an Apache 1.3.xx Module written in C. It accomplishes Apache embedded XML with XSL tranformation using Sablotron.
<<less Download (0.040MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1297 downloads
DocBook XSL Stylesheets 1.73.1
DocBook is an XML/SGML vocabulary that enables you to create document content in a presentation-neutral form. more>>
DocBook is an SGML/XML vocabulary that enables you to create document content in a presentation-neutral form that captures the logical structure of the content.
Using the DocBook stylesheets, you can publish DocBook content as HTML pages and PDF files and other formats, including man pages, HTML Help, and JavaHelp.
<<lessUsing the DocBook stylesheets, you can publish DocBook content as HTML pages and PDF files and other formats, including man pages, HTML Help, and JavaHelp.
Download (2.3MB)
Added: 2007-08-20 License: MIT/X Consortium License Price:
806 downloads
XML::XSLT::Wrapper 0.32
XML::XSLT::Wrapper is a consistent interface to XSLT processors. more>>
XML::XSLT::Wrapper is a consistent interface to XSLT processors.
SYNOPSIS
use XML::XSLT::Wrapper;
my $xslt = XML::XSLT::Wrapper->new(
ProcessorList => [libxslt, sablotron],
)
$result = $xslt->transform(
XMLFile => $xml_filename
XSLFile => $xsl_filename
#OR: XMLString => $xml_string
#OR: XSLString => $xsl_string
#OR: xml => $xml_filename_or_string,
#OR: xsl => $xsl_filename_or_string,
XSLParams => { COMEIN => knock knock,
GOAWAY => conk conk },
);
$result = $xslt->transform(
OutFile => $output_filename,
XMLFile => $xml_filename
XSLFile => $xsl_filename
XSLParams => [ COMEIN, knock knock,
GOAWAY, conk conk ],
);
# NB: The pre_parsing interface is likely to change:
%pre_parsed = $xslt->pre_parse(
XSLFile => $xsl_filename
);
$pre_parsed{$processor}{xsl} = $parsed_xsl;
foreach (@xml_files) {
$result = $xslt->transform(
XSLParsed = $parsed_xsl;
OutFile => $output_filename,
XMLFile => $_,
XSLParams => [ COMEIN, knock knock,
GOAWAY, conk conk ],
);
}
See also examples/*.pl, t/*.t and Driver/*.pm in the distribution directory.
Provides a consistent interface to various XSLT processors. Tries each of a supplied list of processors in turn until one performs a successful transform. If no list is given, tries all the processors it knows until one works. Does its best to fail gracefully whenever a processor does not work for some reason.
Can return the result of the transform as a string, or write it to a specified file.
For those processors which can accept parameters to an XSLT stylesheet, XML::XSLT::Wrapper can accept these as hash of name-value pairs, or as an array of [name, value, name, value, ...]
On completion, returns: - if it has written an output file - the result string if it has succeeded but not written an output file - undef if it has failed
Currently knows how to use XML::LibXSLT, XML::Xalan, XML::Sablotron, XML::XSLT as well as the Java processors XT and Saxon. You need to set your CLASSPATH environment variable first for the Java processors, or pass it to the transform in a JavaClassPath hash element. In a future version, there will be a parameter to turn off support for the Java processors. The XML::Sablotron Ive tested with is 0.52.
<<lessSYNOPSIS
use XML::XSLT::Wrapper;
my $xslt = XML::XSLT::Wrapper->new(
ProcessorList => [libxslt, sablotron],
)
$result = $xslt->transform(
XMLFile => $xml_filename
XSLFile => $xsl_filename
#OR: XMLString => $xml_string
#OR: XSLString => $xsl_string
#OR: xml => $xml_filename_or_string,
#OR: xsl => $xsl_filename_or_string,
XSLParams => { COMEIN => knock knock,
GOAWAY => conk conk },
);
$result = $xslt->transform(
OutFile => $output_filename,
XMLFile => $xml_filename
XSLFile => $xsl_filename
XSLParams => [ COMEIN, knock knock,
GOAWAY, conk conk ],
);
# NB: The pre_parsing interface is likely to change:
%pre_parsed = $xslt->pre_parse(
XSLFile => $xsl_filename
);
$pre_parsed{$processor}{xsl} = $parsed_xsl;
foreach (@xml_files) {
$result = $xslt->transform(
XSLParsed = $parsed_xsl;
OutFile => $output_filename,
XMLFile => $_,
XSLParams => [ COMEIN, knock knock,
GOAWAY, conk conk ],
);
}
See also examples/*.pl, t/*.t and Driver/*.pm in the distribution directory.
Provides a consistent interface to various XSLT processors. Tries each of a supplied list of processors in turn until one performs a successful transform. If no list is given, tries all the processors it knows until one works. Does its best to fail gracefully whenever a processor does not work for some reason.
Can return the result of the transform as a string, or write it to a specified file.
For those processors which can accept parameters to an XSLT stylesheet, XML::XSLT::Wrapper can accept these as hash of name-value pairs, or as an array of [name, value, name, value, ...]
On completion, returns: - if it has written an output file - the result string if it has succeeded but not written an output file - undef if it has failed
Currently knows how to use XML::LibXSLT, XML::Xalan, XML::Sablotron, XML::XSLT as well as the Java processors XT and Saxon. You need to set your CLASSPATH environment variable first for the Java processors, or pass it to the transform in a JavaClassPath hash element. In a future version, there will be a parameter to turn off support for the Java processors. The XML::Sablotron Ive tested with is 0.52.
Download (0.010MB)
Added: 2007-06-07 License: Perl Artistic License Price:
872 downloads
DocBook XSL Configurator 0.5.4_1672
DocBook XSL Configurator consists of a Java GUI used to create DocBook XSL FO customization layers. more>>
DocBook XSL Configurator consists of a Java GUI used to create DocBook XSL FO customization layers.
Users click through tables, select parameters they want to include, edit those parameters, include the customization layer in a project, write out the customization layer as an XSL file, and apply the XSL to the projects DocBook XML using the projects specified XSLT processor.
DocBook XSL Configurator then runs a projects specified FO processor and PDF/PostScript viewer as external subprocesses.
DocBook XSL Configurator version 0.5.4_1672 requires a JVM compatible with Suns JVM version 1.5 or later (generic subtyping).
<<lessUsers click through tables, select parameters they want to include, edit those parameters, include the customization layer in a project, write out the customization layer as an XSL file, and apply the XSL to the projects DocBook XML using the projects specified XSLT processor.
DocBook XSL Configurator then runs a projects specified FO processor and PDF/PostScript viewer as external subprocesses.
DocBook XSL Configurator version 0.5.4_1672 requires a JVM compatible with Suns JVM version 1.5 or later (generic subtyping).
Download (MB)
Added: 2007-01-23 License: GPL (GNU General Public License) Price:
1005 downloads

Rapid XSLT for linux 0.1
Provide a complete set of tools that a programmer can use for writing XSLT. more>> The project is still too early in its development life cycle to be compared to other, more mature, editors and IDEs. Nevertheless, it does provide a complete set of tools that a programmer can use for writing XSLT.
There are no plans to further develop this project.
Some of the features of this editor:
- Ctrl+Shift brings up a list of frequently typed XSLT elements with a shortcut letter that allows one to be inserted.
- Shorthand Notation supports two groups of elements that abstract nicely to programmatic constructs: xsl:call-template and xsl:with-param elements and xsl:choose, xsl:when and xsl:otherwise. They can be written using the shorthand notation as a method call and a case-default construct, respectively.
- Ctrl+Alt+arrow keys navigate between elements and attributes.
- User preferences allow inserted code to be customized.
- One or more elements can be wrapped with an inserted element.
- Multiple XSLT files can be opened and edited at once.
The download file contains help sheets to explain how to use the program.
What are its known limitations?
- The preferences window is not user friendly in that the options that should be set via radio buttons are set by typing YES or NO into text fields.
- When closing an open document, the user is prompted to save even if no changes have been made to it.
- Only one construct can be typed at a time in the shorthand notation text area. Therefore, a case/default construct may not be followed by a method call, and vice versa.<<less
Download (111KB)
Added: 2009-04-18 License: Freeware Price: Free
188 downloads
XML::DOM::Lite::XSLT 0.15
XML::DOM::Lite::XSLT is Perl module XSLT engine for XML::DOM::Lite. more>>
[COPYRIGHT]
SYNOPSIS
use XML::DOM::Lite qw(Parser XSLT);
$parser = Parser->new( whitespace => strip );
$xsldoc = $parser->parse($xsl);
$xmldoc = $parser->parse($xml);
$output = XSLT->process($xmldoc, $xsldoc);
<<lessSYNOPSIS
use XML::DOM::Lite qw(Parser XSLT);
$parser = Parser->new( whitespace => strip );
$xsldoc = $parser->parse($xsl);
$xmldoc = $parser->parse($xml);
$output = XSLT->process($xmldoc, $xsldoc);
Download (0.031MB)
Added: 2006-11-30 License: Perl Artistic License Price:
1059 downloads
svn2cl 0.9
svn2cl is an XSLT script that generates a clasic GNU-style changelog file from Subversion log messages. more>>
svn2cl is an xsl stylesheet for generating a clasic GNU-style ChangeLog from a subversion repository log. svn2cl is made from several changelog-like scripts using common xslt constructs found in different places. This is just my implementation.
I made it because it was the only thing that I missed from cvs after I converted a repository to subversion. I used cvs2cl before.
Installation:
Just unpack the tarball in some directory (e.g. /opt/svn2cl-0.3) and symlink the svn2cl.sh script in your path somewhere (e.g. ln -s /opt/svn2cl-0.3/svn2cl.sh /usr/local/bin/svn2cl).
Note: Be sure to keep the svn2cl.xsl file in the same directory as the svn2cl.sh script as the script looks for it there (symlinking is ok).
Enhancements:
- The implementation of a new option to ignore log messages that start with a specific text and change to ignore paths from outside of the directory where svn2cl is run.
<<lessI made it because it was the only thing that I missed from cvs after I converted a repository to subversion. I used cvs2cl before.
Installation:
Just unpack the tarball in some directory (e.g. /opt/svn2cl-0.3) and symlink the svn2cl.sh script in your path somewhere (e.g. ln -s /opt/svn2cl-0.3/svn2cl.sh /usr/local/bin/svn2cl).
Note: Be sure to keep the svn2cl.xsl file in the same directory as the svn2cl.sh script as the script looks for it there (symlinking is ok).
Enhancements:
- The implementation of a new option to ignore log messages that start with a specific text and change to ignore paths from outside of the directory where svn2cl is run.
Download (0.005MB)
Added: 2007-04-09 License: BSD License Price:
928 downloads
xsd2db 0.1.0
xsd2db package is contributed with LayManSys and is used for converting XML Schema Definition files into DocBook XML code. more>>
xsd2db package is contributed with LayManSys and is used for converting XML Schema Definition files into DocBook XML code. The transformer can also be used to generate DocBook XML from plain XML files.
xsd2db marks up tag names, attribute names, attribute values and annotation, if parsing XSD code. The resulting DocBook XML code may be styled, so that you have got syntax highlighted XML code.
sd2db.xsl has to be called with two XSL parameters:
sid (string)
This is the section ID you want to give the generated DocBook XML section. I prefer using the (local) filename as ID.
filename (string)
This is the name of the file being processed. It is used as text for the sections title.
If you use xsltproc you have to call xsd2db.xsl this way:
xsltproc --stringparam sid SECTIONID --stringparam
filename FILENAME xsd2db.xsl FILE2PROCESS
<<lessxsd2db marks up tag names, attribute names, attribute values and annotation, if parsing XSD code. The resulting DocBook XML code may be styled, so that you have got syntax highlighted XML code.
sd2db.xsl has to be called with two XSL parameters:
sid (string)
This is the section ID you want to give the generated DocBook XML section. I prefer using the (local) filename as ID.
filename (string)
This is the name of the file being processed. It is used as text for the sections title.
If you use xsltproc you have to call xsd2db.xsl this way:
xsltproc --stringparam sid SECTIONID --stringparam
filename FILENAME xsd2db.xsl FILE2PROCESS
Download (0.007MB)
Added: 2006-09-04 License: Free To Use But Restricted Price:
1148 downloads
ResXML 0.2.2
ResXML provides software for XML-based resumes and curricula vitae. more>>
ResXML provides software for XML-based resumes and curricula vitae.
ResXML is an XML application for the presentation-oriented markup of resumes or curricula vitae.
The aim is for ResXML to support a set of features which make it a very functional tool for generating resumes for actual use from an XML source.
Main features:
- Multiple output formats can be generated from a single master XML resume:
- HTML
- PDF and PostScript (via XSLFO)
- Plain text.
- PDF output supports the following options:
- Title page
- PDF bookmarks
- PDF document security features.
- Labels for section headings are user-customisable.
- A resume can include a photograph of its author, and this can be rendered in a number of ways to each output format.
Enhancements:
- This release fixes several bugs and delivers some minor new features.
- Some primitive support has been added for targetted resumes. The stylesheet common/targets.xsl can be used to pre-process a resume and remove elements which do not have an appropriate target attribute. This is not automated in any way, and a good working knowledge of XSL processing tools will be required.
- A new top-level "Clearances" section has been added to the schema.
- Security clearances can be listed here.
- The FO and HTML stylesheets have been updated to close a number of bugs and feature requests.
<<lessResXML is an XML application for the presentation-oriented markup of resumes or curricula vitae.
The aim is for ResXML to support a set of features which make it a very functional tool for generating resumes for actual use from an XML source.
Main features:
- Multiple output formats can be generated from a single master XML resume:
- HTML
- PDF and PostScript (via XSLFO)
- Plain text.
- PDF output supports the following options:
- Title page
- PDF bookmarks
- PDF document security features.
- Labels for section headings are user-customisable.
- A resume can include a photograph of its author, and this can be rendered in a number of ways to each output format.
Enhancements:
- This release fixes several bugs and delivers some minor new features.
- Some primitive support has been added for targetted resumes. The stylesheet common/targets.xsl can be used to pre-process a resume and remove elements which do not have an appropriate target attribute. This is not automated in any way, and a good working knowledge of XSL processing tools will be required.
- A new top-level "Clearances" section has been added to the schema.
- Security clearances can be listed here.
- The FO and HTML stylesheets have been updated to close a number of bugs and feature requests.
Download (MB)
Added: 2007-01-26 License: BSD License Price:
1003 downloads
xmlroff 0.5.1
xmlroff is a fast, free, high-quality, multi-platform XSL formatter. more>>
xmlroff is a fast, free, high-quality, multi-platform XSL formatter.
xmlroff is an open source XSL formatter that uses only open source libraries. xmlroff is written in C and it produces PDF and PostScript using libgnomeprint.
xmlroff creates formatted output -- pages containing text in a variety of type styles and sizes -- from an input XML document and an XSL stylesheet (which is also XML). This processing model is defined in the XSL Recommendation [XSL] that was developed by the W3C.
xmlroff is a command line program, but the bulk of the XSL formatting is implemented as a libfo library that can be linked with any program that requires XSL formatting capability. xmlroff also has a Java Native Interface (JNI) for calling the formatter from your Java program.
Enhancements:
- The source code directories were reorganized.
- The CVS/RCS keywords were removed, since Subversion is now used.
- A compilation error when GNOME Print is not installed was fixed.
- Segfaults when media-usage is not "paginate" were fixed.
<<lessxmlroff is an open source XSL formatter that uses only open source libraries. xmlroff is written in C and it produces PDF and PostScript using libgnomeprint.
xmlroff creates formatted output -- pages containing text in a variety of type styles and sizes -- from an input XML document and an XSL stylesheet (which is also XML). This processing model is defined in the XSL Recommendation [XSL] that was developed by the W3C.
xmlroff is a command line program, but the bulk of the XSL formatting is implemented as a libfo library that can be linked with any program that requires XSL formatting capability. xmlroff also has a Java Native Interface (JNI) for calling the formatter from your Java program.
Enhancements:
- The source code directories were reorganized.
- The CVS/RCS keywords were removed, since Subversion is now used.
- A compilation error when GNOME Print is not installed was fixed.
- Segfaults when media-usage is not "paginate" were fixed.
Download (2.7MB)
Added: 2007-07-16 License: BSD License Price:
830 downloads
CStyleX 0.2.0
CStyleX is a tool to generate documentation from XML interface definitions. more>>
CStyleX project is a tool to generate documentation from XML interface definitions.
CStyleX is a documentation system that uses a ref.xsl and man.xsl XSLT transforms to convert an XML input file describing the interface of a module in a C library into both an HTML reference and man pages.
Multiple interface definitions are compiled into an API reference that looks roughly similar to Javas javadoc. Man pages use concise GNU style troff macros.
The author must create the XML input files.
The input files are not created from header files or source code.
Enhancements:
- All stylesheets have been updated. For the latest style sheets check libmbas docs/xml directory.
<<lessCStyleX is a documentation system that uses a ref.xsl and man.xsl XSLT transforms to convert an XML input file describing the interface of a module in a C library into both an HTML reference and man pages.
Multiple interface definitions are compiled into an API reference that looks roughly similar to Javas javadoc. Man pages use concise GNU style troff macros.
The author must create the XML input files.
The input files are not created from header files or source code.
Enhancements:
- All stylesheets have been updated. For the latest style sheets check libmbas docs/xml directory.
Download (0.015MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
XML::XQL 0.68
XML::XQL is a perl module for querying XML tree structures with XQL. more>>
XML::XQL is a perl module for querying XML tree structures with XQL.
SYNOPSIS
use XML::XQL;
use XML::XQL::DOM;
$parser = new XML::DOM::Parser;
$doc = $parser->parsefile ("file.xml");
# Return all elements with tagName=title under the root element book
$query = new XML::XQL::Query (Expr => "book/title");
@result = $query->solve ($doc);
$query->dispose; # Avoid memory leaks - Remove circular references
# Or (to save some typing)
@result = XML::XQL::solve ("book/title", $doc);
# Or (to save even more typing)
@result = $doc->xql ("book/title");
The XML::XQL module implements the XQL (XML Query Language) proposal submitted to the XSL Working Group in September 1998. The spec can be found at: http://www.w3.org/TandS/QL/QL98/pp/xql.html Most of the contents related to the XQL syntax can also be found in the XML::XQL::Tutorial that comes with this distribution. Note that XQL is not the same as XML-QL!
The current implementation only works with the XML::DOM module, but once the design is stable and the major bugs are flushed out, other extensions might follow, e.g. for XML::Grove.
XQL was designed to be extensible and this implementation tries to stick to that. Users can add their own functions, methods, comparison operators and data types. Plugging in a new XML tree structure (like XML::Grove) should be a piece of cake.
To use the XQL module, either
use XML::XQL;
or
use XML::XQL::Strict;
The Strict module only provides the core XQL functionality as found in the XQL spec. By default (i.e. by using XML::XQL) you get XQL+, which has some additional features.
See the section "Additional Features in XQL+" for the differences.
This module is still in development. See the To-do list in XQL.pm for what still needs to be done. Any suggestions are welcome, the sooner these implementation issues are resolved, the faster we can all use this module.
If you find a bug, you would do me great favor by sending it to me in the form of a test case. See the file t/xql_template.t that comes with this distribution.
If you have written a cool comparison operator, function, method or XQL data type that you would like to share, send it to tjmather@tjmather.com and I will add it to this module.
<<lessSYNOPSIS
use XML::XQL;
use XML::XQL::DOM;
$parser = new XML::DOM::Parser;
$doc = $parser->parsefile ("file.xml");
# Return all elements with tagName=title under the root element book
$query = new XML::XQL::Query (Expr => "book/title");
@result = $query->solve ($doc);
$query->dispose; # Avoid memory leaks - Remove circular references
# Or (to save some typing)
@result = XML::XQL::solve ("book/title", $doc);
# Or (to save even more typing)
@result = $doc->xql ("book/title");
The XML::XQL module implements the XQL (XML Query Language) proposal submitted to the XSL Working Group in September 1998. The spec can be found at: http://www.w3.org/TandS/QL/QL98/pp/xql.html Most of the contents related to the XQL syntax can also be found in the XML::XQL::Tutorial that comes with this distribution. Note that XQL is not the same as XML-QL!
The current implementation only works with the XML::DOM module, but once the design is stable and the major bugs are flushed out, other extensions might follow, e.g. for XML::Grove.
XQL was designed to be extensible and this implementation tries to stick to that. Users can add their own functions, methods, comparison operators and data types. Plugging in a new XML tree structure (like XML::Grove) should be a piece of cake.
To use the XQL module, either
use XML::XQL;
or
use XML::XQL::Strict;
The Strict module only provides the core XQL functionality as found in the XQL spec. By default (i.e. by using XML::XQL) you get XQL+, which has some additional features.
See the section "Additional Features in XQL+" for the differences.
This module is still in development. See the To-do list in XQL.pm for what still needs to be done. Any suggestions are welcome, the sooner these implementation issues are resolved, the faster we can all use this module.
If you find a bug, you would do me great favor by sending it to me in the form of a test case. See the file t/xql_template.t that comes with this distribution.
If you have written a cool comparison operator, function, method or XQL data type that you would like to share, send it to tjmather@tjmather.com and I will add it to this module.
Download (0.11MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1232 downloads
XmlAutoIndex 0.03
XmlAutoIndex (xai) is a module forApache written in perl that browses your directories and outputs it into Xml. more>>
XmlAutoIndex (xai) is a module for Apache written in perl that browses your directories and outputs it into Xml.
The aim of this project is to replace mod_autoindex in Apache:
I would like to separate data from design, that is why I have made a xml output.
After that, using Xslt you can translate it into Html, Svg or Xul for example (you can make your own theme by updating xsl style sheet and with never touching the core engine).
Each plugins are indepentant and are here to generate thumbnails, previews, etc... Each previews, meta-data are cached in a cache directory to accelerate http queries. bonus: I have included in engine a handler that allows you to add comments per file, this behaviour does not require SQL server because comments are saved in files caches meta-data.
<<lessThe aim of this project is to replace mod_autoindex in Apache:
I would like to separate data from design, that is why I have made a xml output.
After that, using Xslt you can translate it into Html, Svg or Xul for example (you can make your own theme by updating xsl style sheet and with never touching the core engine).
Each plugins are indepentant and are here to generate thumbnails, previews, etc... Each previews, meta-data are cached in a cache directory to accelerate http queries. bonus: I have included in engine a handler that allows you to add comments per file, this behaviour does not require SQL server because comments are saved in files caches meta-data.
Download (1.3MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1143 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 xsl 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