cziegeler    01/06/20 06:17:07

  Modified:    .        Tag: cocoon_20_branch changes.xml
               src/org/apache/cocoon Tag: cocoon_20_branch cocoon.roles
               webapp   Tag: cocoon_20_branch cocoon.xconf
  Added:       src/org/apache/cocoon/components/saxconnector Tag:
                        cocoon_20_branch LoggingSAXConnector.java
  Removed:     src/org/apache/cocoon/components/saxconnector Tag:
                        cocoon_20_branch CIncludeSAXConnector.java
                        XIncludeSAXConnector.java
  Log:
  Removed the X/CIncludeSAXConnectors and added a LoggingSAXConnector as an example
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.13  +4 -1      xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.2.2.12
  retrieving revision 1.2.2.13
  diff -u -r1.2.2.12 -r1.2.2.13
  --- changes.xml       2001/06/19 13:47:00     1.2.2.12
  +++ changes.xml       2001/06/20 13:16:29     1.2.2.13
  @@ -4,7 +4,7 @@
   
   <!--
     History of Cocoon changes
  -  $Id: changes.xml,v 1.2.2.12 2001/06/19 13:47:00 cziegeler Exp $
  +  $Id: changes.xml,v 1.2.2.13 2001/06/20 13:16:29 cziegeler Exp $
   -->
   
   <changes title="History of Changes">
  @@ -24,6 +24,9 @@
    </devs>
   
    <release version="2.0b1-dev" date="@date@">
  +  <action dev="CZ" type="add">
  +    Removed XInclude/CIncludeSAXConnectors and added LoggingSAXConnector.
  +  </action>
     <action dev="CZ" type="add">
       Added CIncludeTransformer.
     </action>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.6.2.6   +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.6.2.5
  retrieving revision 1.6.2.6
  diff -u -r1.6.2.5 -r1.6.2.6
  --- cocoon.roles      2001/06/19 19:55:07     1.6.2.5
  +++ cocoon.roles      2001/06/20 13:16:40     1.6.2.6
  @@ -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>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +193 -0    
xml-cocoon2/src/org/apache/cocoon/components/saxconnector/Attic/LoggingSAXConnector.java
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.7.2.4   +13 -0     xml-cocoon2/webapp/cocoon.xconf
  
  Index: cocoon.xconf
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/webapp/cocoon.xconf,v
  retrieving revision 1.7.2.3
  retrieving revision 1.7.2.4
  diff -u -r1.7.2.3 -r1.7.2.4
  --- cocoon.xconf      2001/06/18 20:51:28     1.7.2.3
  +++ cocoon.xconf      2001/06/20 13:17:01     1.7.2.4
  @@ -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