Thread: [Ejtools-cvs] xdocs/stylesheets site.jsl,1.4,1.5
Brought to you by:
letiemble
|
From: <let...@us...> - 2003-12-14 09:46:38
|
Update of /cvsroot/ejtools/xdocs/stylesheets
In directory sc8-pr-cvs1:/tmp/cvs-serv2776/stylesheets
Modified Files:
site.jsl
Log Message:
More fun on the website :
- sublink for library
- download page
- correct links
Index: site.jsl
===================================================================
RCS file: /cvsroot/ejtools/xdocs/stylesheets/site.jsl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** site.jsl 15 Sep 2003 21:17:24 -0000 1.4
--- site.jsl 13 Dec 2003 20:54:07 -0000 1.5
***************
*** 152,160 ****
<div>
<small>
- <a href="${relativePath}/index.html">Front Page</a>
- </small>
- </div>
- <div>
- <small>
<a href="${relativePath}/project-info.html">Project Info</a>
</small>
--- 152,155 ----
***************
*** 194,233 ****
</j:forEach>
</div>
- <div>
- <small>
- <a href="${relativePath}/maven-reports.html">Project Reports</a>
- </small>
- <!--
- Check to see if we need to include the report
- links in this document. The only time we
- need to do this is when the current document
- either the maven-reports.xml doc (the page
- is displayed when clicking on Project
- Reports) or when the current document is one
- of the actual reports (in which case we want
- to leave the project report links expanded.
- -->
- <j:set var="includeReportLinks" value="false"/>
- <j:forEach var="report" items="${reports}">
- <j:set var="linkWithXmlExt" value="${report.link}.xml"/>
- <j:if test="${relativePath == '.' and (fileName.endsWith('maven-reports.xml') or fileName.endsWith(linkWithXmlExt))}">
- <j:set var="includeReportLinks" value="true"/>
- </j:if>
- </j:forEach>
- <!--
- If we need to include the report links, then
- do so. This is determined by the above
- block.
- -->
- <j:if test="${includeReportLinks == 'true'}">
- <j:forEach var="report" items="${reports}">
- <div>
- <small>
- <a href="${relativePath}/${report.link}.html">${report.name}</a>
- </small>
- </div>
- </j:forEach>
- </j:if>
- </div>
<j:if test="${pom.reports.isEmpty()}">
<j:if test="${sourcesPresent}">
--- 189,192 ----
***************
*** 251,254 ****
--- 210,214 ----
</j:if>
</j:if>
+ <!-- Skip it
<j:set var="devProcess" value="false"/>
<util:available file="${maven.docs.src}/development-process.xml">
***************
*** 270,275 ****
--- 230,242 ----
</div>
</j:if>
+ -->
</div>
</j:if>
+ <div style="margin-top: 20px; width: 100%; text-align: center;">
+ <a href="http://sourceforge.net/" title="SourceForge">
+ <img src="http://sourceforge.net/sflogo.php?group_id=49088&type=1" border="0" alt="SourceForge Logo"/>
+ </a>
+ </div>
+ <!--
<j:set var="poweredbyimage">${maven.xdoc.poweredby.image}</j:set>
<j:set var="poweredbytitle">${maven.xdoc.poweredby.title}</j:set>
***************
*** 282,285 ****
--- 249,253 ----
</div>
</j:if>
+ -->
<j:if test="${date == 'navigation-bottom'}">
<div>
***************
*** 318,325 ****
</j:if>
<j:if test="${date == 'bottom'}"> - Last published: ${build.date}</j:if>
- <br/>
- <a href="http://sourceforge.net">
- <img src="http://sourceforge.net/sflogo.php?group_id=49088&type=1" border="0" alt="SourceForge Logo"/>
- </a>
</td>
<j:if test="${date == 'bottom-right'}">
--- 286,289 ----
***************
*** 367,374 ****
<small>
<j:if test="${navbean.isSelected(item.get(0))}">
! <b><doc:itemLink name="${_name}" link="${_link}" img="${_img}" state="${_state}"/></b>
</j:if>
<j:if test="${!navbean.isSelected(item.get(0))}">
! <doc:itemLink name="${_name}" link="${_link}" img="${_img}" state="${_state}"/>
</j:if>
</small>
--- 331,338 ----
<small>
<j:if test="${navbean.isSelected(item.get(0))}">
! <b><a href="${relativePath}${_link}">${_name}</a></b>
</j:if>
<j:if test="${!navbean.isSelected(item.get(0))}">
! <a href="${relativePath}${_link}">${_name}</a>
</j:if>
</small>
***************
*** 386,390 ****
<j:set var="_name"><x:expr select="@name"/></j:set>
<j:set var="_link"><x:expr select="@href"/></j:set>
! <doc:itemLink name="${_name}" link="${_link}"/>
<j:set var="linkCount" value="${1+linkCount}"/>
</x:forEach>
--- 350,354 ----
<j:set var="_name"><x:expr select="@name"/></j:set>
<j:set var="_link"><x:expr select="@href"/></j:set>
! <a href="${relativePath}${_link}">${_name}</a>
<j:set var="linkCount" value="${1+linkCount}"/>
</x:forEach>
|