rubys       01/10/12 02:58:55

  Modified:    proposal/gump gen.bat gen.sh
               proposal/gump/project jakarta-commons.xml
                        jakarta-tomcat-40.xml jakarta-tomcat.xml
                        xml-site.xml xml-xalan.xml
               proposal/gump/repository xml.xml
               proposal/gump/stylesheet bash.xsl build.xsl jakarta.xsl
                        update.xsl win2k.xsl
  Log:
  Add a module xref
  
  Revision  Changes    Path
  1.14      +16 -1     jakarta-alexandria/proposal/gump/gen.bat
  
  Index: gen.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/gen.bat,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- gen.bat   2001/10/08 23:30:24     1.13
  +++ gen.bat   2001/10/12 09:58:54     1.14
  @@ -97,9 +97,24 @@
   
   REM ********************************************************************
   
  +echo Generating module xref instructions
  +java org.apache.xalan.xslt.Process -xml -in work\merge.xml -xsl 
stylesheet\modxref.xsl -out work\modxref.xml
  +if not errorlevel 0 goto fail
  +
  +echo Applying web site stylesheet
  +java org.apache.xalan.xslt.Process -EDUMP -xml -in work\modxref.xml -xsl 
stylesheet\jakarta.xsl -out work\modxrefsite.xml
  +if not errorlevel 0 goto fail
  +
  +echo Generating modxref script
  +java org.apache.xalan.xslt.Process -EDUMP -text -in work\modxrefsite.xml -xsl 
stylesheet\win2k.xsl -out work\modxref.bat
  +if not errorlevel 0 goto fail
  +
  +REM ********************************************************************
  +
   echo Publishing
   cd work
  -puball %SOURCE%
  +call modxref
  +call puball %SOURCE%
   cd ..
   
   goto eof
  
  
  
  1.16      +18 -0     jakarta-alexandria/proposal/gump/gen.sh
  
  Index: gen.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/gen.sh,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- gen.sh    2001/10/07 21:16:29     1.15
  +++ gen.sh    2001/10/12 09:58:54     1.16
  @@ -113,12 +113,30 @@
   java org.apache.xalan.xslt.Process -text -in work/merge.xml -xsl 
stylesheet/sedmap.xsl -out work/map.pl || \
   export FAIL=1
   
  +# ********************************************************************
  +
  +echo Generating module xref instructions
  +test -n "$FAIL" || \
  +java org.apache.xalan.xslt.Process -xml -in work/sorted.xml -xsl 
stylesheet/modxref.xsl -out work/modxref.xml || \
  +export FAIL=1
  +
  +echo Applying web site stylesheet
  +test -n "$FAIL" || \
  +java org.apache.xalan.xslt.Process -xml -in work/modxref.xml -xsl 
stylesheet/jakarta.xsl -out work/modxrefsite.xml || \
  +export FAIL=1
  +
  +echo Generating modxref script
  +test -n "$FAIL" || \
  +java org.apache.xalan.xslt.Process -text -in work/modxrefsite.xml -xsl 
