upayavira | 1 Feb 2004 08:37
Picon
Favicon

cvs commit: cocoon-2.1/src/documentation/xdocs/userdocs/selectors selectors.xml

upayavira    2004/01/31 23:37:17

  Modified:    src/documentation/xdocs/userdocs/selectors selectors.xml
  Log:
  Fixing bug 26572 (an easy one for me!)

  Revision  Changes    Path
  1.4       +1 -1      cocoon-2.1/src/documentation/xdocs/userdocs/selectors/selectors.xml

  Index: selectors.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/documentation/xdocs/userdocs/selectors/selectors.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- selectors.xml	12 Oct 2003 13:04:51 -0000	1.3
  +++ selectors.xml	1 Feb 2004 07:37:17 -0000	1.4
   <at>  <at>  -42,7 +42,7  <at>  <at> 
         statements. By extension, consider selectors to have all
         the power of an &quot;if-else if-else&quot; or &quot;switch-case&quot; constructs.
         The selector syntax should be familiar to anyone who
  -      uses XSLT's <code>&lt;xsl:test&gt;</code> statement.
  +      uses XSLT's <code>&lt;xsl:choose&gt;</code> statement.
         </p>
         <p>
         As an example, consider the typical scenario in which a page should

antonio | 1 Feb 2004 13:03
Picon
Favicon

cvs commit: cocoon-2.1/src/documentation/xdocs/userdocs/flow sitemap.xml

antonio     2004/02/01 04:03:31

  Modified:    src/documentation/xdocs/userdocs/flow sitemap.xml
  Log:
  Fixing typo

  Revision  Changes    Path
  1.19      +1 -1      cocoon-2.1/src/documentation/xdocs/userdocs/flow/sitemap.xml

  Index: sitemap.xml
  ===================================================================
  RCS file: /home/cvs//cocoon-2.1/src/documentation/xdocs/userdocs/flow/sitemap.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- sitemap.xml	12 Oct 2003 13:04:48 -0000	1.18
  +++ sitemap.xml	1 Feb 2004 12:03:31 -0000	1.19
   <at>  <at>  -17,7 +17,7  <at>  <at> 
        <p>The <code>flow</code> element defines a Flowscript interpreter for a sitemap. The
<code>language</code> attribute specifies the target programming language. Currently the only
supported language is <code>"javascript"</code>. Its embedded <code>script</code> elements allow
you to specify the files that make up the flow for this sitemap. Each <code>script</code> element
specifies the URI of a script that will be compiled and executed when this Sitemap is created. The
<code>src</code> attribute specifies the URI of the script.</p>
         <source><![CDATA[
           <map:flow language="Language">
  -           <map:script src="URI"/>+
  +           <map:script src="URI"/>
           </map:flow>
         ]]></source>
(Continue reading)

coliver | 1 Feb 2004 20:32
Picon
Favicon

cvs commit: cocoon-2.1/src/java/org/apache/cocoon/generation JXTemplateGenerator.java

