dleslie     01/07/18 08:34:02

  Modified:    java/xdocs/sources/xalan index.xml readme.xml
                        xsltc_constraints.xml
  Log:
  2.2.D7
  
  Revision  Changes    Path
  1.30      +2 -1      xml-xalan/java/xdocs/sources/xalan/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/index.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- index.xml 2001/07/17 14:28:22     1.29
  +++ index.xml 2001/07/18 15:34:02     1.30
  @@ -71,7 +71,8 @@
        <note>&xslt4c; version 1 is no longer supported and no longer available 
from xml.apache.org.</note>
     </s2>
     <s2 title="How about this release?">
  -  <p>&xslt4j-current; is a production release. To improve performance, it 
uses the Document Table Model (<link idref="dtm">DTM</link>) to represent the 
XML source document to be transformed. Please send your feedback to the 
<human-resource-ref idref="xalandev"/>.</p>
  +  <p>&xslt4j-current; is a Developer release. To improve performance, it 
uses the Document Table Model (<link idref="dtm">DTM</link>) to represent the 
XML source document to be transformed. Please send your feedback to the 
<human-resource-ref idref="xalandev"/>.</p>
  +<note>A later Developer release has been posted in the <resource-ref 
idref="xslt4j-distdir"/>. For the changes that have occurred since 
&xslt4j-current;, consult the [EMAIL PROTECTED] mailing list, or download the 
release and consult the release notes.</note>
     </s2> 
     <s2 title="How do I get it?">
       <p>Download and unzip either of the following:</p>
  
  
  
  1.45      +1 -1      xml-xalan/java/xdocs/sources/xalan/readme.xml
  
  Index: readme.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/readme.xml,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- readme.xml        2001/07/11 19:29:58     1.44
  +++ readme.xml        2001/07/18 15:34:02     1.45
  @@ -79,7 +79,7 @@
      </ul>
        <anchor name="done"/>
        <s3 title="Changes since &xslt4j; 2.2.D6">
  -     <p>&xslt4j-current; is a production release. For enhanced performance, 
it incorporates the 
  +     <p>&xslt4j-current; is a Developer release. For enhanced performance, 
it incorporates the 
        <link idref="dtm">DTM</link>.</p>
        &done-j;
        </s3>
  
  
  
  1.10      +65 -1     xml-xalan/java/xdocs/sources/xalan/xsltc_constraints.xml
  
  Index: xsltc_constraints.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/xsltc_constraints.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- xsltc_constraints.xml     2001/07/11 20:43:59     1.9
  +++ xsltc_constraints.xml     2001/07/18 15:34:02     1.10
  @@ -64,7 +64,71 @@
    PR: n/a
    Obtained from: n/a
    Submitted by: Erwin Bolwidt &lt;[EMAIL PROTECTED]&gt;
  - Reviewed by: Morten Jorgensen &lt;[EMAIL PROTECTED]&gt;<br/><br/></li></ul>
  + Reviewed by: Morten Jorgensen &lt;[EMAIL 
PROTECTED]&gt;<br/><br/></li><li><ref>Committed by </ref>[EMAIL PROTECTED]<ref> 
on </ref>07/12/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/compiler Parser.java
  + SyntaxTreeNode.java XSLTC.java<br/><ref>Committer's log entry: 
</ref>Cleaned up the XSLTC compiler class in an attempt to make it more 
flexible.
  + This class was originally written as a command-line interface, but it has
  + now grown huge and messy. I separated the command-line stuff from the
  + methods that make up the actual functionality and made some methods public.
  + This is part of the preparation for our new implementation of the JAXP
  + Templates object.
  + PR: n/a
  + Obtained from: n.a
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/12/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/runtime DefaultRun.java<br/><ref>Added: 
</ref>java/src/org/apache/xalan/xsltc/cmdline Compile.java
  + Transform.java<br/><ref>Committer's log entry: </ref>Extracted the 
