brett       2004/04/12 15:54:54

  Modified:    xdoc/src/plugin-resources site.jsl
               xdoc/src/plugin-resources/templates team-list.xml
               xdoc/xdocs changes.xml
  Log:
  PR: MPXDOC-63
  Change anchors to not wrap text so they don't get highlighted when moused over
  
  Revision  Changes    Path
  1.53      +4 -4      maven-plugins/xdoc/src/plugin-resources/site.jsl
  
  Index: site.jsl
  ===================================================================
  RCS file: /home/cvs/maven-plugins/xdoc/src/plugin-resources/site.jsl,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- site.jsl  10 Apr 2004 03:26:40 -0000      1.52
  +++ site.jsl  12 Apr 2004 22:54:54 -0000      1.53
  @@ -307,7 +307,7 @@
         <!-- named anchors can't contain whitespaces -->
         <j:set var="_anchorName"><doc:escapeNameToken 
value="${_sectionName}"/></j:set>
         <j:if test="${!empty(_sectionName)}">
  -          <h2><a name="${_anchorName}">${_sectionName}</a></h2>
  +          <a name="${_anchorName}"/><h2>${_sectionName}</h2>
         </j:if>
         <jsl:applyTemplates select="*"/>
       </div>
  @@ -319,7 +319,7 @@
         <!-- named anchors can't contain whitespaces -->
         <j:set var="_anchorName"><doc:escapeNameToken 
value="${_sectionName}"/></j:set>
         <j:if test="${!empty(_sectionName)}">
  -          <h3><a name="${_anchorName}">${_sectionName}</a></h3>
  +          <a name="${_anchorName}"/><h3>${_sectionName}</h3>
         </j:if>
         <jsl:applyTemplates select="*"/>
       </div>
  @@ -391,7 +391,7 @@
           <!-- reset row alternation -->
           <j:set var="rowMode" value="" />
           <div class="h3">
  -          <h3><a name="Goals">Goals</a></h3>
  +          <a name="Goals"/><h3>Goals</h3>
             <table class="bodyTable">
               <thead>
                 <tr><th>Goal</th><th>Description</th></tr>
  @@ -417,7 +417,7 @@
           <x:element name="tr"><j:whitespace trim="true">
             <x:attribute name="class">${rowMode}</x:attribute>
             <j:set var="_goalName"><x:expr select="./name" /></j:set>
  -          <td style="width:20%"><a name="${_goalName}">${_goalName}</a></td>
  +          <td style="width:20%"><a name="${_goalName}"/>${_goalName}</td>
             <td ><jsl:applyTemplates select="description" /></td>
   </j:whitespace></x:element>
         </jsl:template>   
  
  
  
  1.12      +1 -1      maven-plugins/xdoc/src/plugin-resources/templates/team-list.xml
  
  Index: team-list.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/xdoc/src/plugin-resources/templates/team-list.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- team-list.xml     4 Mar 2004 18:39:49 -0000       1.11
  +++ team-list.xml     12 Apr 2004 22:54:54 -0000      1.12
  @@ -99,7 +99,7 @@
             #else
             <td>$!developer.name</td>
             #end
  -          <td><a name="$!developer.id">$!developer.id</a></td>
  +          <td><a name="$!developer.id"/>$!developer.id</td>
             <td><a href="mailto:$!developer.email";>$!developer.email</a></td>
             <td>$!developer.organization</td>
             <td>
  
  
  
  1.39      +1 -0      maven-plugins/xdoc/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/xdoc/xdocs/changes.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- changes.xml       10 Apr 2004 03:26:40 -0000      1.38
  +++ changes.xml       12 Apr 2004 22:54:54 -0000      1.39
  @@ -25,6 +25,7 @@
     </properties>
     <body>
       <release version="1.7-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="fix" issue="MPXDOC-63">make anchor tags not wrap 
text, but sit in front of it</action>
         <action dev="brett" type="fix" due-to="Chad McHenry" issue="MPXDOC-78">indent 
nested menus in navigation</action>
         <action dev="brett" type="fix">remove changes-report.xml which was generating 
over the top of the actual report. This information already exists in the changes 
plugin documentation.</action>
         <action dev="brett" type="fix" issue="MPXDOC-82">fix processing of a href 
links</action>
  
  
  

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

Reply via email to