From: <jbo...@li...> - 2005-09-09 12:11:36
|
Author: mla...@jb... Date: 2005-09-09 08:11:29 -0400 (Fri, 09 Sep 2005) New Revision: 1064 Added: trunk/labs/jbossweb/xdocs/images/tomcat_pb.gif Modified: trunk/labs/jbossweb/xdocs/index.xml trunk/labs/jbossweb/xdocs/style.xsl Log: Add images style tag. Added: trunk/labs/jbossweb/xdocs/images/tomcat_pb.gif =================================================================== (Binary files differ) Property changes on: trunk/labs/jbossweb/xdocs/images/tomcat_pb.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/labs/jbossweb/xdocs/index.xml =================================================================== --- trunk/labs/jbossweb/xdocs/index.xml 2005-09-09 10:50:35 UTC (rev 1063) +++ trunk/labs/jbossweb/xdocs/index.xml 2005-09-09 12:11:29 UTC (rev 1064) @@ -39,7 +39,11 @@ from threading and event processing models, and that makes the JBoss Web Server one of the fastest and most scalable web servers in the market. -</p> +</p> +<p> +<image src="/images/tomcat_pb.gif"/> +<image src="/images/openssl_ics.gif"/> +</p> </section> </body> </document> Modified: trunk/labs/jbossweb/xdocs/style.xsl =================================================================== --- trunk/labs/jbossweb/xdocs/style.xsl 2005-09-09 10:50:35 UTC (rev 1063) +++ trunk/labs/jbossweb/xdocs/style.xsl 2005-09-09 12:11:29 UTC (rev 1064) @@ -184,6 +184,16 @@ </table> </xsl:template> + <xsl:template match="image"> + <xsl:variable name="src"> + <xsl:value-of select="$relative-path"/><xsl:value-of select="@src"/> + </xsl:variable> + <xsl:variable name="alt"> + <xsl:value-of select="@alt"/> + </xsl:variable> + <img src="{$src}" alt="{$alt}" border="0"/> + </xsl:template> + <!-- Process a documentation section --> <xsl:template match="section"> <xsl:variable name="name"> |