You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by di...@apache.org on 2001/04/12 14:55:11 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/components/language/markup/xsp/java xsp.xsl

dims        01/04/12 05:55:11

  Modified:    src/org/apache/cocoon/components/language/markup/xsp/java
                        Tag: xml-cocoon2 xsp.xsl
  Log:
  Comment extra calls to startPrefixMapping and endPrefixMapping.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.24  +10 -1     xml-cocoon/src/org/apache/cocoon/components/language/markup/xsp/java/Attic/xsp.xsl
  
  Index: xsp.xsl
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/components/language/markup/xsp/java/Attic/xsp.xsl,v
  retrieving revision 1.1.2.23
  retrieving revision 1.1.2.24
  diff -u -r1.1.2.23 -r1.1.2.24
  --- xsp.xsl	2001/03/21 18:51:15	1.1.2.23
  +++ xsp.xsl	2001/04/12 12:55:10	1.1.2.24
  @@ -11,7 +11,7 @@
   
   <!--
    * @author <a href="mailto:ricardo@apache.org>Ricardo Rocha</a>
  - * @version CVS $Revision: 1.1.2.23 $ $Date: 2001/03/21 18:51:15 $
  + * @version CVS $Revision: 1.1.2.24 $ $Date: 2001/04/12 12:55:10 $
   -->
   
   <!-- XSP Core logicsheet for the Java language -->
  @@ -168,12 +168,14 @@
         </xsl:choose>
       </xsl:variable>
   
  +    <!-- FIXME (DIMS): Is this required? This causes of extra calls to startPrefixMapping.
       <xsl:for-each select="namespace::*">
         this.contentHandler.startPrefixMapping(
           "<xsl:value-of select="local-name(.)"/>",
           "<xsl:value-of select="."/>"
         );
       </xsl:for-each>
  +    -->
   
       <xsl:apply-templates select="xsp:attribute"/>
   
  @@ -194,11 +196,14 @@
         <xsl:copy-of select="$raw-name"/>
       );
   
  +    <!-- FIXME (DIMS): Is this required? This causes of extra calls to endPrefixMapping.
       <xsl:for-each select="namespace::*">
         this.contentHandler.endPrefixMapping(
           "<xsl:value-of select="local-name(.)"/>"
         );
       </xsl:for-each>
  +    -->
  +
     </xsl:template>
   
     <xsl:template match="xsp:attribute">
  @@ -327,12 +332,14 @@
   
   
     <xsl:template match="*[not(starts-with(name(.), 'xsp:'))]">
  +    <!-- FIXME (DIMS): Is this required? This causes of extra calls to startPrefixMapping.
       <xsl:for-each select="namespace::*">
         this.contentHandler.startPrefixMapping(
           "<xsl:value-of select="local-name(.)"/>",
           "<xsl:value-of select="."/>"
         );
       </xsl:for-each>
  +    -->
   
       <xsl:apply-templates select="@*"/>
   
  @@ -355,11 +362,13 @@
         "<xsl:value-of select="name(.)"/>"
       );
   
  +    <!-- FIXME (DIMS): Is this required? This causes of extra calls to endPrefixMapping.
       <xsl:for-each select="namespace::*">
         this.contentHandler.endPrefixMapping(
           "<xsl:value-of select="local-name(.)"/>"
         );
       </xsl:for-each>
  +    -->
     </xsl:template>
   
     <xsl:template match="@*">
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org