From: <jbo...@li...> - 2005-09-13 09:55:04
|
Author: mla...@jb... Date: 2005-09-13 05:54:48 -0400 (Tue, 13 Sep 2005) New Revision: 1092 Added: trunk/labs/jbossweb/xdocs/howto/ trunk/labs/jbossweb/xdocs/howto/how.xml trunk/labs/jbossweb/xdocs/howto/how01.xml trunk/labs/jbossweb/xdocs/howto/project.xml trunk/labs/jbossweb/xdocs/news/ trunk/labs/jbossweb/xdocs/news/2005.xml trunk/labs/jbossweb/xdocs/news/project.xml trunk/labs/jbossweb/xdocs/news/roadmap.xml trunk/labs/jbossweb/xdocs/reference/arch.xml trunk/labs/jbossweb/xdocs/reference/arch01.xml trunk/labs/jbossweb/xdocs/reference/arch02.xml trunk/labs/jbossweb/xdocs/resources/ trunk/labs/jbossweb/xdocs/resources/faq.xml trunk/labs/jbossweb/xdocs/resources/faq01.xml trunk/labs/jbossweb/xdocs/resources/faq02.xml trunk/labs/jbossweb/xdocs/resources/faq03.xml trunk/labs/jbossweb/xdocs/resources/faq04.xml trunk/labs/jbossweb/xdocs/resources/project.xml trunk/labs/jbossweb/xdocs/resources/tut.xml trunk/labs/jbossweb/xdocs/resources/tut01.xml Modified: trunk/labs/jbossweb/xdocs/build.xml trunk/labs/jbossweb/xdocs/project.xml trunk/labs/jbossweb/xdocs/reference/project.xml trunk/labs/jbossweb/xdocs/style.xsl Log: Add howto, news and resources Modified: trunk/labs/jbossweb/xdocs/build.xml =================================================================== --- trunk/labs/jbossweb/xdocs/build.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/build.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -60,6 +60,7 @@ <param name="relative-path" expression="./.."/> <param name="project-menu" expression="nomenu"/> </style> + <style basedir="reference" destdir="${build.dir}/${dist.name}/reference" extension=".html" @@ -79,18 +80,17 @@ <param name="project-menu" expression="nomenu"/> </style> -<!-- - <style basedir="news" - destdir="${build.dir}/${dist.name}/news" + <style basedir="resources" + destdir="${build.dir}/${dist.name}/resources" extension=".html" style="style.xsl" excludes="project.xml" includes="*.xml"> <param name="relative-path" expression=".."/> </style> - <mkdir dir="${build.dir}/${dist.name}/news/printer"/> - <style basedir="news" - destdir="${build.dir}/${dist.name}/news/printer" + <mkdir dir="${build.dir}/${dist.name}/resources/printer"/> + <style basedir="resources" + destdir="${build.dir}/${dist.name}/resources/printer" extension=".html" style="style.xsl" excludes="project.xml" @@ -98,17 +98,18 @@ <param name="relative-path" expression="../.."/> <param name="project-menu" expression="nomenu"/> </style> - <style basedir="common" - destdir="${build.dir}/${dist.name}/common" + + <style basedir="howto" + destdir="${build.dir}/${dist.name}/howto" extension=".html" style="style.xsl" excludes="project.xml" includes="*.xml"> <param name="relative-path" expression=".."/> </style> - <mkdir dir="${build.dir}/${dist.name}/common/printer"/> - <style basedir="common" - destdir="${build.dir}/${dist.name}/common/printer" + <mkdir dir="${build.dir}/${dist.name}/howto/printer"/> + <style basedir="howto" + destdir="${build.dir}/${dist.name}/howto/printer" extension=".html" style="style.xsl" excludes="project.xml" @@ -117,17 +118,17 @@ <param name="project-menu" expression="nomenu"/> </style> - <style basedir="howto" - destdir="${build.dir}/${dist.name}/howto" + <style basedir="news" + destdir="${build.dir}/${dist.name}/news" extension=".html" style="style.xsl" excludes="project.xml" includes="*.xml"> <param name="relative-path" expression=".."/> </style> - <mkdir dir="${build.dir}/${dist.name}/howto/printer"/> - <style basedir="howto" - destdir="${build.dir}/${dist.name}/howto/printer" + <mkdir dir="${build.dir}/${dist.name}/news/printer"/> + <style basedir="news" + destdir="${build.dir}/${dist.name}/news/printer" extension=".html" style="style.xsl" excludes="project.xml" @@ -136,6 +137,26 @@ <param name="project-menu" expression="nomenu"/> </style> +<!-- + <style basedir="common" + destdir="${build.dir}/${dist.name}/common" + extension=".html" + style="style.xsl" + excludes="project.xml" + includes="*.xml"> + <param name="relative-path" expression=".."/> + </style> + <mkdir dir="${build.dir}/${dist.name}/common/printer"/> + <style basedir="common" + destdir="${build.dir}/${dist.name}/common/printer" + extension=".html" + style="style.xsl" + excludes="project.xml" + includes="*.xml"> + <param name="relative-path" expression="../.."/> + <param name="project-menu" expression="nomenu"/> + </style> + <style basedir="config" destdir="${build.dir}/${dist.name}/config" extension=".html" Added: trunk/labs/jbossweb/xdocs/howto/how.xml =================================================================== --- trunk/labs/jbossweb/xdocs/howto/how.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/howto/how.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,26 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="how.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>HowTo Documentation index</title> + </properties> + +<body> + +<section name="Introduction"> +<p>This is the top-level entry point of the HowTo documentation bundle for the +<strong>JBossWeb server</strong>. + +</p> +<p>Select one of the links from the navigation menu (to the left) to drill +down to the more detailed documentation that is available.</p> + +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/howto/how01.xml =================================================================== --- trunk/labs/jbossweb/xdocs/howto/how01.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/howto/how01.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="how01.html"> + + &project; + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Quick start HowTo</title> + </properties> + + <body> +<section name="Introduction"> +<p> + This document describes the configuration files used by JBossWeb + for the 'impatients' : + <ul> + <li> + WebServers add-ons to be set on the JBossWeb server. + </li> + </ul> +</p> +</section> + +<section name="Test your configuration"> +<p> + (Re)start the Web server and browse to the <a href="http://localhost/examples/">http://localhost/examples/</a> +</p> + +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/howto/project.xml =================================================================== --- trunk/labs/jbossweb/xdocs/howto/project.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/howto/project.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<project name="JBossWeb Documentation - Howto"> + <title>HowTo</title> + <logo href="/images/jbossweblogo.gif">JBossWeb @ JBoss labs</logo> +<body> + + <menu name="HowTo"> + <item name="Quick Start HowTo" href="how01.html"/> + </menu> + <menu name="Links"> + <item name="HowTo" href="how.html"/> + <item name="Documentation Home" href="../index.html"/> + </menu> +</body> +</project> Added: trunk/labs/jbossweb/xdocs/news/2005.xml =================================================================== --- trunk/labs/jbossweb/xdocs/news/2005.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/news/2005.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,25 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="2005.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>2005 News and Status</title> + </properties> + +<body> + +<section name="2005 News & Status"> +<br /> +<a name="20050805.1"> +<h3>8 April - JBossWeb project started</h3> +</a> +<p>JBossWeb project has been officially started. +</p> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/news/project.xml =================================================================== --- trunk/labs/jbossweb/xdocs/news/project.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/news/project.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<project name="JBossWeb Documentation - News"> + <title>Breaking News</title> + <logo href="/images/jbossweblogo.gif">JBossWeb @ JBoss labs</logo> +<body> + <menu name="News"> + <item name="2005" href="2005.html"/> + <item name="Roadmap" href="roadmap.html"/> + </menu> + <menu name="Links"> + <item name="Documentation Home" href="../index.html"/> + </menu> +</body> +</project> Added: trunk/labs/jbossweb/xdocs/news/roadmap.xml =================================================================== --- trunk/labs/jbossweb/xdocs/news/roadmap.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/news/roadmap.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="Roadmap.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Roadmap</title> + </properties> + +<body> + +<section name="Introduction"> +<br /> +This document details the current high level plans for the JBossWeb project as a whole. +More information can be found in JIRA under the JBWEB project. +</section> +</body> +</document> Modified: trunk/labs/jbossweb/xdocs/project.xml =================================================================== --- trunk/labs/jbossweb/xdocs/project.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/project.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -9,7 +9,15 @@ <item name="Overview" href="index.html"/> </menu> <menu name="Reference"> - <item name="Architecture" href="reference/ch01.html"/> + <item name="Architecture" href="reference/arch.html"/> </menu> + <menu name="Resources"> + <item name="FAQ" href="resources/faq.html"/> + <item name="Tutorial" href="resources/tut.html"/> + </menu> + <menu name="News"> + <item name="News & Status" href="news/2005.html"/> + <item name="Roadmap" href="news/roadmap.html"/> + </menu> </body> </project> Added: trunk/labs/jbossweb/xdocs/reference/arch.xml =================================================================== --- trunk/labs/jbossweb/xdocs/reference/arch.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/reference/arch.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="arch.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Architecture Overview</title> + </properties> + +<body> + +<section name="Design"> + <p>JBoss Web Server is based on the + <a href="http://tomcat.apache.org">Apache Tomcat</a>. + </p> + <figure src="/images/design/jbosswebblockda.png" name="Figure 1" text="JBossWeb architecture"/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/reference/arch01.xml =================================================================== --- trunk/labs/jbossweb/xdocs/reference/arch01.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/reference/arch01.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="arch01.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Tomcat Native</title> + </properties> + +<body> + +<section name="Design"> + <p>Tomcat Native uses <a href="http://apr.apache.org">APR</a> and + <a href="http://www.openssl.org">OpenSSL</a> + </p> + <figure src="/images/design/tcnativeblockda.png" name="Figure 2" text="Tomcat Native"/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/reference/arch02.xml =================================================================== --- trunk/labs/jbossweb/xdocs/reference/arch02.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/reference/arch02.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="arch02.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Hybrid connection model</title> + </properties> + +<body> + +<section name="Design"> + <p>Hybrid connection model + </p> + <figure src="/images/design/acceptflowchart.png" name="Figure 3" text="Accept flowchart"/> +</section> +</body> +</document> Modified: trunk/labs/jbossweb/xdocs/reference/project.xml =================================================================== --- trunk/labs/jbossweb/xdocs/reference/project.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/reference/project.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -1,17 +1,19 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<project name="JBossWeb Documentation - Top Level Directory" - href="http://labs.jboss.com/portal/index.html?ctrl:id=page.default.info&project=jbossweb"> - <title>JBossWeb</title> +<project name="JBossWeb Documentation - Refence"> + <title>Reference</title> <logo href="/images/jbossweblogo.gif">JBossWeb @ JBoss labs</logo> <body> - <menu name="JBossWeb"> - <item name="Overview" href="../index.html"/> + <menu name="Reference"> + <item name="Architecture" href="arch.html"/> </menu> <menu name="Architecture"> - <item name="Overview" href="ch01.html"/> - <item name="Native" href="ch02.html"/> - <item name="Hybrid connection model" href="ch03.html"/> + <item name="Overview" href="arch.html"/> + <item name="Native" href="arch01.html"/> + <item name="Hybrid connection model" href="arch02.html"/> </menu> + <menu name="Links"> + <item name="Documentation Home" href="../index.html"/> + </menu> </body> </project> Added: trunk/labs/jbossweb/xdocs/resources/faq.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/faq.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/faq.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,34 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="faq.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>FAQ</title> + </properties> + +<body> + +<section name="Where is the latest FAQ?"> + <p>The JBossWeb FAQ is included in the demo of the extra JBossWeb release. + But for the latest FAQ entries, visit the + <a href="../index.html">JBossWeb site</a>. + </p> + <br/> +</section> +<section name="Who wrote the FAQ?"> +<p>This FAQ was originally written by :</p> +<p> +<ul> +<li>Mladen Turk<br/></li> +<li>Remy Maucheret<br/></li> +</ul> +</p> +<br/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/resources/faq01.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/faq01.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/faq01.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,24 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="faq01.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>General FAQ's</title> + </properties> + +<body> + +<section name="What is the JBossWeb Architecture?"> + <figure src="/images/design/jbosswebblockda.png" name="Figure 1" text="JBossWeb architecture"/> + <p>For detailed JBossWeb architecture documentation see + <a href="../reference/arch.html">Architecture section</a>. + </p> + <br/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/resources/faq02.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/faq02.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/faq02.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,21 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="faq02.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>HTTP FAQ's</title> + </properties> + +<body> + +<section name="How do I run JBossWeb on a specific port?"> + <todo note="show server.xml example"/> + <br/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/resources/faq03.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/faq03.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/faq03.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,33 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="faq03.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>HTTPS FAQ's</title> + </properties> + +<body> + +<section name="About Certificates"> + <br /> + <subsection name="What are RSA Private Keys, CSRs and Certificates?"> + The RSA private key file is a digital file that you can use to decrypt messages + sent to you. It has a public component which you distribute (via your Certificate file) + which allows people to encrypt those messages to you. A Certificate Signing Request + (CSR) is a digital file which contains your public key and your name. + You send the CSR to a Certifying Authority (CA) to be converted into a real Certificate. + A Certificate contains your RSA public key, your name, the name of the CA, + and is digitally signed by your CA. Browsers that know the CA can verify the + signature on that Certificate, thereby obtaining your RSA public key. + That enables them to send messages which only you can decrypt. + </subsection> + <br /> + <todo note="copy httpd's mod_ssl FAQ's"/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/resources/faq04.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/faq04.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/faq04.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,43 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="faq04.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>AJP FAQ's</title> + </properties> + +<body> + +<section name="What is AJP Protocol?"> +<p> +The <b>AJP13</b> protocol is packet-oriented. A binary format was +presumably chosen over the more readable plain text for reasons of +performance. The web server communicates with the servlet container over +TCP connections. To cut down on the expensive process of socket creation, +the web server will attempt to maintain persistent TCP connections to the +servlet container, and to reuse a connection for multiple request/response +cycles. +</p><p> +Once a connection is assigned to a particular request, it will not be +used for any others until the request-handling cycle has terminated. In +other words, requests are not multiplexed over connections. This makes +for much simpler code at either end of the connection, although it does +cause more connections to be open at once. +</p><p> +Once the web server has opened a connection to the servlet container, +the connection can be in one of the following states: +</p><p> +<ul> + <li> Idle <br/> No request is being handled over this connection. </li> + <li> Assigned <br/> The connecton is handling a specific request.</li> +</ul> +</p> +<br/> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/resources/project.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/project.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/project.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<project name="JBossWeb Documentation - Top Level Directory"> + <title>Resources</title> + <logo href="/images/jbossweblogo.gif">JBossWeb @ JBoss labs</logo> +<body> + + <menu name="Resources"> + <item name="FAQ" href="faq.html"/> + <item name="Tutorial" href="tut.html"/> + </menu> + <menu name="FAQ"> + <item name="General" href="faq01.html"/> + <item name="HTTP" href="faq02.html"/> + <item name="HTTPS" href="faq03.html"/> + <item name="AJP" href="faq04.html"/> + </menu> + <menu name="Tutorial"> + <item name="Geting started" href="tut01.html"/> + </menu> + <menu name="Links"> + <item name="Documentation Home" href="../index.html"/> + </menu> +</body> +</project> Added: trunk/labs/jbossweb/xdocs/resources/tut.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/tut.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/tut.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="tut.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Tutorials</title> + </properties> + +<body> + +<section name="Using the tutorial"> + <p>If you just want to learn how to run a stand-alone JBossWeb server with the + demonstrations supplied, start at the <a href="tut01.html">Getting Started</a> + section. This should give you a good feel for JBossWeb. + </p> +</section> +</body> +</document> Added: trunk/labs/jbossweb/xdocs/resources/tut01.xml =================================================================== --- trunk/labs/jbossweb/xdocs/resources/tut01.xml 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/resources/tut01.xml 2005-09-13 09:54:48 UTC (rev 1092) @@ -0,0 +1,21 @@ +<?xml version="1.0"?> +<!DOCTYPE document [ + <!ENTITY project SYSTEM "project.xml"> +]> +<document url="tut.html"> + + &project; + + <properties> + <author email="mla...@jb...">Mladen Turk</author> + <title>Getting started tutorial</title> + </properties> + +<body> + +<section name="Introduction"> + <p>Firstly, if you haven't already done it, you need to download JBossWeb. + </p> +</section> +</body> +</document> Modified: trunk/labs/jbossweb/xdocs/style.xsl =================================================================== --- trunk/labs/jbossweb/xdocs/style.xsl 2005-09-13 09:51:28 UTC (rev 1091) +++ trunk/labs/jbossweb/xdocs/style.xsl 2005-09-13 09:54:48 UTC (rev 1092) @@ -18,7 +18,7 @@ <xsl:param name="project-menu" select="'menu'"/> <xsl:param name="standalone" select="''"/> <xsl:param name="buglink" select="'http://jira.jboss.com/jira/browse/'"/> - + <xsl:param name="home-site" select="'http://labs.jboss.com/portal/index.html?ctrl:id=page.default.info&project=jbossweb'"/> <!-- Process an entire document into an HTML page --> <xsl:template match="document"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> @@ -71,7 +71,7 @@ </xsl:variable> <xsl:comment>PROJECT LOGO</xsl:comment> - <a href="{$home}"> + <a href="{$home-site}"> <img src="{$src}" align="right" alt="{$alt}" border="0"/> </a> </xsl:if> @@ -378,6 +378,11 @@ </div> </p> </xsl:template> + <xsl:template match="home"> + <a href="{$home-site}"> + <xsl:apply-templates/> + </a> + </xsl:template> <!-- Changelog related tags --> <xsl:template match="changelog"> |