kaz 02/03/26 15:29:22
Modified: src/dvsl/xdocs site.dvsl
Log:
When I created the new site.dvsl, I forgot to include the <a> elements
that can be used to refer to a <section> or <subsection>. This has been
fixed.
Revision Changes Path
1.12 +2 -2 jakarta-turbine-maven/src/dvsl/xdocs/site.dvsl
Index: site.dvsl
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/dvsl/xdocs/site.dvsl,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- site.dvsl 26 Mar 2002 23:00:11 -0000 1.11
+++ site.dvsl 26 Mar 2002 23:29:22 -0000 1.12
@@ -184,12 +184,12 @@
* process a documentation section
*#
#match( "section" )
- <h3>$attrib.name</h3>
+ <h3><a name="$attrib.name">$attrib.name</a></h3>
$context.applyTemplates("*")
#end
#match( "subsection" )
- <h4>$attrib.name</h4>
+ <h4><a name="$attrib.name">$attrib.name</a></h4>
$context.applyTemplates("*")
#end
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>