cziegeler    01/06/20 06:19:28

  Modified:    .        changes.xml
               src/org/apache/cocoon cocoon.roles
               webapp   cocoon.xconf
  Added:       src/org/apache/cocoon/components/saxconnector
                        LoggingSAXConnector.java
  Removed:     src/org/apache/cocoon/components/saxconnector
                        CIncludeSAXConnector.java XIncludeSAXConnector.java
  Log:
  Removed the X/CIncludeSAXConnectors and added a LoggingSAXConnector as an example
  
  Revision  Changes    Path
  1.14      +4 -1      xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- changes.xml       2001/06/19 13:47:21     1.13
  +++ changes.xml       2001/06/20 13:18:56     1.14
  @@ -4,7 +4,7 @@
   
   <!--
     History of Cocoon changes
  -  $Id: changes.xml,v 1.13 2001/06/19 13:47:21 cziegeler Exp $
  +  $Id: changes.xml,v 1.14 2001/06/20 13:18:56 cziegeler Exp $
   -->
   
   <changes title="History of Changes">
  @@ -24,6 +24,9 @@
    </devs>
   
    <release version="2.1-dev" date="@date@">
  +  <action dev="CZ" type="add">
  +    Removed XInclude/CIncludeSAXConnectors and added LoggingSAXConnector.
  +  </action>
     <action dev="CZ" type="add">
       Added CIncludeTransformer.
     </action>
  
  
  
  1.10      +4 -0      xml-cocoon2/src/org/apache/cocoon/cocoon.roles
  
  Index: cocoon.roles
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/org/apache/cocoon/cocoon.roles,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- cocoon.roles      2001/06/19 19:56:27     1.9
  +++ cocoon.roles      2001/06/20 13:19:05     1.10
  @@ -70,4 +70,8 @@
          shorthand="stream-cache"
          default-class="org.apache.cocoon.caching.StreamMemoryCache"/>
   
  + <role name="org.apache.cocoon.components.saxconnector.SAXConnector"
  +       shorthand="sax-connector"
  +       default-class="org.apache.cocoon.components.saxconnector.NullSAXConnector"/>
  +
   </role-list>
  
  
  
  1.2       +193 -0    
xml-cocoon2/src/org/apache/cocoon/components/saxconnector/LoggingSAXConnector.java
  
  
  
  
  1.11      +13 -0     xml-cocoon2/webapp/cocoon.xconf
  
  Index: cocoon.xconf
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/webapp/cocoon.xconf,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- cocoon.xconf      2001/06/18 20:51:58     1.10
  +++ cocoon.xconf      2001/06/20 13:19:25     1.11
  @@ -169,6 +169,11 @@
     <!-- this component is used as a PoolController for the sitemap component pools  
-->
     <pool-controller 
class="org.apache.avalon.excalibur.component.DefaultComponentPoolController"/>
   
  +  <!-- A StreamPipeline either
  +       collects a Reader and let it produce a character stream
  +       or connects a EventPipeline with a
  +       Serializer and let them produce the character stream.
  +  -->
     <stream-pipeline 
class="org.apache.cocoon.components.pipeline.CachingStreamPipeline"/>
   
     <!-- Caching of stream pipeline:
  @@ -197,6 +202,9 @@
        <parameter name="threadpriority" value="5"/>
     </stream-cache>
   
  +  <!-- An EventPipeline connects the generator and the various transformers
  +       and produces a character stream.
  +  -->
     <event-pipeline 
class="org.apache.cocoon.components.pipeline.CachingEventPipeline"/>
   
     <!-- Caching of event pipeline:
  @@ -225,6 +233,11 @@
        <parameter name="threadpriority" value="5"/>
     </event-cache>
   
  +  <!-- The SAXConnector connects the various pipeline components. 
  +       Uncomment the following line for using the SAXConnector.
  +  <sax-connector 
class="org.apache.cocoon.components.saxconnector.LoggingSAXConnector"/>
  +  -->
  + 
   <!-- ======================== The sitemap  ============================== -->
   
     <!-- The reloading of the sitemap:
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to