Index styling infrastructure changes
authorNigel Metheringham <nigel.metheringham@dev.intechnology.co.uk>
Wed, 14 Jul 2010 11:47:41 +0000 (12:47 +0100)
committerNigel Metheringham <nigel.metheringham@dev.intechnology.co.uk>
Wed, 14 Jul 2010 11:47:41 +0000 (12:47 +0100)
Added class info to the Index chapters/sections.
Sections now have surrounding div in html.
Chapter/Sections carry id and class data through

script/gen.pl
templates/doc/chapter.xsl

index 6073b56ccd2f80e7a48ed91c5a91e5cc448be008..0cfa5a14dffde981944c757849f407a2391be262 100755 (executable)
@@ -237,13 +237,15 @@ sub build_indexes {
     foreach my $role ( sort { $a cmp $b } keys %{$index_hash} ) {
         my $chapter = XML::LibXML::Element->new('chapter');
         $book->appendChild($chapter);
-        $chapter->setAttribute( 'id', 'index_' . $role );
+        $chapter->setAttribute( 'id', join( '_', 'index', $role ) );
+        $chapter->setAttribute( 'class', 'index' );
         $chapter->appendTextChild( 'title', ( ucfirst($role) . ' Index' ) );
         foreach my $first ( sort { $a cmp $b } keys %{ $index_hash->{$role} } ) {
             my $section = XML::LibXML::Element->new('section');
             my $list    = XML::LibXML::Element->new('variablelist');
             $chapter->appendChild($section);
-            $section->setAttribute( 'id', 'index_' . $role . '_' . $first );
+            $section->setAttribute( 'id', join( '_', 'index', $role, $first ) );
+            $section->setAttribute( 'class', 'index' );
             $section->appendTextChild( 'title', $first ? $first : 'Symbols' );
             $section->appendChild($list);
             foreach my $primary ( sort { $a cmp $b } keys %{ $index_hash->{$role}{$first} } ) {
index 13a7c91e73ec7279be142752c97363fbfa574422..5f13185f5907581fd233f23bd2709995f39bf4f2 100644 (file)
            <a class="next_page"     href="{next_url}"><![CDATA[next->]]></a>
 
          <!-- Chapter Title -->
-            <h2>
+            <h2 id="{@id}" class="{@class}">
                <xsl:value-of select="concat('Chapter ',chapter_id,' - ',title)"/>
             </h2>
 
          <!-- Chapter Info -->
-            <div id="chapter">
+            <div id="chapter" class="chapter{@class}">
                <xsl:apply-templates select="*[name()!='section']"/>
                <xsl:apply-templates select="section"/>
             </div>
       <xsl:template match="/chapter/section">
 
          <!-- Section Title -->
-            <h3 id="{@id}">
+            <h3 id="{@id}" class="{@class}">
                <xsl:value-of select="concat(position(),'. ',title)"/>
             </h3>
 
          <!-- Section Paragraphs -->
+         <div class="section{@class}">
             <xsl:apply-templates select="*"/>
+         </div>
       </xsl:template>
 
    <!-- Section paragraph -->