bwalding    2003/07/23 03:23:50

  Modified:    src/plugins-build/xdoc/src/plugin-resources navigation.jsl
  Log:
  Completed updates.  Fully migrated from site.jsl to here.  Much much cleaner.
  PR: MAVEN-602
  
  Revision  Changes    Path
  1.2       +39 -1     maven/src/plugins-build/xdoc/src/plugin-resources/navigation.jsl
  
  Index: navigation.jsl
  ===================================================================
  RCS file: 
/home/cvs/maven/src/plugins-build/xdoc/src/plugin-resources/navigation.jsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- navigation.jsl    23 Jul 2003 10:06:41 -0000      1.1
  +++ navigation.jsl    23 Jul 2003 10:23:49 -0000      1.2
  @@ -10,13 +10,51 @@
     xmlns:doc="doc"
     xmlns="dummy" trim="true">
     
  -  
     <jsl:template match="document" trim="false">
       <project>
         <body>
           <j:if test="${includeProjectDocumentation.equals('yes')}">
             <menu name="Project Documentation">
               <item name="About ${pom.name}" href="/index.html"/>   
  +            
  +            <item name="Project Info" href="/project-info.html" collapse="true">
  +              <item name="Mailing Lists" href="/mail-lists.html"/>
  +              <item name="Project Team" href="/team-list.html"/>
  +              <item name="Dependencies" href="/dependencies.html"/>
  +              
  +              <j:if test="${!empty(pom.repository.url)}">
  +                <item name="Source Repository" href="/cvs-usage.html"/>
  +              </j:if>
  +                
  +              <j:if test="${!empty(pom.issueTrackingUrl)}">
  +                <item name="Issue Tracking" href="/issue-tracking.html"/>
  +              </j:if>
  +            </item>
  +            <item name="Project Reports" href="/maven-reports.html" collapse="true">
  +              <j:forEach var="report" items="${reports}">
  +                <item name="${report.name}" href="/${report.link}.html"/>
  +              </j:forEach>
  +            </item>
  +            <j:if test="${pom.reports.isEmpty()}">
  +              <j:if test="${sourcesPresent}">
  +                <item name="JavaDocs" href="/apidocs/index.html"/>
  +                <item name="Source XReference" href="/xref/index.html"/>
  +
  +                <j:if test="${unitTestSourcesPresent == 'true'}">
  +                  <item name="Test XReference" href="/xref-test/index.html"/>
  +                </j:if>
  +              </j:if>
  +            </j:if>
  +            <j:set var="devProcess" value="false"/>
  +            <util:available file="${maven.docs.src}/development-process.xml">
  +              <j:set var="devProcess" value="true"/>
  +            </util:available>
  +            <j:if test="${devProcess}">
  +              <item name="Development Process" href="/development-process.html"/>
  +            </j:if>
  +            <j:if test="${!devProcess}">
  +              <item name="Development Process" 
href="${maven.xdoc.developmentProcessUrl}"/>
  +            </j:if>
             </menu>
           </j:if>
         </body>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to