Revision: 78 Author: matt Date: 2006-08-13 02:16:28 +0000 (Sun, 13 Aug 2006)
Log Message: ----------- Demo index Added Paths: ----------- trunk/demo/index.html Added: trunk/demo/index.html =================================================================== --- trunk/demo/index.html 2006-08-13 02:16:00 UTC (rev 77) +++ trunk/demo/index.html 2006-08-13 02:16:28 UTC (rev 78) @@ -0,0 +1,61 @@ +<html> +<head> + <title>AxKit Demo Setup</title> +</head> +<body> + <h1>Demos</h1> + These are very simple demos to get you an idea of how AxKit2 works. + + <h2><a href="xslt/">XSLT</a></h2> + <p> + XSLT - eXtensible Stylesheet Language - a templating language which provides + a very powerful language for processing XML. + </p> + <p> + <a href="xslt/">Click here</a>. + </p> + + <h2><a href="xsp/">XSP</a></h2> + <p> + XSP - eXtensible Server Pages - A language originally designed by the Cocoon + project and adopted and extended by AxKit to allow dynamic generation of XML + using a server-side page language. XSP can be very powerful and extended by + tag libraries which hide much of the functionality, making complex page + generation simple. + </p> + <p> + <a href="xsp/">Click here</a>. + </p> + + <h2><a href="tal/">TAL</a></h2> + <p> + TAL - Tagged Attribute Language - A new option for AxKit2. This language + allows you to design your HTML as though it looked like the final output. + Then you just add some attributes to the elements you need to be "dynamic" + which indicate which parts of the XML source it should get data from. The + TAL backend then does all the work and generates a HTML page. Very cool. + </p> + <p> + <a href="tal/">Click here</a>. + </p> + + <h2><a href="xpathscript/">XPathScript</a></h2> + <p> + XPathScript - A language created to give some of perl's power and simple + expressability to XML transformation. Like XSLT it is mainly a declarative + language, but with the added power of Perl you can do all kinds of crazy + stuff that XSLT forbids. + </p> + <p> + <a href="xpathscript/">Click here</a>. + </p> + + <h2><a href="gallery/">Gallery</a></h2> + <p> + A full blown demo application - an image gallery. + </p> + <p> + <a href="gallery/">Click here</a>. + </p> +</body> +</html>