stylesheet/bash.xsl -out work/modxref.sh || \
  +export FAIL=1
  +
   # **** publish ***
   if test -z "$FAIL"; then
     echo
     echo Publishing
     cd work
     chmod +x *.sh
  +  sh modxref.sh $SOURCE
     sh puball.sh $SOURCE
     cd ..
   fi
  
  
  
  1.42      +1 -0      jakarta-alexandria/proposal/gump/project/jakarta-commons.xml
  
  Index: jakarta-commons.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/project/jakarta-commons.xml,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- jakarta-commons.xml       2001/09/20 14:03:54     1.41
  +++ jakarta-commons.xml       2001/10/12 09:58:54     1.42
  @@ -1,5 +1,6 @@
   <module name="jakarta-commons">
   
  +  <url href="http://jakarta.apache.org/commons/index.html"/>
     <description>
       Jakarta commons
     </description>
  
  
  
  1.22      +1 -0      jakarta-alexandria/proposal/gump/project/jakarta-tomcat-40.xml
  
  Index: jakarta-tomcat-40.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/project/jakarta-tomcat-40.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- jakarta-tomcat-40.xml     2001/10/02 13:33:59     1.21
  +++ jakarta-tomcat-40.xml     2001/10/12 09:58:54     1.22
  @@ -1,5 +1,6 @@
   <module name="jakarta-tomcat-4.0">
   
  +  <url href="http://jakarta.apache.org/tomcat/index.html"/>
     <description>
       Servlet 2.3 and JSP 1.2 Reference Implementation
     </description>
  
  
  
  1.15      +1 -1      jakarta-alexandria/proposal/gump/project/jakarta-tomcat.xml
  
  Index: jakarta-tomcat.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/project/jakarta-tomcat.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- jakarta-tomcat.xml        2001/10/08 13:36:35     1.14
  +++ jakarta-tomcat.xml        2001/10/12 09:58:54     1.15
  @@ -1,9 +1,9 @@
   <module name="jakarta-tomcat">
   
  +  <url href="http://jakarta.apache.org/tomcat/index.html"/>
     <description>
       Servlet 2.2 and JSP 1.1 Reference Implementation
     </description>
  -  <url href="http://jakarta.apache.org/tomcat/index.html"/>
   
     <cvs repository="jakarta" />
     
  
  
  
  1.3       +4 -0      jakarta-alexandria/proposal/gump/project/xml-site.xml
  
  Index: xml-site.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/project/xml-site.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- xml-site.xml      2001/08/18 07:03:16     1.2
  +++ xml-site.xml      2001/10/12 09:58:54     1.3
  @@ -1,5 +1,9 @@
   <module name="xml-site">
   
  +  <description>
  +    The XML site
  +  </description>
  +
     <cvs repository="xml"/>
     <project name="xml-site"/>
     
  
  
  
  1.20      +5 -18     jakarta-alexandria/proposal/gump/project/xml-xalan.xml
  
  Index: xml-xalan.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/project/xml-xalan.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- xml-xalan.xml     2001/10/01 17:33:15     1.19
  +++ xml-xalan.xml     2001/10/12 09:58:54     1.20
  @@ -1,13 +1,13 @@
   <module name="xml-xalan">
   
  +  <url href="http://xml.apache.org/xalan-j/index.html"/>
  +  <description>
  +    Release 2.x of the Xalan-Java XSLT processor
  +  </description>
  +
     <cvs repository="xml"/>
   
     <project name="xml-xalan2">
  -    <url href="http://xml.apache.org/xalan-j/index.html"/>
  -    <description>
  -      Release 2.x of the Xalan-Java XSLT processor
  -    </description>
  -
       <ant basedir="java"/>
   
       <depend project="bootstrap-ant"/>
  @@ -29,10 +29,6 @@
     </project>
   
     <project name="xml-xalan2-smoketest-tools">
  -    <description>
  -      Xalan's independent 'qetest' testing framework
  -    </description>
  -
       <ant basedir="test" buildfile="qetest.xml" target="jar"/>
   
       <depend project="jakarta-ant"/>
  @@ -40,11 +36,6 @@
     </project>
   
     <project name="dist-xalan2">
  -    <url href="http://xml.apache.org/xalan-j/index.html"/>
  -    <description>
  -      Release 2.x of the Xalan-Java XSLT processor
  -    </description>
  -
       <ant basedir="java" target="dist">
         <depend property="bsf.jar" project="bsf"/>
         <depend property="xerces.jar" project="xml-xerces"/>
  @@ -69,10 +60,6 @@
     </project>
   
     <project name="xml-xalan2-smoketest">
  -    <description>
  -      Xalan-J 2.x developer's smoketests
  -    </description>
  - 
       <ant basedir="test" target="smoketest.gump"/>
    
       <depend project="jakarta-ant"/>
  
  
  
  1.2       +1 -1      jakarta-alexandria/proposal/gump/repository/xml.xml
  
  Index: xml.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/repository/xml.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- xml.xml   2001/08/05 12:22:39     1.1
  +++ xml.xml   2001/10/12 09:58:55     1.2
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
   
   <repository name="xml" type="cvs">
  -  <title>Jakarta</title>
  +  <title>XML</title>
     <home-page>http://xml.apache.org/</home-page>
     <cvsweb>http://cvs.apache.org/viewcvs/</cvsweb>
   
  
  
  
  1.56      +1 -1      jakarta-alexandria/proposal/gump/stylesheet/bash.xsl
  
  Index: bash.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/bash.xsl,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- bash.xsl  2001/10/11 17:17:55     1.55
  +++ bash.xsl  2001/10/12 09:58:55     1.56
  @@ -638,7 +638,7 @@
       </xsl:if>
     </xsl:template>
   
  -  <xsl:template match="a[count(*)=0]">
  +  <xsl:template match="a[count(*)=0 and count(@*)=1]">
       <xsl:text>eval "echo \&lt;a href=\"</xsl:text>
       <xsl:value-of select="@href"/>
       <xsl:text>\"\&gt;</xsl:text>
  
  
  
  1.40      +1 -0      jakarta-alexandria/proposal/gump/stylesheet/build.xsl
  
  Index: build.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/build.xsl,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- build.xsl 2001/10/11 17:17:55     1.39
  +++ build.xsl 2001/10/12 09:58:55     1.40
  @@ -76,6 +76,7 @@
             <xsl:text>Workspace: </xsl:text>
             <a href="workspace.html">definition</a>
             <a href="xref.html">cross reference</a>
  +          <a href="modxref.html">modules</a>
             <a href="cvs_index.html">cvs logs</a>
           </menu>
   
  
  
  
  1.11      +47 -0     jakarta-alexandria/proposal/gump/stylesheet/jakarta.xsl
  
  Index: jakarta.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/jakarta.xsl,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- jakarta.xsl       2001/09/25 02:30:35     1.10
  +++ jakarta.xsl       2001/10/12 09:58:55     1.11
  @@ -31,10 +31,33 @@
               background-color: #525D76;
               color: #ffffff;
               font-weight: bold; }
  +          td.subtitle, a.subtitle:link, a.subtitle:visited {
  +            background-color: #828DA6;
  +            color: #ffffff;
  +            text-decoration: none;
  +            font-weight: bold; 
  +            font-family: arial, helvetica, sanserif }
             td.note {
               background-color: #B1B7C1;
               color: #000000;
               font-family: arial, helvetica, sanserif }
  +          table.content {
  +            border: 0;
  +            font-family: arial, helvetica, sanserif }
  +          th.content {
  +            margin: 0;
  +            padding: 2;
  +            color: #000000;
  +            background-color: #039acc;
  +            text-align: left;
  +            font-weight: bold; 
  +            font-family: arial, helvetica, sanserif }
  +          td.content {
  +            margin: 0;
  +            padding: 2;
  +            color: #000000;
  +            background-color: #a0ddf0;
  +            font-family: arial, helvetica, sanserif }
             td.fail {
               background-color: red;
               font-weight: bold; }
  @@ -117,4 +140,28 @@
   
       </html>
     </xsl:template>
  +
  +
  +  <xsl:template match="subsection">
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr>
  +        <td class="subtitle">
  +          <xsl:value-of select="@name"/>
  +        </td>
  +      </tr>
  +      <tr>
  +        <td>
  +          <blockquote>
  +            <xsl:apply-templates/>
  +          </blockquote>
  +        </td>
  +      </tr>
  +      <tr>
  +        <td>
  +          <br/>
  +        </td>
  +      </tr>
  +    </table>
  +  </xsl:template>
  +
   </xsl:stylesheet>
  
  
  
  1.14      +7 -1      jakarta-alexandria/proposal/gump/stylesheet/update.xsl
  
  Index: update.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/update.xsl,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- update.xsl        2001/10/06 21:22:16     1.13
  +++ update.xsl        2001/10/12 09:58:55     1.14
  @@ -45,7 +45,13 @@
             </ul>
           </sidebar>
   
  -        <menu/>
  +        <menu>
  +          <xsl:text>Workspace: </xsl:text>
  +          <a href="workspace.html">definition</a>
  +          <a href="xref.html">cross reference</a>
  +          <a href="modxref.html">modules</a>
  +          <a href="index.html">build logs</a>
  +        </menu>
   
           <content>
   
  
  
  
  1.26      +1 -1      jakarta-alexandria/proposal/gump/stylesheet/win2k.xsl
  
  Index: win2k.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/win2k.xsl,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- win2k.xsl 2001/10/11 17:17:55     1.25
  +++ win2k.xsl 2001/10/12 09:58:55     1.26
  @@ -570,7 +570,7 @@
       </xsl:if>
     </xsl:template>
   
  -  <xsl:template match="a[count(*)=0]">
  +  <xsl:template match="a[count(*)=0 and count(@*)=1]">
       <xsl:text>echo ^&lt;a href="</xsl:text>
       <xsl:value-of select="@href"/>
       <xsl:text>"^&gt;</xsl:text>
  
  
  

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

Reply via email to