You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/02/28 01:29:14 UTC

svn commit: r381506 - /maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/site.jsl

Author: aheritier
Date: Mon Feb 27 16:29:12 2006
New Revision: 381506

URL: http://svn.apache.org/viewcvs?rev=381506&view=rev
Log:
fix page header. Must be nav.title - doc.title or pom.name - doc.title

Modified:
    maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/site.jsl

Modified: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/site.jsl
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/site.jsl?rev=381506&r1=381505&r2=381506&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/site.jsl (original)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/site.jsl Mon Feb 27 16:29:12 2006
@@ -113,12 +113,12 @@
         
         <x:if select="$nav/title">
           <title>
-            ${_docTitle}${titleSeparator}${_navTitle}
+            ${_navTitle}${titleSeparator}${_docTitle}
           </title>
         </x:if>
         <x:if select="not($nav/title)">
           <title>
-            ${pom.name}${titleSeparator}${_navTitle}
+            ${pom.name}${titleSeparator}${_docTitle}
           </title>
         </x:if>