coliver     2004/02/01 11:32:33

  Modified:    src/java/org/apache/cocoon/generation
                        JXTemplateGenerator.java
  Log:
  Fixed typo in error message and added fix for bugzilla 26086

  Revision  Changes    Path
  1.35      +11 -13    cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java

  Index: JXTemplateGenerator.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/generation/JXTemplateGenerator.java,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- JXTemplateGenerator.java	31 Jan 2004 15:57:32 -0000	1.34
  +++ JXTemplateGenerator.java	1 Feb 2004 19:32:33 -0000	1.35
   <at>  <at>  -382,14 +382,14  <at>  <at> 
           };

       private static final Iterator NULL_ITER = new Iterator() {
  -        public boolean hasNext() {
  -            return true;
  -        }
  -        public Object next() {
  -            return null;
  -        }
  -        public void remove() {
  -        }
(Continue reading)

giacomo | 1 Feb 2004 22:34
Picon
Favicon

cvs commit: cocoon-2.1/src/blocks/ojb/java/org/apache/cocoon/ojb/components - New directory

giacomo     2004/02/01 13:34:35

  cocoon-2.1/src/blocks/ojb/java/org/apache/cocoon/ojb/components - New directory

giacomo | 1 Feb 2004 22:34
Picon
Favicon

cvs commit: cocoon-2.1/src/blocks/ojb/samples/odmg - New directory

giacomo     2004/02/01 13:34:35

  cocoon-2.1/src/blocks/ojb/samples/odmg - New directory

giacomo | 1 Feb 2004 22:34
Picon
Favicon

cvs commit: cocoon-2.1/src/blocks/ojb/samples/odmg/xsp - New directory

giacomo     2004/02/01 13:34:50

  cocoon-2.1/src/blocks/ojb/samples/odmg/xsp - New directory

giacomo | 1 Feb 2004 22:37
Picon
Favicon

cvs commit: cocoon-2.1/src/blocks/ojb/samples sitemap.xmap welcome.xml

giacomo     2004/02/01 13:37:30

  Modified:    .        blocks.properties gump.xml status.xml
               src/blocks/ojb/WEB-INF/classes OJB.properties repository.xml
               src/blocks/ojb/java/org/apache/cocoon/ojb/jdo/components
                        JdoPMFImpl.java
               src/blocks/ojb/java/org/apache/cocoon/ojb/odmg/components
                        OdmgImplementationImpl.java
               src/blocks/ojb/samples sitemap.xmap welcome.xml
  Added:       src/blocks/ojb/java/org/apache/cocoon/ojb/components
                        AbstractOjbImpl.java
                        ConnectionFactoryAvalonDataSource.java
               src/blocks/ojb/samples/odmg/xsp demo1.xsp
  Log:
  OJB-Block: Added our own OJB ConnectionFactory which uses the DataSources configured in cocoon.xconf

  Revision  Changes    Path
  1.1                  cocoon-2.1/src/blocks/ojb/java/org/apache/cocoon/ojb/components/AbstractOjbImpl.java

  Index: AbstractOjbImpl.java
  ===================================================================
  /*

     ============================================================================
                       The Apache Software License, Version 1.1
     ============================================================================
     Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.

     Redistribution and use in source and binary forms, with or without modifica-
     tion, are permitted provided that the following conditions are met:
(Continue reading)

gregor | 2 Feb 2004 00:26
Picon
Favicon

cvs commit: cocoon-site/site/lenya index.html

gregor      2004/02/01 15:26:15

  Modified:    site/lenya index.html
  Log:
  new lenya release

  Revision  Changes    Path
  1.10      +1 -2      cocoon-site/site/lenya/index.html

  Index: index.html
  ===================================================================
  RCS file: /home/cvs/cocoon-site/site/lenya/index.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- index.html	30 Jan 2004 17:39:27 -0000	1.9
  +++ index.html	1 Feb 2004 23:26:15 -0000	1.10
   <at>  <at>  -201,8 +201,7  <at>  <at> 
   Thank you very much for your suggestions and contributions.
   </p>
   		
  -<a name="N101ED"></a><a name="+%2827+May+2003%29"></a>
  -<h3>Lenya 1.2 RC 1 Released (11 December 2003)</h3>
  +<h3>Lenya 1.2 RC 2 Released (1 Februar 2004)</h3>
   <div style="margin-left: 0 ; border: 2px">
   <ul>
   				

gregor | 2 Feb 2004 00:28
Picon
Favicon

cvs commit: cocoon-site/site/lenya index.html

gregor      2004/02/01 15:28:10

  Modified:    site/lenya index.html
  Log:
  speling

  Revision  Changes    Path
  1.11      +1 -1      cocoon-site/site/lenya/index.html

  Index: index.html
  ===================================================================
  RCS file: /home/cvs/cocoon-site/site/lenya/index.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- index.html	1 Feb 2004 23:26:15 -0000	1.10
  +++ index.html	1 Feb 2004 23:28:10 -0000	1.11
   <at>  <at>  -201,7 +201,7  <at>  <at> 
   Thank you very much for your suggestions and contributions.
   </p>
   		
  -<h3>Lenya 1.2 RC 2 Released (1 Februar 2004)</h3>
  +<h3>Lenya 1.2 RC 2 Released (February 1, 2004)</h3>
   <div style="margin-left: 0 ; border: 2px">
   <ul>
   				

cziegeler | 2 Feb 2004 09:34
Picon
Favicon

cvs commit: cocoon-2.1/src/documentation/xdocs/plan release.xml

cziegeler    2004/02/02 00:34:59

  Modified:    src/documentation/xdocs/plan release.xml
  Log:
  Update release plan

  Revision  Changes    Path
  1.9       +4 -4      cocoon-2.1/src/documentation/xdocs/plan/release.xml

  Index: release.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/documentation/xdocs/plan/release.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- release.xml	14 Nov 2003 09:42:23 -0000	1.8
  +++ release.xml	2 Feb 2004 08:34:59 -0000	1.9
   <at>  <at>  -19,9 +19,9  <at>  <at> 
    <s1 title="Timeframe">
     <p>This is the current time frame for the next releases:</p>
     <ul>
  -   <li>December 03/January 04 : 2.1.4 (maintainance release)</li>
  -   <li>Not schedulded yet     : 2.2 Milestone 1</li>
  -   <li>On request             : 2.0.5 (maintainance release)</li>
  +   <li>2004/02/12         : 2.1.4 (maintainance release)</li>
  +   <li>Not schedulded yet : 2.2 Milestone 1</li>
  +   <li>On request         : 2.0.5 (maintainance release)</li>
     </ul>
    </s1>

(Continue reading)


Gmane