rubys       01/10/08 08:49:27

  Modified:    proposal/gump/stylesheet bash.xsl build.xsl win2k.xsl
  Log:
  Permit successive "build clean" requests
  
  Revision  Changes    Path
  1.47      +5 -0      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.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- bash.xsl  2001/10/08 15:13:19     1.46
  +++ bash.xsl  2001/10/08 15:49:27     1.47
  @@ -446,6 +446,11 @@
     <!-- =================================================================== -->
   
     <xsl:template match="move">
  +    <xsl:if test="not(@quiet)">
  +      <xsl:text>test -d </xsl:text>
  +      <xsl:value-of select="translate(@file,'\','/')"/>
  +      <xsl:text> || </xsl:text>
  +    </xsl:if>
       <xsl:text>mv </xsl:text>
       <xsl:value-of select="translate(@file,'\','/')"/>
       <xsl:text> </xsl:text>
  
  
  
  1.35      +1 -1      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.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- build.xsl 2001/10/08 15:18:16     1.34
  +++ build.xsl 2001/10/08 15:49:27     1.35
  @@ -33,7 +33,7 @@
           <logic name="clean">
             <mkdir dir="trashbin"/>
             <xsl:for-each select="module[cvs]">
  -            <move file="{@srcdir}" todir="trashbin"/>
  +            <move file="{@srcdir}" todir="trashbin" quiet="true"/>
             </xsl:for-each>
             <delete dir="trashbin"/>
           </logic>
  
  
  
  1.20      +5 -0      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.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- win2k.xsl 2001/10/08 15:13:19     1.19
  +++ win2k.xsl 2001/10/08 15:49:27     1.20
  @@ -401,6 +401,11 @@
     <!-- =================================================================== -->
   
     <xsl:template match="move">
  +    <xsl:if test="not(@quiet)">
  +      <xsl:text>if not exist </xsl:text>
  +      <xsl:value-of select="translate(@file,'/','\')"/>
  +      <xsl:text> </xsl:text>
  +    </xsl:if>
       <xsl:text>move </xsl:text>
       <xsl:value-of select="translate(@file,'/','\')"/>
       <xsl:text> </xsl:text>
  
  
  

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

Reply via email to