command-line stuff from the core XSLTC packages. The command-
  + line handling is now in xalan.xsltc.cmdline.Compile and
  + xalan.xsltc.cmdline.Transform. The command-line stuff is still left in
  + xalan.xsltc.compiler.XSLTC and xalan.xsltc.runtime.DefaultRun for backwards
  + compatability. This should be removed shortly.
  + PR: n/a
  + Obtained from: n/a
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/12/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/cmdline Compile.java
  + java/src/org/apache/xalan/xsltc/compiler XSLTC.java<br/><ref>Added: 
</ref>java/src/org/apache/xalan/xsltc/cmdline/getopt GetOpt.java
  + GetOptsException.java IllegalArgumentException.java
  + MissingOptArgException.java
  + java/src/org/apache/xalan/xsltc/trax TemplatesImpl.java
  + TransformerImpl.java<br/><ref>Removed: 
</ref>java/src/org/apache/xalan/xsltc/util/getopt GetOpt.java
  + GetOptsException.java IllegalArgumentException.java
  + MissingOptArgException.java<br/><ref>Committer's log entry: </ref>Moved the 
org.apache.xalan.xsltc.util.getopt package to
  + org.apache.xalan.xsltc.cmdline.getopt. Also added some skeleton
  + code in a new org.apache.xalan.xsltc.trax directory.
  + PR: n/a
  + Obtained from: n/a
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/12/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/trax 
TransletTemplates.java<br/><ref>Committer's log entry: </ref>minor adjustment
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/12/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/trax
  + TransformerFactoryImpl.java<br/><ref>Committer's log entry: </ref>removed 
obselete try/catch<br/><br/></li><li><ref>Committed by </ref>[EMAIL 
PROTECTED]<ref> on </ref>07/12/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/compiler XSLTC.java
  + java/src/org/apache/xalan/xsltc/runtime
  + AbstractTranslet.java
  + java/src/org/apache/xalan/xsltc/trax TemplatesImpl.java
  + TransformerFactoryImpl.java TransformerImpl.java<br/><ref>Removed: 
</ref>java/src/org/apache/xalan/xsltc/trax 
TransletTemplates.java<br/><ref>Committer's log entry: </ref>A first stab at 
our new TrAX design.`
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/13/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/compiler XSLTC.java
  + java/src/org/apache/xalan/xsltc/trax TemplatesImpl.java
  + TransformerFactoryImpl.java TransformerImpl.java<br/><ref>Committer's log 
entry: </ref>A few minor adjustments to yesterdays JAXP/TrAX implementation. 
These is one
  + change in the way the compiler (XSLTC) generates bytecode arrays, and the
  + rest is basically a cleanup of error reporting and a few added comments.
  + PR: n/a
  + Obtained from: n/a
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/16/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/dom DocumentCache.java<br/><ref>Added: 
</ref>java/src/org/apache/xalan/xsltc/trax 
OutputSettings.java<br/><ref>Committer's log entry: </ref>Reduced the refresh 
rate of the DocumentCache to 1 second.
  + PR: n/a
  + Obtained from: n/a
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/17/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/dom 
DocumentCache.java<br/><ref>Committer's log entry: </ref>Submitted by: Tom Amiro
  + Fixes bug 1591. Changed the lastModified() method to return
  + the correct timestamp for local files beginnig with the "file:"
  + protocol. Incorporated Brian Ewin's suggestion to use URLdecode.
  + Todd Miller and Morten Jorgensen<br/><br/></li><li><ref>Committed by 
</ref>[EMAIL PROTECTED]<ref> on </ref>07/17/2001<br/><ref>Modified: 
</ref>java/src/org/apache/xalan/xsltc/dom DOMImpl.java
  + java/src/org/apache/xalan/xsltc/trax TemplatesImpl.java
  + TransformerFactoryImpl.java TransformerImpl.java<br/><ref>Committer's log 
entry: </ref>Added some javadoc comments to our trax stuff. Added preliminary 
support
  + for getting/setting output properties, and for getting/setting URL 
resolvers.
  + PR: n/a
  + Obtained from: n/a
  + Submitted by: [EMAIL PROTECTED]
  + Reviewed by: [EMAIL PROTECTED]<br/><br/></li></ul>
   </s3>
   <anchor name="xsltcconf"/>
   <s3 title="XSLT 1.0 Conformance and Extensions">
  
  
  

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

Reply via email to