cvs commit: xml-cocoon2 changes.xml

2003-03-07 Thread tcurdt
tcurdt  2003/03/07 00:08:14

  Modified:.changes.xml
  Log:
  added Pervasive support
  
  Revision  ChangesPath
  1.363 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.362
  retrieving revision 1.363
  diff -u -r1.362 -r1.363
  --- changes.xml   5 Mar 2003 19:42:52 -   1.362
  +++ changes.xml   7 Mar 2003 08:08:13 -   1.363
  @@ -41,6 +41,9 @@

   

  +  
  +   Added support for Pervasive db to ESQL.
  +  
 
  Changed category for Log logicsheets.
 
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-03-03 Thread gianugo
gianugo 2003/03/03 14:44:10

  Modified:src/blocks/html/java/org/apache/cocoon/generation
HTMLGenerator.java
   src/documentation/xdocs/userdocs/generators
html-generator.xml
   .changes.xml
  Log:
  Extended the HTMLGenerator so that it can handle HTML snippets
  provided as request parameter or as POST data, passing them through
  Tidy to ensure well-formedness.
  
  Revision  ChangesPath
  1.6   +89 -24
xml-cocoon2/src/blocks/html/java/org/apache/cocoon/generation/HTMLGenerator.java
  
  Index: HTMLGenerator.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/blocks/html/java/org/apache/cocoon/generation/HTMLGenerator.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- HTMLGenerator.java27 Feb 2003 22:25:19 -  1.5
  +++ HTMLGenerator.java3 Mar 2003 22:44:10 -   1.6
  @@ -50,7 +50,22 @@
   */
   package org.apache.cocoon.generation;
   
  -import org.apache.excalibur.xml.xpath.XPathProcessor;
  +import java.io.BufferedInputStream;
  +import java.io.ByteArrayInputStream;
  +import java.io.IOException;
  +import java.io.InputStream;
  +import java.io.PrintWriter;
  +import java.io.StringWriter;
  +import java.util.Map;
  +import java.util.Properties;
  +
  +import javax.servlet.http.HttpServletRequest;
  +import javax.xml.transform.OutputKeys;
  +import javax.xml.transform.Transformer;
  +import javax.xml.transform.TransformerFactory;
  +import javax.xml.transform.dom.DOMSource;
  +import javax.xml.transform.sax.SAXResult;
  +
   import org.apache.avalon.framework.activity.Disposable;
   import org.apache.avalon.framework.component.Component;
   import org.apache.avalon.framework.component.ComponentException;
  @@ -64,44 +79,40 @@
   import org.apache.cocoon.caching.CacheableProcessingComponent;
   import org.apache.cocoon.components.source.SourceUtil;
   import org.apache.cocoon.components.url.URLFactory;
  -import org.apache.cocoon.environment.ObjectModelHelper;
  -import org.apache.cocoon.environment.Request;
   import org.apache.cocoon.environment.SourceResolver;
   import org.apache.cocoon.environment.URLFactorySourceResolver;
  +import org.apache.cocoon.environment.http.HttpEnvironment;
  +import org.apache.cocoon.util.PostInputStream;
   import org.apache.cocoon.xml.XMLUtils;
   import org.apache.cocoon.xml.dom.DOMStreamer;
   import org.apache.excalibur.source.Source;
   import org.apache.excalibur.source.SourceException;
   import org.apache.excalibur.source.SourceValidity;
  +import org.apache.excalibur.xml.xpath.XPathProcessor;
   import org.w3c.dom.NodeList;
   import org.w3c.tidy.Tidy;
   import org.xml.sax.SAXException;
   
  -import javax.xml.transform.OutputKeys;
  -import javax.xml.transform.Transformer;
  -import javax.xml.transform.TransformerFactory;
  -import javax.xml.transform.dom.DOMSource;
  -import javax.xml.transform.sax.SAXResult;
  -
  -import java.io.BufferedInputStream;
  -import java.io.IOException;
  -import java.io.PrintWriter;
  -import java.io.StringWriter;
  -import java.util.Map;
  -import java.util.Properties;
  -
   /**
* @author mailto:[EMAIL PROTECTED]">Davanum Srinivas
* @author mailto:[EMAIL PROTECTED]">Carsten Ziegeler
* @author mailto:[EMAIL PROTECTED]">Nicola Ken Barozzi
  + * @author mailto:[EMAIL PROTECTED]">Gianugo Rabellino
  + *
* @version CVS $Id$
*/
   public class HTMLGenerator extends ComposerGenerator
   implements Configurable, CacheableProcessingComponent, Disposable {
  -
  -/** The  source */
  +
  +/** The parameter that specifies what request attribute to use, if any */
  +public static final String FORM_NAME = "form-name";
  +
  +/** The  source, if coming from a file */
   private Source inputSource;
  -
  +
  +/** The source, if coming from the request */
  +private InputStream requestStream;
  +
   /** XPATH expression */
   private String xpath = null;
   
  @@ -155,6 +166,7 @@
   if (this.inputSource != null) {
   this.resolver.release( this.inputSource );
   this.inputSource = null;
  +this.requestStream = null;
   }
   this.xpath = null;
   super.recycle();
  @@ -168,7 +180,48 @@
   throws ProcessingException, SAXException, IOException {
   super.setup(resolver, objectModel, src, par);
   
  -Request request = ObjectModelHelper.getRequest(objectModel);
  +HttpServletRequest request = (HttpServletRequest) 
objectModel.get(HttpEnvironment.HTTP_REQUEST_OBJECT);
  +
  +if (src == null) {
  +// Handle this request as the StreamGenerator does (from the POST
  +// request or from a request parameter), but try to make sure
  +// that the output will be well-formed
  +   
  +  

cvs commit: xml-cocoon2 changes.xml

2003-03-03 Thread cziegeler
cziegeler2003/03/03 02:14:08

  Modified:.changes.xml
  Log:
  Fixing bug and updating changes
  
  Revision  ChangesPath
  1.360 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.359
  retrieving revision 1.360
  diff -u -r1.359 -r1.360
  --- changes.xml   27 Feb 2003 02:44:49 -  1.359
  +++ changes.xml   3 Mar 2003 10:14:08 -   1.360
  @@ -41,6 +41,11 @@

   

  +  
  +   New caching cinclude transformer. The cinclude transformer can now cache
  +   the aggregated content for a distinct period of time. In addition it can
  +   fetch the content in parallel or pre-emptive.
  +  

  The repository for Cocoon 2.1 is now called "cocoon-2-historical" (the old  
  "xml-cocoon2" repository is deprecated). 
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-26 Thread pier
pier2003/02/26 11:56:03

  Modified:.changes.xml
  Log:
  My changes of the past few weeks.
  (Note to self, remember to update changes.xml everytime you do something).
  
  Revision  ChangesPath
  1.358 +12 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.357
  retrieving revision 1.358
  diff -u -r1.357 -r1.358
  --- changes.xml   26 Feb 2003 16:35:07 -  1.357
  +++ changes.xml   26 Feb 2003 19:56:02 -  1.358
  @@ -41,6 +41,17 @@

   

  +  
  +The "javadocs" build target now links offline to the appropriate JavaDOC
  +repositiories available on the web.
  +  
  +  
  +Added proxy generator block for remote HTTP-base generation of XML
  +(will deprecate the WSProxyGenerator).
  +  
  +  
  +Added subrequest processing via the sitemap to the Cocoon flow.
  +  
 
   Moved the asciiart stuff from the scratchpad into a block.
 
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-26 Thread stefano
stefano 2003/02/26 08:35:07

  Modified:.changes.xml
  Log:
  log changes
  
  Revision  ChangesPath
  1.357 +12 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.356
  retrieving revision 1.357
  diff -u -r1.356 -r1.357
  --- changes.xml   26 Feb 2003 09:16:56 -  1.356
  +++ changes.xml   26 Feb 2003 16:35:07 -  1.357
  @@ -41,6 +41,17 @@

   

  +  
  +Moved the asciiart stuff from the scratchpad into a block.
  +  
  +  
  +Moved the SendmailAction and the mail-related stuff from the scratchpad
  +into the mail block.
  +  
  +  
  +Removed the MaybeUploadRequestFactory since we have our own and the less
  +dependencies the better
  +  
 
   Moving core properties of the build system into a separate properties file.
 
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-26 Thread cziegeler
cziegeler2003/02/26 01:16:57

  Modified:.changes.xml
  Log:
  Updating changes
  
  Revision  ChangesPath
  1.356 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.355
  retrieving revision 1.356
  diff -u -r1.355 -r1.356
  --- changes.xml   24 Feb 2003 15:48:45 -  1.355
  +++ changes.xml   26 Feb 2003 09:16:56 -  1.356
  @@ -41,6 +41,9 @@

   

  +  
  +Moving core properties of the build system into a separate properties file.
  +  
 
   The "expires" pipeline parameter is honored even by the internal Cocoon
   cache, i.e. the caching algorithms are overridden if an expires
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-24 Thread gianugo
gianugo 2003/02/24 07:48:45

  Modified:.changes.xml
  Log:
  As usual, forgot to update the changes.xml :-)
  
  Revision  ChangesPath
  1.355 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.354
  retrieving revision 1.355
  diff -u -r1.354 -r1.355
  --- changes.xml   24 Feb 2003 00:36:48 -  1.354
  +++ changes.xml   24 Feb 2003 15:48:45 -  1.355
  @@ -41,6 +41,11 @@

   

  +  
  +The "expires" pipeline parameter is honored even by the internal Cocoon
  +cache, i.e. the caching algorithms are overridden if an expires
  +parameter is present and still fresh.
  +  
 
   Set "Last-Modified" header
 
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-23 Thread stefano
stefano 2003/02/23 08:46:35

  Modified:.changes.xml
  Log:
  no message
  
  Revision  ChangesPath
  1.352 +5 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.351
  retrieving revision 1.352
  diff -u -r1.351 -r1.352
  --- changes.xml   23 Feb 2003 15:48:31 -  1.351
  +++ changes.xml   23 Feb 2003 16:46:35 -  1.352
  @@ -41,9 +41,12 @@

   

  +  
  +Refactored the build system.
  +  
 
   Put the exceptions into esql namespace so the variable named "e" is still
  -available in XSP
  +available in XSP.
 
 
   Now i18n transformer has support for multiple catalogues and can now use
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-23 Thread tcurdt
tcurdt  2003/02/23 07:48:32

  Modified:.changes.xml
  Log:
  fixed bug #17261
  
  Revision  ChangesPath
  1.351 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.350
  retrieving revision 1.351
  diff -u -r1.350 -r1.351
  --- changes.xml   19 Feb 2003 07:27:33 -  1.350
  +++ changes.xml   23 Feb 2003 15:48:31 -  1.351
  @@ -41,6 +41,10 @@

   

  +  
  +Put the exceptions into esql namespace so the variable named "e" is still
  +available in XSP
  +  
 
   Now i18n transformer has support for multiple catalogues and can now use
   "input modules" in catalogue name and catalogue location. Fixed bug with
  
  
  


cvs commit: xml-cocoon2 changes.xml

2003-02-18 Thread crossley
crossley2003/02/18 23:27:33

  Modified:.changes.xml
  Log:
  i18n transformer support for multiple catalogues, "input modules" in
  catalogue name and catalogue location, and bugfixes.
  PR: 17127
  Submitted by: Bruno Dumon 
  
  Revision  ChangesPath
  1.350 +7 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.349
  retrieving revision 1.350
  diff -u -r1.349 -r1.350
  --- changes.xml   18 Feb 2003 14:25:24 -  1.349
  +++ changes.xml   19 Feb 2003 07:27:33 -  1.350
  @@ -41,6 +41,12 @@

   

  +  
  +Now i18n transformer has support for multiple catalogues and can now use
  +"input modules" in catalogue name and catalogue location. Fixed bug with
  +getting content for the translation key in certain circumstances. Fixed
  +bug with accidental removal of translation text in certain circumstances.
  +  
 
   Optional 'global' parameter on map:redirect-to when giving a URI.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2003-02-17 Thread proyal
proyal  2003/02/17 13:56:42

  Modified:.changes.xml
  Log:
  update with changes
  
  Revision  ChangesPath
  1.346 +152 -143  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.345
  retrieving revision 1.346
  diff -u -r1.345 -r1.346
  --- changes.xml   12 Feb 2003 03:15:54 -  1.345
  +++ changes.xml   17 Feb 2003 21:56:42 -  1.346
  @@ -12,7 +12,7 @@

 
 
  -   
  +  
 
 
 
  @@ -33,6 +33,7 @@
 
 
 
  +  
 
 
 
  @@ -40,25 +41,33 @@

   

  +  
  +Do not specify a default to the "class-loader" parameter in JavaLanguage
  +  
  +  
  +Add a NonStaticClassLoaderManager that does not keep internal static variables. 
Useful when
  +putting cocoon.jar outside the WEB-INF/lib directory and have multiple XSP 
pages of the same
  +name in multiple webapps
  +  
 
   Improve default exception handling behavior in CocoonServlet: show exception 
stacktrace
   only when log level is INFO or DEBUG, and add exception message to "Not Found" 
page.
  -   
  +  
 
   Use Environment.tryResetResponse() instead of HttpServletResponse.reset() in 
CocoonServlet
   to avoid IllegalStateException if response was already committed.
  -   
  +  
 
   Add support for Collection objects to the CastorTransformer.
   Upgrade to the SAX2 API, improve logging, and use SourceResolver to load 
mappings.
  -   
  +  
 
   Refactor Main class into two classes, Main and CocoonBean. CocoonBean provides 
simple
   programmatic interface to the Cocoon.
  -   
  +  
 
   Add image dimensions to the ImageReader's cache key.
  -   
  +  
 
   modular.DatabaseActions: added ability to store FileParts from uploads to
   "ascii", "clob", "blob", and "binary" columns. Added getSize() method to 
FilePart.
  @@ -66,7 +75,7 @@
 
   SAP R/3 connectivity components added.
  -   
  +  
 
   Moved block samples to own category, modified build system to merge
   .xsample files to block-samples.xml.
  @@ -77,7 +86,7 @@
 
   Updated to latest versions of excalibur sourceresolve and xmlutil.
 
  -  
   Patch IOUtils to recognize '..' in Path
 
  @@ -119,7 +128,7 @@
   ZipArchiveSerializer now accepts inline content for entries of the zip archive
   and not only source URLs.
 
  -  
  +  
   ImageReader extends now ResourceReader and therefor the
   "expire-time" parameter is now "expires". Also removed the
   setting of the byte range header for on-the-fly images.
  @@ -152,16 +161,16 @@
   Since Many classes are still a dependency for the core, while this is fixed
   the build process still copies them with the core during compilation.
   To compile with the deprecation separation, do "build -Ddeprecate=true".
  -
  +  
 
   Moved code to new blocks: profiler, velocity.
  -  
  +  
 
  -Update XML Serializer, HTML Serializer , and Text Serializer documentation, 
  +Update XML Serializer, HTML Serializer , and Text Serializer documentation,
   added XHTML Serializer documentation in the serializer user documentation 
section.
 
 
  -Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added 
  +Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added
   SVG TIFF documentation in the serializer user documentation section.
 

  +  
 
   Moved code to new blocks: html, php, lucene, bsf
  - 
  +  
 
   Now module.xml is named project.info.xml
  - 
  +  
 
  Extension to sendmail.xsp: lists for sendmail:cc
  @@ -206,55 +215,55 @@
 
 
   Make all "meta" modules ThreadSafe
  -
  +  
 
   Perform correct source resolution in XMLResourceBundle.
   Now i18n transformer can obtain dictionaries using any supported source (e.g. 
'cocoon:/').
 
 
   Added Greek translation, thanks to Stavros Kounis (gounis.at.osmosis.gr).
  -Corrected Armenian translation to be real Unicode and be 
  -readable without additional plug-ins (on Win).
  +Corrected Armenian translation to be real Unicode and be
  +readable without additional plug-ins (on Win).
 
 
  -Updated the XML:DB Source. Now it will accept, in cocoon.xconf, 
  +Updated the XML:DB Source. Now it will accept, in cocoon.xconf,
   optional authentication attributes, called "user" and "password".
 
 
   New transformer extracts fragments to documents and stores them using an
   OutputModule. Tags that start fragment are configurable.
  -
  +  
 
   New output module puts everything in a map in a request attribute.
  -
  +  
 
   AbstractJXPathModule / JXPathMetaModule default to lenient mode i.e

cvs commit: xml-cocoon2 changes.xml

2003-02-17 Thread proyal
proyal  2003/02/17 12:37:33

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Update with prior checkins
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.87 +83 -74xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.86
  retrieving revision 1.138.2.87
  diff -u -r1.138.2.86 -r1.138.2.87
  --- changes.xml   12 Feb 2003 03:16:17 -  1.138.2.86
  +++ changes.xml   17 Feb 2003 20:37:32 -  1.138.2.87
  @@ -12,7 +12,7 @@

 
 
  -   
  +  
 
 
 
  @@ -33,6 +33,7 @@
 
 
 
  +  
 
 
 
  @@ -40,14 +41,22 @@

   

  +  
  +Do not specify a default to the "class-loader" parameter in JavaLanguage
  +  
  +  
  +Add a NonStaticClassLoaderManager that does not keep internal static variables. 
Useful when
  +putting cocoon.jar outside the WEB-INF/lib directory and have multiple XSP 
pages of the same
  +name in multiple webapps
  +  
 
   Improve default exception handling behavior in CocoonServlet: show exception 
stacktrace
   only when log level is INFO or DEBUG, and add exception message to "Not Found" 
page.
  -   
  +  
 
   Use Environment.tryResetResponse() instead of HttpServletResponse.reset() in 
CocoonServlet
   to avoid IllegalStateException if response was already committed.
  -   
  +  
 
   DatabaseReader: optionally read mimetype from database
 
  @@ -67,11 +76,11 @@
   Modify DeltaTimeCacheValidity toString method so it returns same value during 
some time
   (approximately equal to timeInCache parameter). This makes it possible to cache 
sources
   with delta validity. Note: 2.1 replaces it with Excalibur's TimeStampValidity.
  -   
  +  
 
  -   Postgresql 7.3: LIMIT x,y no longer supported. postgresql-old limit method 
  -   still uses LIMIT x,y while postgresql uses the LIMIT x OFFSET y syntax 
  +   Postgresql 7.3: LIMIT x,y no longer supported. postgresql-old limit method
  +   still uses LIMIT x,y while postgresql uses the LIMIT x OFFSET y syntax
  which has been used by postgresql for some time now.
 
 
 
  -Update XML Serializer, HTML Serializer , and Text Serializer documentation, 
  +Update XML Serializer, HTML Serializer , and Text Serializer documentation,
   added XHTML Serializer documentation in the serializer user documentation 
section.
 
 
  -Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added 
  +Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added
   SVG TIFF documentation in the serializer user documentation section.
 
 
  @@ -115,21 +124,21 @@
   AbstractJXPathModule / JXPathMetaModule default to lenient mode i.e. do not
   throw an exception on unsupported attributes but return null instead. Made
   this a configuration option.
  -
  +  
 
   SimpleMappingMetaModule: added feature to remove a prefix / suffix.
  -
  +  
 
   "meta" input modules: configuring a different module locally did not
   override the default one in all circumstances.
  -
  +  
 
   input.xml: renaming mixed up called template names from logicsheet-util.xsl
  -
  +  
 
   SimpleFormTransfomer: fixed error tags when no validation data available.
  -
  -  
  +  
  + 
   
 
  The HTMLGenerator now accepts a JTidy configuration file for fine-grained
  @@ -150,7 +159,7 @@
  Fixed SimpleFormTransformer: Malformed XML with textarea elements.
 
 
  -   Allow to set the i18n transformer's locale from the sitemap as a 
  +   Allow to set the i18n transformer's locale from the sitemap as a
  parameter (ported from 2.1-dev). The old behavior, based on LocaleAction is 
preserved
  only for 2.0.x versions and will be removed from the further releases (2.1 and 
higher).
 
  @@ -171,13 +180,13 @@
 
 
  Changed SimpleFormTransformer to use InputModules.
  -
  +  
 
  Changed InputModules to return Iterator instead of Enumeration. New abstract
  "meta" module to make new meta modules easier. Stripped "meta" from defaults
  -   module. Added JXPathMetaModule. Added extension classes and packages to all 
  +   module. Added JXPathMetaModule. Added extension classes and packages to all
  modules that are based on JXPath.
  -
  +  
 
  Improved support for CLOB and BLOB columns in modular database actions.
 
  @@ -202,7 +211,7 @@
   upload-max-size. See web.xml for description.
 
 
  -Remove the static factory variable in RequestFactory, and instead 
  +Remove the static factory variable in RequestFactory, and instead
   pass it to the HttpRequest via the environment.
 
 
  @@ -407,7 +41

cvs commit: xml-cocoon2 changes.xml

2003-02-11 Thread vgritsenko
vgritsenko2003/02/11 19:16:17

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Reflect changes to exception handling
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.86 +9 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.85
  retrieving revision 1.138.2.86
  diff -u -r1.138.2.85 -r1.138.2.86
  --- changes.xml   4 Feb 2003 15:44:04 -   1.138.2.85
  +++ changes.xml   12 Feb 2003 03:16:17 -  1.138.2.86
  @@ -40,6 +40,14 @@

   

  +  
  +Improve default exception handling behavior in CocoonServlet: show exception 
stacktrace
  +only when log level is INFO or DEBUG, and add exception message to "Not Found" 
page.
  +   
  +  
  +Use Environment.tryResetResponse() instead of HttpServletResponse.reset() in 
CocoonServlet
  +to avoid IllegalStateException if response was already committed.
  +   
 
   DatabaseReader: optionally read mimetype from database
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2003-02-01 Thread vgritsenko
vgritsenko2003/02/01 16:57:49

  Modified:.changes.xml
  Log:
  Bug #15748: Refactor Main java into Main and CocoonBean
  
  Revision  ChangesPath
  1.343 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.342
  retrieving revision 1.343
  diff -u -r1.342 -r1.343
  --- changes.xml   1 Feb 2003 03:19:16 -   1.342
  +++ changes.xml   2 Feb 2003 00:57:49 -   1.343
  @@ -40,6 +40,10 @@

   

  +  
  +Refactor Main class into two classes, Main and CocoonBean. CocoonBean provides 
simple
  +programmatic interface to the Cocoon.
  +   
 
   Add image dimensions to the ImageReader's cache key.
  
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2003-01-31 Thread vgritsenko
vgritsenko2003/01/31 19:19:16

  Modified:.changes.xml
  Log:
  Fix bug 16490: Image Reader Caching Problem.
  
  Revision  ChangesPath
  1.342 +5 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.341
  retrieving revision 1.342
  diff -u -r1.341 -r1.342
  --- changes.xml   25 Jan 2003 12:58:36 -  1.341
  +++ changes.xml   1 Feb 2003 03:19:16 -   1.342
  @@ -40,12 +40,15 @@

   

  +  
  +Add image dimensions to the ImageReader's cache key.
  +   
 
   modular.DatabaseActions: added ability to store FileParts from uploads to
   "ascii", "clob", "blob", and "binary" columns. Added getSize() method to 
FilePart.
 
 
  +   due-to="Michael Gerzabek" 
due-to-email="[EMAIL PROTECTED]">
   SAP R/3 connectivity components added.
  
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2003-01-25 Thread jefft
jefft   2003/01/25 04:58:36

  Modified:.changes.xml
  Log:
  Fix transformer name
  
  Revision  ChangesPath
  1.341 +2 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.340
  retrieving revision 1.341
  diff -u -r1.340 -r1.341
  --- changes.xml   21 Jan 2003 15:55:50 -  1.340
  +++ changes.xml   25 Jan 2003 12:58:36 -  1.341
  @@ -81,7 +81,7 @@
  due-to="Jeff Turner"
  due-to-email="[EMAIL PROTECTED]"
 fixes-bug="15611">
  -Added LinkRewritingTransformer.
  +Added LinkRewriterTransformer.
 
 


cvs commit: xml-cocoon2 changes.xml

2003-01-14 Thread cziegeler
cziegeler2003/01/14 00:32:51

  Modified:.changes.xml
  Log:
  Updating to latest excalibur xmlutil
  
  Revision  ChangesPath
  1.336 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.335
  retrieving revision 1.336
  diff -u -r1.335 -r1.336
  --- changes.xml   11 Jan 2003 20:19:54 -  1.335
  +++ changes.xml   14 Jan 2003 08:32:51 -  1.336
  @@ -40,6 +40,9 @@

   

  +  
  +Updated to latest versions of excalibur sourceresolve and xmlutil.
  +  
 
   Patch IOUtils to recognize '..' in Path
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2003-01-09 Thread haul
haul2003/01/09 09:39:46

  Modified:.changes.xml
  Log:
  fix syntax
  
  Revision  ChangesPath
  1.333 +2 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.332
  retrieving revision 1.333
  diff -u -r1.332 -r1.333
  --- changes.xml   9 Jan 2003 17:09:14 -   1.332
  +++ changes.xml   9 Jan 2003 17:39:45 -   1.333
  @@ -50,7 +50,7 @@
 
 
   Created additional isolation level for some OutputModules.
  -  
  +  
 


cvs commit: xml-cocoon2 changes.xml

2003-01-09 Thread haul
haul2003/01/09 09:09:14

  Modified:.changes.xml
  Log:

  InputModule to access XMLForm instances.


  (modular) DatabaseAction: added ability to use arbitrary path separators
  instead of "." (e.g. "/"), added ability to count rows from 1, added
  documentation.


  Created additional isolation level for some OutputModules.


  Added LinkRewritingTransformer.

  
  Revision  ChangesPath
  1.332 +18 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.331
  retrieving revision 1.332
  diff -u -r1.331 -r1.332
  --- changes.xml   9 Jan 2003 07:00:20 -   1.331
  +++ changes.xml   9 Jan 2003 17:09:14 -   1.332
  @@ -40,6 +40,23 @@

   

  +  
  +InputModule to access XMLForm instances.
  +  
  +  
  +(modular) DatabaseAction: added ability to use arbitrary path separators
  +instead of "." (e.g. "/"), added ability to count rows from 1, added
  +documentation.
  +  
  +  
  +Created additional isolation level for some OutputModules.
  +  
  +  
  +Added LinkRewritingTransformer.
  +  
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2003-01-08 Thread ovidiu
ovidiu  2003/01/08 23:00:20

  Modified:.changes.xml
  Log:

  Added support for expiring continuations.


  Fixed the way complex Java objects are passed from the control
  flow to the XSP view layer.

  
  Revision  ChangesPath
  1.331 +10 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.330
  retrieving revision 1.331
  diff -u -r1.330 -r1.331
  --- changes.xml   7 Jan 2003 13:36:56 -   1.330
  +++ changes.xml   9 Jan 2003 07:00:20 -   1.331
  @@ -40,6 +40,15 @@

   

  +  
  +Added support for expiring continuations.
  +  
  +  
  +Fixed the way complex Java objects are passed from the control
  +flow to the XSP view layer.
  +  
 
   Added ant-contrib library with some optional ant tasks and started cleaning
   up the build system.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-31 Thread tcurdt
tcurdt  2002/12/31 08:26:05

  Modified:.changes.xml
  Log:
  major cleanup, removed the RuntimeExceptions,
  added support for the JPEG comment marker
  
  Revision  ChangesPath
  1.327 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.326
  retrieving revision 1.327
  diff -u -r1.326 -r1.327
  --- changes.xml   28 Dec 2002 22:37:47 -  1.326
  +++ changes.xml   31 Dec 2002 16:26:05 -  1.327
  @@ -40,6 +40,10 @@

   

  +  
  +Major cleanup of the ImageDirectoryGenerator, removed the RuntimeExceptions,
  +added support for the JPEG comment marker
  +  
 
   Added reader user documentation section, including readers documentation;
   added BrowserSelector, and HostSelector documentation, plus template-selector
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-28 Thread huber
huber   2002/12/28 14:37:47

  Modified:.changes.xml
  Log:
  added userdoc changes
  
  Revision  ChangesPath
  1.326 +8 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.325
  retrieving revision 1.326
  diff -u -r1.325 -r1.326
  --- changes.xml   27 Dec 2002 15:36:05 -  1.325
  +++ changes.xml   28 Dec 2002 22:37:47 -  1.326
  @@ -40,6 +40,13 @@

   

  +  
  +Added reader user documentation section, including readers documentation;
  +added BrowserSelector, and HostSelector documentation, plus template-selector
  +usable as template for writing more selector docs;
  +added WildcardURIMatcher, and WildcardHeaderMatcher, plus template-matcher
  +usable as template for writing more matcher docs.
  +  
 
   Fixed the esql:more-results tag for non-JDBC limit methods
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-27 Thread tcurdt
tcurdt  2002/12/27 07:36:05

  Modified:.changes.xml
  Log:
  fixed the esql:more-results bug as reported by Antonio Gallardo
  
  Revision  ChangesPath
  1.325 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.324
  retrieving revision 1.325
  diff -u -r1.324 -r1.325
  --- changes.xml   26 Dec 2002 18:42:52 -  1.324
  +++ changes.xml   27 Dec 2002 15:36:05 -  1.325
  @@ -40,6 +40,9 @@

   

  +  
  +Fixed the esql:more-results tag for non-JDBC limit methods
  +  
 
   Moved all classes marked @deprecated to the src/deprecated directory.
   Since Many classes are still a dependency for the core, while this is fixed
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-26 Thread nicolaken
nicolaken2002/12/26 06:23:28

  Modified:.changes.xml
  Log:

  Moved code to new blocks: profiler, velocity.

  
  Revision  ChangesPath
  1.323 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.322
  retrieving revision 1.323
  diff -u -r1.322 -r1.323
  --- changes.xml   25 Dec 2002 07:07:02 -  1.322
  +++ changes.xml   26 Dec 2002 14:23:28 -  1.323
  @@ -40,6 +40,9 @@

   

  +  
  +Moved code to new blocks: profiler, velocity.
  +  
 
   Update XML Serializer, HTML Serializer , and Text Serializer documentation, 
   added XHTML Serializer documentation in the serializer user documentation 
section.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-24 Thread huber
huber   2002/12/24 23:07:02

  Modified:.changes.xml
  Log:
  added, and updated serializer documentation
  
  Revision  ChangesPath
  1.322 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.321
  retrieving revision 1.322
  diff -u -r1.321 -r1.322
  --- changes.xml   23 Dec 2002 22:38:15 -  1.321
  +++ changes.xml   25 Dec 2002 07:07:02 -  1.322
  @@ -41,6 +41,10 @@
   

 
  +Update XML Serializer, HTML Serializer , and Text Serializer documentation, 
  +added XHTML Serializer documentation in the serializer user documentation 
section.
  +  
  +  
   Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added 
   SVG TIFF documentation in the serializer user documentation section.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-23 Thread huber
huber   2002/12/23 14:38:15

  Modified:.changes.xml
  Log:
  Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added
  SVG TIFF documentation in the serializer user documentation section.
  
  Revision  ChangesPath
  1.321 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.320
  retrieving revision 1.321
  diff -u -r1.320 -r1.321
  --- changes.xml   23 Dec 2002 08:20:58 -  1.320
  +++ changes.xml   23 Dec 2002 22:38:15 -  1.321
  @@ -40,6 +40,10 @@

   

  +  
  +Update SVG Serializer, SVG JPEG, and SVG PNG documentation, added 
  +SVG TIFF documentation in the serializer user documentation section.
  +  
 
  XMLFileModule checks result of SitemapSource.getValidity() as it may return null
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-23 Thread crossley
crossley2002/12/23 00:21:59

  Modified:src/documentation/stylesheets Tag: cocoon_2_0_3_branch
document2html.xsl
   src/documentation/xdocs Tag: cocoon_2_0_3_branch
mail-archives.xml who.xml
   src/documentation/xdocs/userdocs/xsp Tag:
cocoon_2_0_3_branch esql.xml
   .Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Obfuscate some email addresses. Now only javadocs to be fixed.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.4.2.2   +16 -3 xml-cocoon2/src/documentation/stylesheets/document2html.xsl
  
  Index: document2html.xsl
  ===
  RCS file: /home/cvs/xml-cocoon2/src/documentation/stylesheets/document2html.xsl,v
  retrieving revision 1.4.2.1
  retrieving revision 1.4.2.2
  diff -u -r1.4.2.1 -r1.4.2.2
  --- document2html.xsl 4 Jul 2002 02:36:02 -   1.4.2.1
  +++ document2html.xsl 23 Dec 2002 08:21:59 -  1.4.2.2
  @@ -265,9 +265,22 @@



  - 
  - 
  - 
  +  
  +
  +  
  +  
  +
  +  
  +
  + 
  + 
  +
  +  
  +
  +
  +  



  
  
  
  No   revision
  
  
  No   revision
  
  
  1.1.2.2   +1 -1  xml-cocoon2/src/documentation/xdocs/mail-archives.xml
  
  Index: mail-archives.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/src/documentation/xdocs/mail-archives.xml,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- mail-archives.xml 4 Aug 2002 15:41:39 -   1.1.2.1
  +++ mail-archives.xml 23 Dec 2002 08:21:59 -  1.1.2.2
  @@ -15,7 +15,7 @@

 
  There are a number of mailing list archives available. Email
  -   mailto:[EMAIL PROTECTED]";>[EMAIL PROTECTED] if you
  +   mailto:[EMAIL PROTECTED]";>cocoon-users.at.xml.apache.org if you
  know of more.
 
   
  
  
  
  1.2.2.15  +41 -41xml-cocoon2/src/documentation/xdocs/who.xml
  
  Index: who.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/src/documentation/xdocs/who.xml,v
  retrieving revision 1.2.2.14
  retrieving revision 1.2.2.15
  diff -u -r1.2.2.14 -r1.2.2.15
  --- who.xml   6 Dec 2002 14:51:05 -   1.2.2.14
  +++ who.xml   23 Dec 2002 08:21:59 -  1.2.2.15
  @@ -36,30 +36,30 @@
   in strict alphabetical order.
   
   
  -  Nicola Ken Barozzi ([EMAIL PROTECTED])
  -  Marcus Crafter ([EMAIL PROTECTED])
  -  David Crossley ([EMAIL PROTECTED])
  -  Torsten Curdt ([EMAIL PROTECTED])
  -  Bertrand Delacrétaz ([EMAIL PROTECTED])
  -  Vadim Gritsenko ([EMAIL PROTECTED])
  -  Christian Haul ([EMAIL PROTECTED])
  -  Bernhard Huber ([EMAIL PROTECTED])
  -  Ivelin Ivanov ([EMAIL PROTECTED])
  -  Matthew Langham ([EMAIL PROTECTED])
  -  Stefano Mazzocchi ([EMAIL PROTECTED])
  -  Stephan Michels ([EMAIL PROTECTED])
  -  John Morrison ([EMAIL PROTECTED])
  -  Steven Noels ([EMAIL PROTECTED])
  -  Giacomo Pati ([EMAIL PROTECTED])
  -  Konstantin Piroumian ([EMAIL PROTECTED])
  -  Ovidiu Predescu ([EMAIL PROTECTED])
  -  Jeremy Quinn ([EMAIL PROTECTED])
  -  Gianugo Rabellino ([EMAIL PROTECTED])
  -  Peter Royal ([EMAIL PROTECTED])
  -  Diana Shannon ([EMAIL PROTECTED])
  -  Davanum Srinivas ([EMAIL PROTECTED])
  -  Sylvain Wallez ([EMAIL PROTECTED])
  -  Carsten Ziegeler ([EMAIL PROTECTED])
  +  Nicola Ken Barozzi (nicolaken.at.apache.org)
  +  Marcus Crafter (crafterm.at.apache.org)
  +  David Crossley (crossley.at.apache.org)
  +  Torsten Curdt (tcurdt.at.apache.org)
  +  Bertrand Delacrétaz (bdelacretaz.at.apache.org)
  +  Vadim Gritsenko (vgritsenko.at.apache.org)
  +  Christian Haul (haul.at.apache.org)
  +  Bernhard Huber (huber.at.apache.org)
  +  Ivelin Ivanov (ivelin.at.apache.org)
  +  Matthew Langham (mlangham.at.apache.org)
  +  Stefano Mazzocchi (stefano.at.apache.org)
  +  Stephan Michels (stephan.at.apache.org)
  +  John Morrison (morrijr.at.apache.org)
  +  Steven Noels (stevenn.at.apache.org)
  +  Giacomo Pati (giacomo.at.apache.org)
  +  Konstantin Piroumian (kpiroumian.at.apache.org)
  +  Ovidiu Predescu (ovidiu.at.apache.org)
  +  Jeremy Quinn (jeremy.at.apache.org)
  +  Gianugo Rabellino (gianugo.at.apache.org)
  +  Peter Royal (proyal.at.apache.org)
  +  Diana Shannon (shannon.at.apache.org)
  +  Davanum Srinivas (dims.at.apache.org)
  +  Sylvain Wallez (sylvai

cvs commit: xml-cocoon2 changes.xml

2002-12-23 Thread crossley
crossley2002/12/23 00:20:58

  Modified:src/documentation/stylesheets document2html.xsl
   src/documentation/xdocs mail-archives.xml who.xml
   src/documentation/xdocs/userdocs/xsp esql.xml
   .changes.xml
  Log:
  Obfuscate some email addresses. Now only javadocs to be fixed.
  
  Revision  ChangesPath
  1.6   +16 -3 xml-cocoon2/src/documentation/stylesheets/document2html.xsl
  
  Index: document2html.xsl
  ===
  RCS file: /home/cvs/xml-cocoon2/src/documentation/stylesheets/document2html.xsl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- document2html.xsl 30 Jun 2002 10:50:16 -  1.5
  +++ document2html.xsl 23 Dec 2002 08:20:58 -  1.6
  @@ -265,9 +265,22 @@



  - 
  - 
  - 
  +  
  +
  +  
  +  
  +
  +  
  +
  + 
  + 
  +
  +  
  +
  +
  +  



  
  
  
  1.3   +1 -1  xml-cocoon2/src/documentation/xdocs/mail-archives.xml
  
  Index: mail-archives.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/src/documentation/xdocs/mail-archives.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mail-archives.xml 4 Aug 2002 12:25:19 -   1.2
  +++ mail-archives.xml 23 Dec 2002 08:20:58 -  1.3
  @@ -15,7 +15,7 @@

 
  There are a number of mailing list archives available. Email
  -   mailto:[EMAIL PROTECTED]";>[EMAIL PROTECTED] if you
  +   mailto:[EMAIL PROTECTED]";>cocoon-users.at.xml.apache.org if you
  know of more.
 
   
  
  
  
  1.35  +41 -41xml-cocoon2/src/documentation/xdocs/who.xml
  
  Index: who.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/src/documentation/xdocs/who.xml,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- who.xml   6 Dec 2002 14:31:29 -   1.34
  +++ who.xml   23 Dec 2002 08:20:58 -  1.35
  @@ -36,30 +36,30 @@
   in strict alphabetical order.
   
   
  -  Nicola Ken Barozzi ([EMAIL PROTECTED])
  -  Marcus Crafter ([EMAIL PROTECTED])
  -  David Crossley ([EMAIL PROTECTED])
  -  Torsten Curdt ([EMAIL PROTECTED])
  -  Bertrand Delacrétaz ([EMAIL PROTECTED])
  -  Vadim Gritsenko ([EMAIL PROTECTED])
  -  Christian Haul ([EMAIL PROTECTED])
  -  Bernhard Huber ([EMAIL PROTECTED])
  -  Ivelin Ivanov ([EMAIL PROTECTED])
  -  Matthew Langham ([EMAIL PROTECTED])
  -  Stefano Mazzocchi ([EMAIL PROTECTED])
  -  Stephan Michels ([EMAIL PROTECTED])
  -  John Morrison ([EMAIL PROTECTED])
  -  Steven Noels ([EMAIL PROTECTED])
  -  Giacomo Pati ([EMAIL PROTECTED])
  -  Konstantin Piroumian ([EMAIL PROTECTED])
  -  Ovidiu Predescu ([EMAIL PROTECTED])
  -  Jeremy Quinn ([EMAIL PROTECTED])
  -  Gianugo Rabellino ([EMAIL PROTECTED])
  -  Peter Royal ([EMAIL PROTECTED])
  -  Diana Shannon ([EMAIL PROTECTED])
  -  Davanum Srinivas ([EMAIL PROTECTED])
  -  Sylvain Wallez ([EMAIL PROTECTED])
  -  Carsten Ziegeler ([EMAIL PROTECTED])
  +  Nicola Ken Barozzi (nicolaken.at.apache.org)
  +  Marcus Crafter (crafterm.at.apache.org)
  +  David Crossley (crossley.at.apache.org)
  +  Torsten Curdt (tcurdt.at.apache.org)
  +  Bertrand Delacrétaz (bdelacretaz.at.apache.org)
  +  Vadim Gritsenko (vgritsenko.at.apache.org)
  +  Christian Haul (haul.at.apache.org)
  +  Bernhard Huber (huber.at.apache.org)
  +  Ivelin Ivanov (ivelin.at.apache.org)
  +  Matthew Langham (mlangham.at.apache.org)
  +  Stefano Mazzocchi (stefano.at.apache.org)
  +  Stephan Michels (stephan.at.apache.org)
  +  John Morrison (morrijr.at.apache.org)
  +  Steven Noels (stevenn.at.apache.org)
  +  Giacomo Pati (giacomo.at.apache.org)
  +  Konstantin Piroumian (kpiroumian.at.apache.org)
  +  Ovidiu Predescu (ovidiu.at.apache.org)
  +  Jeremy Quinn (jeremy.at.apache.org)
  +  Gianugo Rabellino (gianugo.at.apache.org)
  +  Peter Royal (proyal.at.apache.org)
  +  Diana Shannon (shannon.at.apache.org)
  +  Davanum Srinivas (dims.at.apache.org)
  +  Sylvain Wallez (sylvain.at.apache.org)
  +  Carsten Ziegeler (cziegeler.at.apache.org)
   
 
   
  @@ -69,10 +69,10 @@
   They have not committed anything for three months.
   
   
  -  Mark Butler ([EMAIL PROTECTED])
  -  Gerhard Froehlich ([EMAIL PROTECTED])
  -  Berin Loritsch ([EMAIL PROTECTED])
  -  Martin Man ([EMAIL PROTECTED])
  +  Mark Butler (butlermh.at.apache.

cvs commit: xml-cocoon2 changes.xml

2002-12-22 Thread crossley
crossley2002/12/22 00:13:30

  Modified:.changes.xml
  Log:
  Fix broken internal link.
  
  Revision  ChangesPath
  1.318 +2 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.317
  retrieving revision 1.318
  diff -u -r1.317 -r1.318
  --- changes.xml   21 Dec 2002 06:20:36 -  1.317
  +++ changes.xml   22 Dec 2002 08:13:29 -  1.318
  @@ -44,7 +44,7 @@
  Integrated the validation targets into the build ("validate-config" and
  "validate-xdocs") also still available at the command-line. Validation
  happens automatically unless you switch it off. See document
  -   XML Validation Facilities.
  +   XML Validation Facilities.
 
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-19 Thread haul
haul2002/12/19 07:17:52

  Modified:.changes.xml
  Log:
  revert the following change since it conflicts with Vadim's plan to
  eventually remove session stuff from xsp-session and XSPRequestHelper.
  Will reopen the bugzilla entry. Sorry for inconveniences caused by this.
  
  >  type="add"due-to-email="[EMAIL PROTECTED]"
  >   due-to="Antonio Gallardo" fixes-bug="13070">
  >Add a new tag xsp-session:getxml to XSP. In this course moved
  >session.xsl
  >for JAVA as well as XSPSessionHelper to session-fw block. Removed
  >dependencies to XSPSessionHelper and moved functionality to
  >XSPRequestHelper
  >which already deals with session.
  >   
  
  Revision  ChangesPath
  1.316 +1 -8  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.315
  retrieving revision 1.316
  diff -u -r1.315 -r1.316
  --- changes.xml   19 Dec 2002 11:11:39 -  1.315
  +++ changes.xml   19 Dec 2002 15:17:51 -  1.316
  @@ -58,13 +58,6 @@
 
   Now module.xml is named project.info.xml

  -  
  -   Add a new tag xsp-session:getxml to XSP. In this course moved session.xsl
  -   for JAVA as well as XSPSessionHelper to session-fw block. Removed
  -   dependencies to XSPSessionHelper and moved functionality to XSPRequestHelper
  -   which already deals with session.
  -  
 
  Extension to sendmail.xsp: lists for sendmail:cc
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-19 Thread haul
haul2002/12/19 03:11:39

  Modified:.changes.xml
  Log:

 Postgresql 7.3: LIMIT x,y no longer supported. Added new class for
 postgresql-old limit method that still uses LIMIT x,y while postgresql
 uses the LIMIT x OFFSET y syntax which has been used by postgresql for
 some time now.

  
  Revision  ChangesPath
  1.315 +8 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.314
  retrieving revision 1.315
  diff -u -r1.314 -r1.315
  --- changes.xml   19 Dec 2002 01:17:26 -  1.314
  +++ changes.xml   19 Dec 2002 11:11:39 -  1.315
  @@ -40,6 +40,13 @@

   

  +  
  +   Postgresql 7.3: LIMIT x,y no longer supported. Added new class for
  +   postgresql-old limit method that still uses LIMIT x,y while postgresql
  +   uses the LIMIT x OFFSET y syntax which has been used by postgresql for
  +   some time now.
  +  
 
   Created .src/deprecated directory to contain all deprecated classes.
   This will help in maintaining Cocoon free from deprecated classes.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-19 Thread crossley
crossley2002/12/19 00:46:20

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Added:   tools/lib Tag: cocoon_2_0_3_branch
excalibur-testcase-1.0.jar
  Log:
  Fixed "build test" (was missing tools/lib/excalibur-testcase-1.0.jar).
  The Junit tests now work again.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +0 -0  xml-cocoon2/tools/lib/excalibur-testcase-1.0.jar
  
<>
  
  
  No   revision
  
  
  No   revision
  
  
  1.138.2.79 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.78
  retrieving revision 1.138.2.79
  diff -u -r1.138.2.78 -r1.138.2.79
  --- changes.xml   18 Dec 2002 08:25:11 -  1.138.2.78
  +++ changes.xml   19 Dec 2002 08:46:19 -  1.138.2.79
  @@ -40,6 +40,10 @@

   

  +  
  +Fixed "build test" (was missing tools/lib/excalibur-testcase-1.0.jar).
  +The Junit tests now work again.
  +  
 
   The resource reader now checks if for the same URI the same source is read
   in order to test the if-last-modified header. This behaviour can be turned
  
  
  

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




Re: cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread Vadim Gritsenko
Antonio Gallardo wrote:


Hi Vadim:

Vadim Gritsenko dijo:
 

In the mean time (before integration of xscript and session-fw), the
best way is to create separate session-fw logicsheet. The reason is that
session logicsheet is completely different thing and is not related to
the session-fw.

Vadim
   


It's OK. But what we can do now? Let me explain:

I wrote the  tag because I needed a way to separate
permisions for every page that a user request. Then I created some
"groups" of people. Inside every page I check for this permission to
decide if the user has the right or not to see the page. Currently I am
managing 8 groups of permissions.

The user permissions are loaded when you sucessfully login into the
system. Then the groups of each user lives inside the session of the user.

I made it in this form because I wanted to not request the database of
users every time I need to check a user's permission.


As you can see the tag was done more to interface the authentication-fw
than the session-fw.

Also it seems to be quite stable. My application currently has 45 users in
a LAN. Every day the tag checks hundreds of authentication permissions of
the users and everything works fine.

I agree with you that there must be a better interface to all this stuff,
but currently there is the only way to do that with XSP.

I thinked that I can do the same functionality using an action.
 


In your situation, I would prefer to do permission check in the sitemap 
by invoking some action instead of putting it into the page. This will 
allow me to have clean pages without permissions, and whole permission 
checking logic in one place - action, and managed from another place - 
sitemap. To me this is better separation, then mixing everything 
(content, and auth configuration) in the page.

But in any case it is valuable to have session-fw and/or 
authentication-fw logicsheets to be used from XSP.

Vadim


I will be glad if you (gurus) can comment about this. :-D

Regards,

Antonio Gallardo.
 




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




cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread nicolaken
nicolaken2002/12/18 16:03:58

  Modified:.changes.xml
  Log:

  Moved code to new blocks: html, php, lucene, bsf

  
  Revision  ChangesPath
  1.313 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.312
  retrieving revision 1.313
  diff -u -r1.312 -r1.313
  --- changes.xml   18 Dec 2002 20:04:31 -  1.312
  +++ changes.xml   19 Dec 2002 00:03:58 -  1.313
  @@ -41,6 +41,9 @@
   

 
  +Moved code to new blocks: html, php, lucene, bsf
  + 
  +  
   Now module.xml is named project.info.xml

 


Re: cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread Antonio Gallardo
Hi Vadim:

Vadim Gritsenko dijo:
> In the mean time (before integration of xscript and session-fw), the
> best way is to create separate session-fw logicsheet. The reason is that
>  session logicsheet is completely different thing and is not related to
> the session-fw.
>
> Vadim

It's OK. But what we can do now? Let me explain:

I wrote the  tag because I needed a way to separate
permisions for every page that a user request. Then I created some
"groups" of people. Inside every page I check for this permission to
decide if the user has the right or not to see the page. Currently I am
managing 8 groups of permissions.

The user permissions are loaded when you sucessfully login into the
system. Then the groups of each user lives inside the session of the user.

I made it in this form because I wanted to not request the database of
users every time I need to check a user's permission.


As you can see the tag was done more to interface the authentication-fw
than the session-fw.

Also it seems to be quite stable. My application currently has 45 users in
a LAN. Every day the tag checks hundreds of authentication permissions of
the users and everything works fine.

I agree with you that there must be a better interface to all this stuff,
but currently there is the only way to do that with XSP.

I thinked that I can do the same functionality using an action.

I will be glad if you (gurus) can comment about this. :-D

Regards,

Antonio Gallardo.



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




Re: cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread Vadim Gritsenko
Antonio Gallardo wrote:


Vadim:
 


Hi Antonio,



Can you tell me where we can put the tag or a similar tag?



I know that currently session-fw data is not available from the XSP. In 
the "long" term the best place for XSP <--> session-fw integration 
functionality is the xscript logicsheet.


The people that
use XSP has not option to make use of  as is written in:

http://xml.apache.org/cocoon/developing/webapps/authentication.html
http://xml.apache.org/cocoon/developing/webapps/session.html

This tag try to fill the gap. Also I am aware of that you tell:


Intent was to *deprecate* session-related
functionality from request helper and request logicsheet and phase-out
this eventually.

 


My intent was to remove (Cocoon/Servlet) session functionality from the 
XSPRequestHelper and move it into XSPSessionHelper.


I know in the Java Servlet Specification 2.3 this functionallity is
deprecated but nobody want here to comment nothing about that.

Please dont get me wrong. I just want to contribute to this fabulous project.
 


In the mean time (before integration of xscript and session-fw), the 
best way is to create separate session-fw logicsheet. The reason is that 
session logicsheet is completely different thing and is not related to 
the session-fw.

Vadim


Antonio Gallardo
 




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




Re: cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread Antonio Gallardo
Vadim:

Can you tell me where we can put the tag or a similar tag? The people that
use XSP has not option to make use of  as is written in:

http://xml.apache.org/cocoon/developing/webapps/authentication.html
http://xml.apache.org/cocoon/developing/webapps/session.html

This tag try to fill the gap. Also I am aware of that you tell:


Intent was to *deprecate* session-related
functionality from request helper and request logicsheet and phase-out
this eventually.


I know in the Java Servlet Specification 2.3 this functionallity is
deprecated but nobody want here to comment nothing about that.

Please dont get me wrong. I just want to contribute to this fabulous project.

Antonio Gallardo


Vadim Gritsenko dijo:
> [EMAIL PROTECTED] wrote:
>
>>haul2002/12/18 08:49:18
>>
>>  Modified:.changes.xml
>>  Log:
>>> type="add"due-to-email="[EMAIL PROTECTED]"
>> due-to="Antonio Gallardo" fixes-bug="13070">
>> Add a new tag xsp-session:getxml to XSP. In this course moved
>> session.xsl for JAVA as well as XSPSessionHelper to session-fw
>> block. Removed dependencies to XSPSessionHelper and moved
>> functionality to XSPRequestHelper which already deals with
>> session.
>>
>>
>
> -1, I've got strong objection on this one.
>
> I'm sure that placing and naming of this functionality is wrong, but as
> long as I can't contribute, I'll shut up - free to add it.
>
> But the more serious issue is that xsp-session logicsheet belongs to the
>  core Cocoon - as Session object itself is, which is not the case with
> the session framework aka sunShine (sunRise?). Please move session
> logicsheet back, it breaks existing Cocoon applications using session
> logicsheet only and introduces unnecessary dependency.
> Regarding XSPSessionHelper: it was introduced (recentlly) to decouple
> session from Request helper. Intent was to *deprecate* session-related
> functionality from request helper and request logicsheet and phase-out
> this eventually.
>
>
> Thanks,
> Vadim
>
>
>
> - To
> unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]




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




Re: cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread Vadim Gritsenko
[EMAIL PROTECTED] wrote:


haul2002/12/18 08:49:18

 Modified:.changes.xml
 Log:
   
Add a new tag xsp-session:getxml to XSP. In this course moved session.xsl
for JAVA as well as XSPSessionHelper to session-fw block. Removed
dependencies to XSPSessionHelper and moved functionality to XSPRequestHelper
which already deals with session.
   


-1, I've got strong objection on this one.

I'm sure that placing and naming of this functionality is wrong, but as 
long as I can't contribute, I'll shut up - free to add it.

But the more serious issue is that xsp-session logicsheet belongs to the 
core Cocoon - as Session object itself is, which is not the case with 
the session framework aka sunShine (sunRise?). Please move session 
logicsheet back, it breaks existing Cocoon applications using session 
logicsheet only and introduces unnecessary dependency.
Regarding XSPSessionHelper: it was introduced (recentlly) to decouple 
session from Request helper. Intent was to *deprecate* session-related 
functionality from request helper and request logicsheet and phase-out 
this eventually.


Thanks,
Vadim



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



cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread haul
haul2002/12/18 08:49:18

  Modified:.changes.xml
  Log:

 Add a new tag xsp-session:getxml to XSP. In this course moved session.xsl
 for JAVA as well as XSPSessionHelper to session-fw block. Removed
 dependencies to XSPSessionHelper and moved functionality to XSPRequestHelper
 which already deals with session.

  
  Revision  ChangesPath
  1.311 +23 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.310
  retrieving revision 1.311
  diff -u -r1.310 -r1.311
  --- changes.xml   18 Dec 2002 08:09:24 -  1.310
  +++ changes.xml   18 Dec 2002 16:49:18 -  1.311
  @@ -40,6 +40,28 @@

   

  +  
  +   Add a new tag xsp-session:getxml to XSP. In this course moved session.xsl
  +   for JAVA as well as XSPSessionHelper to session-fw block. Removed
  +   dependencies to XSPSessionHelper and moved functionality to XSPRequestHelper
  +   which already deals with session.
  +  
  +  
  +   Extension to sendmail.xsp: lists for sendmail:cc
  +  
  +  
  +   Added container/form-encoding init-params to web.xml
  +  
  +  
  +   Fixing various inefficient logging calls.
  +  
  +  
  +Make all "meta" modules ThreadSafe
  +
 
   Perform correct source resolution in XMLResourceBundle.
   Now i18n transformer can obtain dictionaries using any supported source (e.g. 
'cocoon:/').
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-18 Thread cziegeler
cziegeler2002/12/18 00:09:24

  Modified:src/java/org/apache/cocoon/environment/http
HttpEnvironment.java
   src/java/org/apache/cocoon/reading ResourceReader.java
   .changes.xml
  Log:
  Fixing bug 12915

  The resource reader now checks if for the same URI the same source is read
  in order to test the if-last-modified header. This behaviour can be turned
  of (for more performance) by the quick-modified-test.

  
  Revision  ChangesPath
  1.20  +1 -6  
xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpEnvironment.java
  
  Index: HttpEnvironment.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpEnvironment.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- HttpEnvironment.java  5 Dec 2002 10:25:52 -   1.19
  +++ HttpEnvironment.java  18 Dec 2002 08:09:24 -  1.20
  @@ -239,15 +239,10 @@
* environment is not able to test it
*/
   public boolean isResponseModified(long lastModified) {
  -// workaround for bug #12915
  -// FIXME
  -return true;
  -/*
   long if_modified_since = this.request.getDateHeader("If-Modified-Since");
   
   this.response.setDateHeader("Last-Modified", lastModified);
   return (if_modified_since < lastModified);
  -*/
   }
   
   /**
  
  
  
  1.21  +34 -4 
xml-cocoon2/src/java/org/apache/cocoon/reading/ResourceReader.java
  
  Index: ResourceReader.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/reading/ResourceReader.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- ResourceReader.java   5 Dec 2002 10:32:58 -   1.20
  +++ ResourceReader.java   18 Dec 2002 08:09:24 -  1.21
  @@ -56,6 +56,7 @@
   import org.apache.cocoon.components.source.SourceUtil;
   import org.apache.cocoon.environment.Context;
   import org.apache.cocoon.environment.ObjectModelHelper;
  +import org.apache.cocoon.environment.Request;
   import org.apache.cocoon.environment.Response;
   import org.apache.cocoon.environment.SourceResolver;
   import org.apache.excalibur.source.Source;
  @@ -65,6 +66,7 @@
   
   import java.io.IOException;
   import java.io.InputStream;
  +import java.util.HashMap;
   import java.util.Map;
   
   /**
  @@ -82,19 +84,30 @@
*   in miliseconds the resources can be cached by any proxy or browser
*   between Cocoon2 and the requesting visitor.
*   
  + * 
  + *   This parameter is optional. This boolean parameter controlls the
  + *   last modified test. If set to true (default is false), only the
  + *   last modified of the current source is tested, but not if the
  + *   same source is used as last time.
  + *   
*   
*
* @author mailto:[EMAIL PROTECTED]";>Giacomo Pati
* @version CVS $Id$
*/
  -public class ResourceReader
  +public final class ResourceReader
 extends AbstractReader
 implements CacheableProcessingComponent {
   
   /** The  source */
   private Source  inputSource;
   
  -
  +/** The list of generated documents */
  +private static final Map documents = new HashMap();
  +
  +/** quick test */
  +private boolean quickTest;
  +
   /**
* Setup the reader.
* The resource is opened to get an InputStream,
  @@ -103,6 +116,7 @@
   public void setup(SourceResolver resolver, Map objectModel, String src, 
Parameters par)
   throws ProcessingException, SAXException, IOException {
   super.setup(resolver, objectModel, src, par);
  +this.quickTest = par.getParameterAsBoolean("quick-modified-test", false);
   try {
   this.inputSource = resolver.resolveURI(src);
   } catch (SourceException se) {
  @@ -146,7 +160,17 @@
* possible to detect
*/
   public long getLastModified() {
  -return this.inputSource.getLastModified();
  + if (this.quickTest) {
  + return this.inputSource.getLastModified();
  + }
  +final Request request = ObjectModelHelper.getRequest(this.objectModel);
  +final String systemId = (String)documents.get(request.getRequestURI());
  +if (this.inputSource.getSystemId().equals(systemId)) {
  +return this.inputSource.getLastModified();
  +} else {
  + documents.remove(request.getRequestURI());
  + return 0;
  +}
   }
   
   /**
  @@ -183,6 +207,12 @@
   inputStream.close();
   inputStream = null;
   out.flush();
  +
  +

cvs commit: xml-cocoon2 changes.xml

2002-12-17 Thread kpiroumian
kpiroumian2002/12/17 03:13:21

  Modified:.changes.xml
  Log:
  Added Greek translation, thanks to Stavros Kounis <[EMAIL PROTECTED]>.
  Corrected Armenian translation to be readable without additional plug-ins (on Win).
  Cosmetic corrections.
  
  Revision  ChangesPath
  1.308 +15 -10xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.307
  retrieving revision 1.308
  diff -u -r1.307 -r1.308
  --- changes.xml   17 Dec 2002 00:06:08 -  1.307
  +++ changes.xml   17 Dec 2002 11:13:21 -  1.308
  @@ -40,6 +40,11 @@

   

  +  
  +Added Greek translation, thanks to Stavros Kounis ([EMAIL PROTECTED]).
  +Corrected Armenian translation to be real Unicode and be 
  +readable without additional plug-ins (on Win).
  +  
 
   Updated the XML:DB Source. Now it will accept, in cocoon.xconf, 
   optional authentication attributes, called "user" and "password".
  @@ -180,11 +185,11 @@
 i18n samples are updated to demonstrate the new features.
 
 
  - XMLForm Howto to reflect the fact that there is no
  +XMLForm Howto to reflect the fact that there is no
   need for manual handling of unchecked check-boxes.
 
 
  - Updated Xalan to 2.4.1
  +Updated Xalan to 2.4.1
 
 
   Renamed the AbstractMethodAction into AbstractMultiAction and
  @@ -589,15 +594,15 @@
   and keys() methods.
 
 
  - Added a more sophisticated example in samples/webserviceproxy/cocoonhive.
  - Demonstrates a small virtual portal which embeds functionality
  - from Amazon and OpenWiki.
  +Added a more sophisticated example in samples/webserviceproxy/cocoonhive.
  +Demonstrates a small virtual portal which embeds functionality
  +from Amazon and OpenWiki.
 
 
  - XMLFormTransformer now saves a list of referenced model properties,
  - which is later used to automatically populate with default values
  - properties which were not addressed in the http request (like unchecked
  - checkboxes). This applies to session scope forms only.
  +XMLFormTransformer now saves a list of referenced model properties,
  +which is later used to automatically populate with default values
  +properties which were not addressed in the http request (like unchecked
  +checkboxes). This applies to session scope forms only.
 
   
   
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-16 Thread gianugo
gianugo 2002/12/16 16:06:08

  Modified:.changes.xml
  Log:
  Added optional "user" and "password" attributes to the XML:DB configuration
  
  Revision  ChangesPath
  1.307 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.306
  retrieving revision 1.307
  diff -u -r1.306 -r1.307
  --- changes.xml   16 Dec 2002 11:04:00 -  1.306
  +++ changes.xml   17 Dec 2002 00:06:08 -  1.307
  @@ -40,6 +40,10 @@

   

  +  
  +Updated the XML:DB Source. Now it will accept, in cocoon.xconf, 
  +optional authentication attributes, called "user" and "password".
  +  
 
   New transformer extracts fragments to documents and stores them using an
   OutputModule. Tags that start fragment are configurable.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-16 Thread haul
haul2002/12/16 06:58:57

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:

  AbstractJXPathModule / JXPathMetaModule default to lenient mode i.e. do not
  throw an exception on unsupported attributes but return null instead. Made
  this a configuration option.


  SimpleMappingMetaModule: added feature to remove a prefix / suffix.


  "meta" input modules: configuring a different module locally did not
  override the default one in all circumstances.


  input.xml: renaming mixed up called template names from logicsheet-util.xsl


  SimpleFormTransfomer: fixed error tags when no validation data available.

  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.77 +19 -2 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.76
  retrieving revision 1.138.2.77
  diff -u -r1.138.2.76 -r1.138.2.77
  --- changes.xml   6 Dec 2002 14:49:47 -   1.138.2.76
  +++ changes.xml   16 Dec 2002 14:58:56 -  1.138.2.77
  @@ -40,7 +40,24 @@

   

  -  Placeholder
  +  
  +AbstractJXPathModule / JXPathMetaModule default to lenient mode i.e. do not
  +throw an exception on unsupported attributes but return null instead. Made
  +this a configuration option.
  +
  +  
  +SimpleMappingMetaModule: added feature to remove a prefix / suffix.
  +
  +  
  +"meta" input modules: configuring a different module locally did not
  +override the default one in all circumstances.
  +
  +  
  +input.xml: renaming mixed up called template names from logicsheet-util.xsl
  +
  +  
  +SimpleFormTransfomer: fixed error tags when no validation data available.
  +
 
   
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-16 Thread haul
haul2002/12/16 03:04:00

  Modified:.changes.xml
  Log:

  New transformer extracts fragments to documents and stores them using an
  OutputModule. Tags that start fragment are configurable.


  New output module puts everything in a map in a request attribute.

  
  Revision  ChangesPath
  1.306 +13 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.305
  retrieving revision 1.306
  diff -u -r1.305 -r1.306
  --- changes.xml   16 Dec 2002 10:09:41 -  1.305
  +++ changes.xml   16 Dec 2002 11:04:00 -  1.306
  @@ -41,6 +41,18 @@
   

 
  +New transformer extracts fragments to documents and stores them using an
  +OutputModule. Tags that start fragment are configurable.
  +
  +  
  +New output module puts everything in a map in a request attribute.
  +
  +  
  +AbstractJXPathModule / JXPathMetaModule default to lenient mode i.e. do not
  +throw an exception on unsupported attributes but return null instead. Made
  +this a configuration option.
  +
  +  
   XMLMetaModule returns DocumentWrapper instead of String.
   
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-16 Thread haul
haul2002/12/16 02:09:41

  Modified:.changes.xml
  Log:
  
  
  Revision  ChangesPath
  1.305 +21 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.304
  retrieving revision 1.305
  diff -u -r1.304 -r1.305
  --- changes.xml   13 Dec 2002 15:46:02 -  1.304
  +++ changes.xml   16 Dec 2002 10:09:41 -  1.305
  @@ -40,6 +40,26 @@

   

  +  
  +XMLMetaModule returns DocumentWrapper instead of String.
  +
  +  
  +Wrapper for org.w3c.dom.Document that implements XMLizable and provides
  +a useful toString() method.
  +
  +  
  +SimpleMappingMetaModule: added feature to remove a prefix / suffix.
  +
  +  
  +"meta" input modules: configuring a different module locally did not
  +override the default one in all circumstances.
  +
  +  
  +input.xml: renaming mixed up called template names from logicsheet-util.xsl
  +
  +  
  +SimpleFormTransfomer: fixed error tags when no validation data available.
  +
 
   Moved the sample classes and confs to the samples block.
   
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-06 Thread cziegeler
cziegeler2002/12/06 06:50:15

  Modified:.changes.xml
  Log:
  Sync changes
  
  Revision  ChangesPath
  1.303 +172 -140  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.302
  retrieving revision 1.303
  diff -u -r1.302 -r1.303
  --- changes.xml   6 Dec 2002 13:21:28 -   1.302
  +++ changes.xml   6 Dec 2002 14:50:15 -   1.303
  @@ -55,21 +55,10 @@
   Updated block build system to compile and use mock objects in 
   the "mocks" subdir of the blocks if present.
   
  -  
  -   New Logicsheet for use with InputModules.
  -  
 
  -   xsp.xsl now includes all xsp:init-page tags. Additional xsp:exit-page tag for
  -   cleanup operations.
  -  
  -  
  -   New InputModule to map parameter names to / from another name. Uses translation
  -   table and additional prefix / suffix. New InputModule to access contents of
  +   New InputModule to access contents of
  an XMLFile using JXPath, based on patch from Jeff Turner ([EMAIL PROTECTED]).
 
  -  
  -   Fixed SimpleFormTransformer: Malformed XML with textarea elements.
  -   
 
   Moved endorsed libs in ./lib/endorsed, so that they can be added in the build 
file
   easily as java jvm args, or in the future copied to the webserver or Java 
endorsed dir.
  @@ -82,10 +71,6 @@
   Since it seems there is a bug somewhere, ATM point to 
   http://localhost:/documentation/index.html to see the page.

  -  
  -   The HTMLGenerator now accepts a JTidy configuration file for fine-grained
  -   control on the generated document.
  -  
 
   Removed ./tools/build-i.xml and moved the interactive targets in main build.
   Removed ./tools/build-s.xml and removed all references to scratchpad builds 
(not used).
  @@ -132,26 +117,11 @@
  SimpleLuceneXMLIndexerImpl for choosing the content-view and which tags you want 
stored
  as fields by the indexer. Added field storage implementation to 
LuceneIndexContentHandler.
   
  -  
  -   RequestLifecycleComponents were not handled properly when the cocoon: protocol 
is used
  -  
 
  New build target "validate-xdocs" to conduct build-time validation of core
  xml documentation (call it manually with:
  ./build.sh validate-xdocs).
 
  -  
  -   Changed SimpleFormTransformer to use InputModules.
  -
  -  
  -   Changed InputModules to return Iterator instead of Enumeration. New abstract
  -   "meta" module to make new meta modules easier. Stripped "meta" from defaults
  -   module. Added JXPathMetaModule. Added extension classes and packages to all 
  -   modules that are based on JXPath.
  -
  -  
  -   Fixing namespace handling of SQLTransformer.
  -  
 
 Added SystemPropertyModule input module to enable environment variables
 in sitemap attributes. E.g.: 
  @@ -177,40 +147,6 @@
 
Updated Xalan to 2.4.1
 
  -  
  -   Improved support for CLOB and BLOB columns in modular database actions.
  -  
  -  
  - Added a more sophisticated example in samples/webserviceproxy/cocoonhive.
  - Demonstrates a small virtual portal which embeds functionality
  - from Amazon and OpenWiki.
  -  
  -  
  - XMLFormTransformer now saves a list of referenced model properties,
  - which is later used to automatically populate with default values
  - properties which were not addressed in the http request (like unchecked
  - checkboxes). This applies to session scope forms only.
  -  
  -  
  -   New build target "validate-config" to conduct build-time validation of some
  -   core important configuration files using RELAX NG (call it manually with:
  -   ./build.sh validate-config). Currently doing: all sitemap.xmap,
  -   all cocoon.roles, all *.xsl stylesheets, all book.xml files.
  -  
  -  
  -New ZipArchiveSerializer to build zip files aggregating various sources
  -as archive entries. Can be used to generate zip files, sxw files (OpenOffice),
  -jar files, etc.
  -  
  -  
  -CocoonServlet upload behavior now configurable from the web.xml.
  -Configuration parameters are: autosave-uploads, overwrite-uploads,
  -upload-max-size. See web.xml for description.
  -  
  -  
  -Remove the static factory variable in RequestFactory, and instead 
  -pass it to the HttpRequest via the environment.
  -  
 
   Renamed the AbstractMethodAction into AbstractMultiAction and
   moved it from scratchpad into the maintrunk. Using it helps
  @@ -220,30 +156,6 @@
  Added RELAX NG grammar for sitemap.xmap files and removed old draft sitemap
  DTD.
 
  -  
  -ReadDOMSessionTransformer now can work with any types of object
  -(same mechanism as in  now used). Configuration
  -parameter dom-name renamed to attribute-name.
  -  
  -  
  -

cvs commit: xml-cocoon2 changes.xml

2002-12-06 Thread cziegeler
cziegeler2002/12/06 06:49:48

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Sync changes
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.76 +4 -5  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.75
  retrieving revision 1.138.2.76
  diff -u -r1.138.2.75 -r1.138.2.76
  --- changes.xml   6 Dec 2002 13:20:39 -   1.138.2.75
  +++ changes.xml   6 Dec 2002 14:49:47 -   1.138.2.76
  @@ -108,10 +108,6 @@
   as archive entries. Can be used to generate zip files, sxw files (OpenOffice),
   jar files, etc.
 
  -  
  -TraxTransformer does not have use-deli parameter anymore. If deli is
  -configured in the cocoon.xconf, it always will be used.
  -  
 
   CocoonServlet upload behavior now configurable from the web.xml.
   Configuration parameters are: autosave-uploads, overwrite-uploads,
  @@ -240,6 +236,9 @@
 
 
   Conect to the XML:DB once, from the XMLDBSourceFactory.
  +  
  +  
  +Added cocoon-docs mailinglist to mail-archives.xml.
 
 
    includes any object, converting it to string.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-06 Thread cziegeler
cziegeler2002/12/06 05:20:39

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Updating changes
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.75 +9 -5  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.74
  retrieving revision 1.138.2.75
  diff -u -r1.138.2.74 -r1.138.2.75
  --- changes.xml   1 Dec 2002 22:09:11 -   1.138.2.74
  +++ changes.xml   6 Dec 2002 13:20:39 -   1.138.2.75
  @@ -14,6 +14,7 @@
 
  
 
  +  
 
 
 
  @@ -28,7 +29,7 @@
 
 
 
  -  
  +  
 
 
 
  @@ -39,6 +40,9 @@

   

  +  Placeholder
  +  
  +
 
  The HTMLGenerator now accepts a JTidy configuration file for fine-grained
  control on the generated document.
  @@ -192,7 +196,7 @@
  Backport usage of InputModules to compiled sitemap.
 
 
  -   Sync modules and related components with HEAD.
  +   Sync modules and related components between 2.0.x and HEAD.
 
 
  Added some more types understood by modular database actions.
  @@ -304,8 +308,8 @@
  returning an error.
 
 
  -   Fixed sitemap compilation error when matchers are used within view or
  -   resource.
  +   Fixed sitemap compilation error when matchers are used within view
  +   or resource.
 
 
  Fixed sitemap compilation error when actions are used within view.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-04 Thread tcurdt
tcurdt  2002/12/04 14:11:21

  Modified:.changes.xml
  Log:
  cleaned up the esql logicsheet and helper classes,
  put db specific handling into separate classes,
  renamed some methods to more reasonable names
  
  Revision  ChangesPath
  1.301 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.300
  retrieving revision 1.301
  diff -u -r1.300 -r1.301
  --- changes.xml   3 Dec 2002 17:08:35 -   1.300
  +++ changes.xml   4 Dec 2002 22:11:21 -   1.301
  @@ -40,6 +40,11 @@

   

  +  
  +Cleaned up the esql logicsheet and helper classes.
  +Created classes for db specific stuff.
  +Improved the limit/paging features.
  +  
 
   Moved the jsp components to the jsp block, using hand-made-to-be-cleaned
   mock objects for the weblogic specific imports.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml module.xml properties.xml

2002-12-03 Thread nicolaken
nicolaken2002/12/03 09:08:36

  Modified:.changes.xml module.xml properties.xml
  Log:

  Moved the jsp components to the jsp block, using hand-made-to-be-cleaned
  mock objects for the weblogic specific imports.
  Had also to move some definitions from the cocoon roles and xconf file.
  This moving of the blocks is indeed cleaning the core! :-)

  
  Revision  ChangesPath
  1.300 +7 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.299
  retrieving revision 1.300
  diff -u -r1.299 -r1.300
  --- changes.xml   3 Dec 2002 16:55:56 -   1.299
  +++ changes.xml   3 Dec 2002 17:08:35 -   1.300
  @@ -41,6 +41,12 @@
   

 
  +Moved the jsp components to the jsp block, using hand-made-to-be-cleaned
  +mock objects for the weblogic specific imports.
  +Had also to move some definitions from the cocoon roles and xconf file.
  +This moving of the blocks is indeed cleaning the core! :-)
  + 
  +  
   Updated block build system to compile and use mock objects in 
   the "mocks" subdir of the blocks if present.
   
  
  
  
  1.19  +19 -0 xml-cocoon2/module.xml
  
  Index: module.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/module.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- module.xml28 Nov 2002 15:12:33 -  1.18
  +++ module.xml3 Dec 2002 17:08:35 -   1.19
  @@ -352,6 +352,25 @@

   
 
  +  
  +org.apache.cocoon
  +
  +
  +  
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  + 
  +  
  +  
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-03 Thread nicolaken
nicolaken2002/12/03 08:55:56

  Modified:.changes.xml
  Log:

  Updated block build system to compile and use mock objects in
  the "mocks" subdir of the blocks if present.

  
  Revision  ChangesPath
  1.299 +1 -16 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.298
  retrieving revision 1.299
  diff -u -r1.298 -r1.299
  --- changes.xml   3 Dec 2002 16:55:14 -   1.298
  +++ changes.xml   3 Dec 2002 16:55:56 -   1.299
  @@ -40,21 +40,6 @@

   

  -  
  -   New Logicsheet for use with InputModules.
  -  
  -  
  -   xsp.xsl now includes all xsp:init-page tags. Additional xsp:exit-page tag for
  -   cleanup operations.
  -  
  -  
  -   New InputModule to map parameter names to / from another name. Uses translation
  -   table and additional prefix / suffix. New InputModule to access contents of
  -   an XMLFile using JXPath, based on patch from Jeff Turner ([EMAIL PROTECTED]).
  -  
  -  
  -   Fixed SimpleFormTransformer: Malformed XML with textarea elements.
  -  
 
   Updated block build system to compile and use mock objects in 
   the "mocks" subdir of the blocks if present.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-03 Thread nicolaken
nicolaken2002/12/03 08:55:14

  Modified:.changes.xml
  Log:

  Updated block build system to compile and use mock objects in
  the "mocks" subdir of the blocks if present.

  
  Revision  ChangesPath
  1.298 +20 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.297
  retrieving revision 1.298
  diff -u -r1.297 -r1.298
  --- changes.xml   3 Dec 2002 16:44:50 -   1.297
  +++ changes.xml   3 Dec 2002 16:55:14 -   1.298
  @@ -56,6 +56,25 @@
  Fixed SimpleFormTransformer: Malformed XML with textarea elements.
 
 
  +Updated block build system to compile and use mock objects in 
  +the "mocks" subdir of the blocks if present.
  +
  +  
  +   New Logicsheet for use with InputModules.
  +  
  +  
  +   xsp.xsl now includes all xsp:init-page tags. Additional xsp:exit-page tag for
  +   cleanup operations.
  +  
  +  
  +   New InputModule to map parameter names to / from another name. Uses translation
  +   table and additional prefix / suffix. New InputModule to access contents of
  +   an XMLFile using JXPath, based on patch from Jeff Turner ([EMAIL PROTECTED]).
  +  
  +  
  +   Fixed SimpleFormTransformer: Malformed XML with textarea elements.
  +   
  +  
   Moved endorsed libs in ./lib/endorsed, so that they can be added in the build 
file
   easily as java jvm args, or in the future copied to the webserver or Java 
endorsed dir.
   Currently it enables Jetty to run easily in 1.4 JVMs without need to copy libs 
to
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-12-03 Thread haul
haul2002/12/03 08:44:50

  Modified:.changes.xml
  Log:
  
  
  Revision  ChangesPath
  1.297 +16 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.296
  retrieving revision 1.297
  diff -u -r1.296 -r1.297
  --- changes.xml   3 Dec 2002 00:11:23 -   1.296
  +++ changes.xml   3 Dec 2002 16:44:50 -   1.297
  @@ -40,6 +40,21 @@

   

  +  
  +   New Logicsheet for use with InputModules.
  +  
  +  
  +   xsp.xsl now includes all xsp:init-page tags. Additional xsp:exit-page tag for
  +   cleanup operations.
  +  
  +  
  +   New InputModule to map parameter names to / from another name. Uses translation
  +   table and additional prefix / suffix. New InputModule to access contents of
  +   an XMLFile using JXPath, based on patch from Jeff Turner ([EMAIL PROTECTED]).
  +  
  +  
  +   Fixed SimpleFormTransformer: Malformed XML with textarea elements.
  +  
 
   Moved endorsed libs in ./lib/endorsed, so that they can be added in the build 
file
   easily as java jvm args, or in the future copied to the webserver or Java 
endorsed dir.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-30 Thread haul
haul2002/11/30 02:23:54

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.73 +15 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.72
  retrieving revision 1.138.2.73
  diff -u -r1.138.2.72 -r1.138.2.73
  --- changes.xml   27 Nov 2002 10:58:22 -  1.138.2.72
  +++ changes.xml   30 Nov 2002 10:23:54 -  1.138.2.73
  @@ -39,6 +39,20 @@

   

  +  
  +   New Logicsheet for use with InputModules.
  +  
  +  
  +   xsp.xsl now includes all xsp:init-page tags. Additional xsp:exit-page tag for
  +   cleanup operations.
  +  
  +  
  +   New InputModule to map parameter names to / from another name. Uses translation
  +   table and additional prefix / suffix.
  +  
  +  
  +   Fixed SimpleFormTransformer: Malformed XML with textarea elements.
  +  
 
  Allow to set the i18n transformer's locale from the sitemap as a 
  parameter (ported from 2.1-dev). The old behavior, based on LocaleAction is 
preserved
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-28 Thread nicolaken
nicolaken2002/11/28 12:28:20

  Modified:.changes.xml
  Log:
  Removed JTidyTask that was not used and switched to using the Ant input task from 
UserInputTask.
  
  Revision  ChangesPath
  1.293 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.292
  retrieving revision 1.293
  diff -u -r1.292 -r1.293
  --- changes.xml   28 Nov 2002 16:25:20 -  1.292
  +++ changes.xml   28 Nov 2002 20:28:20 -  1.293
  @@ -40,6 +40,9 @@

   

  +  
  +Removed JTidyTask that was not used and switched to using the Ant input task 
from UserInputTask.
  +
 
   Added useexternalfile="yes" attribute makes Ant collect all package names in a 
temporary 
   file and give that to Javadoc, thus going round the Wintel long command 
truncation issue.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-27 Thread huber
huber   2002/11/27 15:58:10

  Modified:src/java/org/apache/cocoon/serialization TextSerializer.java
XMLSerializer.java
   .changes.xml
  Log:
  Fix setOutputStream throwing IOExeption in XMLSerializer, and TextSerializer.
  
  Revision  ChangesPath
  1.8   +8 -6  
xml-cocoon2/src/java/org/apache/cocoon/serialization/TextSerializer.java
  
  Index: TextSerializer.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/serialization/TextSerializer.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TextSerializer.java   21 Nov 2002 18:18:49 -  1.7
  +++ TextSerializer.java   27 Nov 2002 23:58:10 -  1.8
  @@ -50,13 +50,15 @@
   */
   package org.apache.cocoon.serialization;
   
  -import org.apache.avalon.framework.CascadingRuntimeException;
  -
   import javax.xml.transform.OutputKeys;
   import javax.xml.transform.sax.TransformerHandler;
   import javax.xml.transform.stream.StreamResult;
  +import org.apache.cocoon.CascadingIOException;
  +
  +import java.io.IOException;
   import java.io.OutputStream;
   
  +
   /**
* @author mailto:[EMAIL PROTECTED]";>Stefano Mazzocchi
* @version CVS $Id$
  @@ -69,7 +71,7 @@
   public TextSerializer() {
   }
   
  -public void setOutputStream(OutputStream out) {
  +public void setOutputStream(OutputStream out) throws IOException {
   try {
   super.setOutputStream(out);
   handler = this.getTransformerHandler();
  @@ -79,8 +81,8 @@
   this.setContentHandler(handler);
   this.setLexicalHandler(handler);
  } catch (Exception e) {
  -getLogger().error("TextSerializer.setOutputStream()", e);
  -throw new CascadingRuntimeException("TextSerializer.setOutputStream()", 
e);
  +final String message = "Cannot set TextSerializer outputstream"; 
  +throw new CascadingIOException(message, e);
   }
   }
   
  
  
  
  1.8   +7 -6  
xml-cocoon2/src/java/org/apache/cocoon/serialization/XMLSerializer.java
  
  Index: XMLSerializer.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/serialization/XMLSerializer.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XMLSerializer.java21 Nov 2002 18:18:49 -  1.7
  +++ XMLSerializer.java27 Nov 2002 23:58:10 -  1.8
  @@ -50,11 +50,12 @@
   */
   package org.apache.cocoon.serialization;
   
  -import org.apache.avalon.framework.CascadingRuntimeException;
  -
   import javax.xml.transform.OutputKeys;
   import javax.xml.transform.sax.TransformerHandler;
   import javax.xml.transform.stream.StreamResult;
  +import org.apache.cocoon.CascadingIOException;
  +
  +import java.io.IOException;
   import java.io.OutputStream;
   
   /**
  @@ -69,7 +70,7 @@
   public XMLSerializer() {
   }
   
  -public void setOutputStream(OutputStream out) {
  +public void setOutputStream(OutputStream out) throws IOException {
   try {
   super.setOutputStream(out);
   this.handler = this.getTransformerHandler();
  @@ -79,8 +80,8 @@
   this.setContentHandler(handler);
   this.setLexicalHandler(handler);
   } catch (Exception e) {
  -getLogger().error("XMLSerializer.setOutputStream()", e);
  -throw new CascadingRuntimeException("XMLSerializer.setOutputStream()", 
e);
  +final String message = "Cannot set XMLSerializer outputstream"; 
  +throw new CascadingIOException(message, e);
   }
   }
   
  
  
  
  1.289 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.288
  retrieving revision 1.289
  diff -u -r1.288 -r1.289
  --- changes.xml   25 Nov 2002 20:15:44 -  1.288
  +++ changes.xml   27 Nov 2002 23:58:10 -  1.289
  @@ -40,6 +40,9 @@

   

  +  
  +   Fix setOutputStream throwing IOExeption in XMLSerializer, and TextSerializer.
  +   
 
  Make the CLI report errors correctly to the screen when a page generation fails.
  
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-27 Thread kpiroumian
kpiroumian2002/11/27 02:58:22

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Allow to set locale from the sitemap as a parameter (ported from 2.1-dev)
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.72 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.71
  retrieving revision 1.138.2.72
  diff -u -r1.138.2.71 -r1.138.2.72
  --- changes.xml   27 Nov 2002 06:15:51 -  1.138.2.71
  +++ changes.xml   27 Nov 2002 10:58:22 -  1.138.2.72
  @@ -39,6 +39,11 @@

   

  +  
  +   Allow to set the i18n transformer's locale from the sitemap as a 
  +   parameter (ported from 2.1-dev). The old behavior, based on LocaleAction is 
preserved
  +   only for 2.0.x versions and will be removed from the further releases (2.1 and 
higher).
  +  
 
  New build target "validate-config" to conduct build-time validation of some
  core important configuration files using RELAX NG (call it manually with:
  
  
  

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




cvs commit: xml-cocoon2 changes.xml module.xml properties.xml

2002-11-25 Thread nicolaken
nicolaken2002/11/25 07:18:30

  Modified:.changes.xml module.xml properties.xml
  Log:

  When a part of a pipeline aggregation fails, cocoon will no more silently return
  without reporting an error.
  Now, upon request of an erroneous page, the result is that I can see all parts, 
that have been processed so
  far on the screen and I see the error infos positioned at the bottom of the page.

  
  Revision  ChangesPath
  1.287 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.286
  retrieving revision 1.287
  diff -u -r1.286 -r1.287
  --- changes.xml   25 Nov 2002 14:06:37 -  1.286
  +++ changes.xml   25 Nov 2002 15:18:30 -  1.287
  @@ -40,6 +40,10 @@

   

  +  
  +   Moved POI to a block. Applied patch without moving the core elementprocessor
  +   classes in the block.
  +   
 
   When a part of a pipeline aggregation fails, cocoon will no more silently 
return 
   without reporting an error.
  
  
  
  1.17  +20 -0 xml-cocoon2/module.xml
  
  Index: module.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/module.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- module.xml11 Nov 2002 11:05:00 -  1.16
  +++ module.xml25 Nov 2002 15:18:30 -  1.17
  @@ -313,6 +313,26 @@
to="[EMAIL PROTECTED]"/>
 
 
  +  
  +org.apache.cocoon
  +
  +
  +  
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  + 
  +
  +  
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-23 Thread jeremy
jeremy  2002/11/23 06:16:03

  Modified:.changes.xml
  Log:
  Adding my changes, please note, I put the wrong checkin message in 
LuceneIndexContentHandler, so will commit again.
  
  Revision  ChangesPath
  1.285 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.284
  retrieving revision 1.285
  diff -u -r1.284 -r1.285
  --- changes.xml   20 Nov 2002 10:09:23 -  1.284
  +++ changes.xml   23 Nov 2002 14:16:03 -  1.285
  @@ -40,6 +40,11 @@

   

  +  
  +   Added 'query' sitemap parameter to SearchTransformer. Added configuration 
parameters to 
  +   SimpleLuceneXMLIndexerImpl for choosing the content-view and which tags you want 
stored
  +   as fields by the indexer. Added field storage implementation to 
LuceneIndexContentHandler.
  +
 
  RequestLifecycleComponents were not handled properly when the cocoon: protocol 
is used
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-20 Thread cziegeler
cziegeler2002/11/20 03:21:50

  Modified:src/java/org/apache/cocoon Tag: cocoon_2_0_3_branch
Cocoon.java
   src/java/org/apache/cocoon/components Tag:
cocoon_2_0_3_branch CocoonComponentManager.java
   src/java/org/apache/cocoon/components/source Tag:
cocoon_2_0_3_branch SitemapSource.java
   .Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Fixing bug 12293: RequestLifecycleComponents are not handled properly when the 
cocoon: protocol is used
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.22.2.5  +4 -2  xml-cocoon2/src/java/org/apache/cocoon/Cocoon.java
  
  Index: Cocoon.java
  ===
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/Cocoon.java,v
  retrieving revision 1.22.2.4
  retrieving revision 1.22.2.5
  diff -u -r1.22.2.4 -r1.22.2.5
  --- Cocoon.java   21 Sep 2002 02:34:08 -  1.22.2.4
  +++ Cocoon.java   20 Nov 2002 11:21:49 -  1.22.2.5
  @@ -568,6 +568,7 @@
   throw new IllegalStateException("You cannot process a Disposed Cocoon 
engine.");
   }
   
  +Object key = CocoonComponentManager.startProcessing(environment);
   try {
   if (this.getLogger().isDebugEnabled()) {
   ++activeRequestCount;
  @@ -586,7 +587,8 @@
   }
   }
   } finally {
  -if (this.getLogger().isDebugEnabled()) {
  +   CocoonComponentManager.endProcessing(key);
  +   if (this.getLogger().isDebugEnabled()) {
   --activeRequestCount;
   }
   }
  
  
  
  No   revision
  
  
  No   revision
  
  
  1.13.2.4  +254 -40   
xml-cocoon2/src/java/org/apache/cocoon/components/CocoonComponentManager.java
  
  Index: CocoonComponentManager.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/CocoonComponentManager.java,v
  retrieving revision 1.13.2.3
  retrieving revision 1.13.2.4
  diff -u -r1.13.2.3 -r1.13.2.4
  --- CocoonComponentManager.java   4 Aug 2002 04:11:52 -   1.13.2.3
  +++ CocoonComponentManager.java   20 Nov 2002 11:21:49 -  1.13.2.4
  @@ -51,15 +51,20 @@
   package org.apache.cocoon.components;
   
   import java.io.IOException;
  +import java.util.ArrayList;
   import java.util.HashMap;
   import java.util.Iterator;
  +import java.util.List;
   import java.util.Map;
   import java.util.Stack;
   import org.apache.avalon.excalibur.component.ExcaliburComponentManager;
   import org.apache.avalon.framework.component.Component;
   import org.apache.avalon.framework.component.ComponentException;
   import org.apache.avalon.framework.component.ComponentManager;
  +import org.apache.avalon.framework.component.ComponentSelector;
   import org.apache.avalon.framework.component.Recomposable;
  +import org.apache.avalon.framework.configuration.Configuration;
  +import org.apache.avalon.framework.configuration.DefaultConfiguration;
   import org.apache.cocoon.ProcessingException;
   import org.apache.cocoon.Processor;
   import org.apache.cocoon.environment.Environment;
  @@ -78,6 +83,12 @@
   public final class CocoonComponentManager
   extends ExcaliburComponentManager
   {
  + 
  +/** The key used to store the current process environment */
  +private static final String PROCESS_KEY =
  +   "org.apache.cocoon.components.CocoonComponentManager";
  + 
  +
   /** The environment information */
   private static InheritableThreadLocal environmentStack = new 
InheritableThreadLocal();
   
  @@ -105,9 +116,6 @@
   super(manager);
   }
   
  -private static final Integer ONE = new Integer(1);
  -private static final Integer TWO = new Integer(2);
  -
   /**
* This hook must be called by the sitemap each time a sitemap is entered
*/
  @@ -118,14 +126,13 @@
   environmentStack.set(new Stack());
   }
   final Stack stack = (Stack)environmentStack.get();
  -if (!stack.empty() ) {
  -final Object[] objects = (Object[])stack.peek();
  -if ( objects[1] == objectModel ) {
  -stack.push(new Object[] {env, objectModel, objects[2], TWO, 
processor});
  -return;
  -}
  +stack.push(new Object[] {env, processor});
  +
  +EnvironmentDescription desc = 
(EnvironmentDescription)objectModel.get(PROCESS_KEY);
  +if ( null != desc ) {
  +// this is only for 2.1
  +// desc.addSitemapConfiguration(processor.getComponentConfigurations());
   }
  -stack.push(new Object[] {env, objectModel, new HashMap(5), ONE, processor})

cvs commit: xml-cocoon2 changes.xml

2002-11-20 Thread cziegeler
cziegeler2002/11/20 02:09:23

  Modified:.changes.xml
  Log:
  Fixing bug 12293: RequestLifecycleComponents are not handled properly when the 
cocoon: protocol is used
  
  Revision  ChangesPath
  1.284 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.283
  retrieving revision 1.284
  diff -u -r1.283 -r1.284
  --- changes.xml   17 Nov 2002 18:00:02 -  1.283
  +++ changes.xml   20 Nov 2002 10:09:23 -  1.284
  @@ -40,6 +40,9 @@

   

  +  
  +   RequestLifecycleComponents were not handled properly when the cocoon: protocol 
is used
  +  
 
  Changed SimpleFormTransformer to use InputModules.
   
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-17 Thread haul
haul2002/11/17 11:01:39

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:

 Changed SimpleFormTransformer to use InputModules.


 Changed InputModules to return Iterator instead of Enumeration. New abstract
 "meta" module to make new meta modules easier. Stripped "meta" from defaults
 module. Added JXPathMetaModule. Added extension classes and packages to all
 modules that are based on JXPath.


 Improved support for CLOB and BLOB columns in modular database actions.


 New chaining InputModule that allows to use additional modules when an attribute 
is not
 present or null.


 Changed defaults of InputModule names in many places to new names.

  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.68 +20 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.67
  retrieving revision 1.138.2.68
  diff -u -r1.138.2.67 -r1.138.2.68
  --- changes.xml   14 Nov 2002 15:31:00 -  1.138.2.67
  +++ changes.xml   17 Nov 2002 19:01:39 -  1.138.2.68
  @@ -39,6 +39,25 @@

   

  +  
  +   Changed SimpleFormTransformer to use InputModules.
  +
  +  
  +   Changed InputModules to return Iterator instead of Enumeration. New abstract
  +   "meta" module to make new meta modules easier. Stripped "meta" from defaults
  +   module. Added JXPathMetaModule. Added extension classes and packages to all 
  +   modules that are based on JXPath.
  +
  +  
  +   Improved support for CLOB and BLOB columns in modular database actions.
  +  
  +  
  +   New chaining InputModule that allows to use additional modules when an attribute 
is not
  +   present or null.
  +  
  +  
  +   Changed defaults of InputModule names in many places to new names.
  +  
 
  Fixing namespace handling of SQLTransformer.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-14 Thread cziegeler
cziegeler2002/11/14 07:31:01

  Modified:src/java/org/apache/cocoon/transformation Tag:
cocoon_2_0_3_branch SQLTransformer.java
   .Tag: cocoon_2_0_3_branch changes.xml
  Log:

 Fixing namespace handling of SQLTransformer.

  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.10.2.4  +1 -31 
xml-cocoon2/src/java/org/apache/cocoon/transformation/Attic/SQLTransformer.java
  
  Index: SQLTransformer.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/transformation/Attic/SQLTransformer.java,v
  retrieving revision 1.10.2.3
  retrieving revision 1.10.2.4
  diff -u -r1.10.2.3 -r1.10.2.4
  --- SQLTransformer.java   23 Oct 2002 04:31:04 -  1.10.2.3
  +++ SQLTransformer.java   14 Nov 2002 15:30:59 -  1.10.2.4
  @@ -173,9 +173,6 @@
   /** Namespace uri to output */
   protected String outUri;
   
  -/** The prefix of our namespace to listen to */
  -protected String inPrefix;
  -
   /** The database selector */
   protected ComponentSelector dbSelector;
   
  @@ -219,7 +216,6 @@
   super.recycle();
   this.queries.clear();
   this.outUri = null;
  -this.inPrefix = null;
   this.outPrefix = null;
   this.manager.release(this.parser);
   this.parser = null;
  @@ -688,32 +684,6 @@
   return name;
   }
   }
  -
  -/**
  - * ContentHandler method
  - */
  -public void startPrefixMapping( String prefix, String uri )
  -throws SAXException {
  -if ( uri.equals( NAMESPACE ) ) {
  -if (inPrefix != null) {
  -super.startPrefixMapping( inPrefix, NAMESPACE);
  -}
  -inPrefix = prefix;
  -} else {
  -super.startPrefixMapping( prefix, uri );
  -}
  -}
  -
  -/**
  - * ContentHandler method
  - */
  -public void endPrefixMapping( String prefix )
  -throws SAXException {
  -if ( !prefix.equals( inPrefix ) ) {
  -super.endPrefixMapping( prefix );
  -}
  -}
  -
   
   /**
* ContentHandler method
  
  
  
  No   revision
  
  
  No   revision
  
  
  1.138.2.67 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.66
  retrieving revision 1.138.2.67
  diff -u -r1.138.2.66 -r1.138.2.67
  --- changes.xml   31 Oct 2002 16:22:49 -  1.138.2.66
  +++ changes.xml   14 Nov 2002 15:31:00 -  1.138.2.67
  @@ -39,6 +39,9 @@

   

  +  
  +   Fixing namespace handling of SQLTransformer.
  +  
 
   New ZipArchiveSerializer to build zip files aggregating various sources
   as archive entries. Can be used to generate zip files, sxw files (OpenOffice),
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-13 Thread kpiroumian
kpiroumian2002/11/13 14:52:10

  Modified:.changes.xml
  Log:
  New i18n implementation.
  New input module for system (environment) variables.
  According samples updated.
  
  Revision  ChangesPath
  1.281 +19 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.280
  retrieving revision 1.281
  diff -u -r1.280 -r1.281
  --- changes.xml   11 Nov 2002 14:20:50 -  1.280
  +++ changes.xml   13 Nov 2002 22:52:09 -  1.281
  @@ -40,6 +40,24 @@

   

  +  
  +  Added SystemPropertyModule input module to enable environment variables
  +  in sitemap attributes. E.g.: 
  +  
  +  
  +  
  +  Added resource bundle component interfaces to allow different 
  +  implementations to be used for i18n.
  +  
  +  
  +  Extended implementation of i18n transformer to allow markup in translations,
  +  inline translations (conditional processing) and named parameters.
  +  Now i18n transformer is cachable, this will affect on dynamic markup, 
  +  e.g. i18n:date-time.
  +
  +  WARN: The namespace of i18n markup is changed to 
"http://apache.org/cocoon/i18n/2.1";.
  +  i18n samples are updated to demonstrate the new features.
  +  
 
XMLForm Howto to reflect the fact that there is no
   need for manual handling of unchecked check-boxes.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-11 Thread cziegeler
cziegeler2002/11/11 06:20:50

  Modified:src/java/org/apache/cocoon/transformation
TraxTransformer.java
   src/webapp sitemap.xmap
   .changes.xml
  Log:
  Readding use-deli configuration to trax transformer - discussed this with Mark.
  
  Revision  ChangesPath
  1.36  +15 -5 
xml-cocoon2/src/java/org/apache/cocoon/transformation/TraxTransformer.java
  
  Index: TraxTransformer.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/transformation/TraxTransformer.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- TraxTransformer.java  31 Oct 2002 03:21:13 -  1.35
  +++ TraxTransformer.java  11 Nov 2002 14:20:49 -  1.36
  @@ -128,14 +128,14 @@
* session-id-from-cookie, session-id-from-url, session-valid, session-id.
* This property is false by default.
*
  - *  The  configuration is not supported anymore.
  + *  The  makes the DELI information available.
* If DELI component is configured in the cocoon.xconf, transformer will
  - * always make all the properties from the CC/PP profile resolved from
  + * make all the properties from the CC/PP profile resolved from
* the request available in the XSLT stylesheets.  CC/PP support is
* provided via the DELI library. If the request does not provide
* CC/PP information, then CC/PP information can added via the DELI
* legacy device database.
  - *
  + * 
* Note that these properties might introduces issues concerning
* cacheability of the generated output of this transformer.
*
  @@ -176,6 +176,10 @@
   /** The DELI service instance */
   private Deli deli = null;
   
  +/** Should we make the DELI CC/PP profile available to the stylesheet (default 
is off) */
  +private boolean useDeli = false;
  +private boolean _useDeli = false;
  +
   /** Should we make the request parameters available in the stylesheet? (default 
is off) */
   private boolean useParameters = false;
   private boolean _useParameters = false;
  @@ -245,6 +249,10 @@
   this.useSessionInfo = child.getValueAsBoolean(false);
   this._useSessionInfo = this.useSessionInfo;
   
  +child = conf.getChild("use-deli");
  +this.useDeli = child.getValueAsBoolean(false);
  +this._useDeli = this.useDeli;
  +
   child = conf.getChild("transformer-factory");
   
   // traxFactory is null, if transformer-factory config is unspecified
  @@ -255,6 +263,7 @@
   this.getLogger().debug("Use cookies is " + this.useCookies + " for 
" + this);
   this.getLogger().debug("Use browser capabilities is " + 
this.useBrowserCap + " for " + this);
   this.getLogger().debug("Use session info is " + this.useSessionInfo 
+ " for " + this);
  +this.getLogger().debug("Use DELI is " + this.useDeli + " for " + 
this);
   
   if (this.traxFactory != null) {
   this.getLogger().debug("Use TrAX Transformer Factory " + 
this.traxFactory);
  @@ -324,6 +333,7 @@
   _useBrowserCap = par.getParameterAsBoolean("use-browser-capabilities-db", 
this.useBrowserCap);
   _useCookies = par.getParameterAsBoolean("use-cookies", this.useCookies);
   _useSessionInfo = par.getParameterAsBoolean("use-session-info", 
this.useSessionInfo);
  +_useDeli = par.getParameterAsBoolean("use-deli", this.useDeli);
   
   if (this.getLogger().isDebugEnabled()) {
   this.getLogger().debug("Using stylesheet: '" + 
this.inputSource.getSystemId() + "' in " + this);
  @@ -521,7 +531,7 @@
   getLogger().error("Error setting Browser info", e);
   }
   
  -if (this.deli != null) {
  +if (this.deli != null && this._useDeli) {
   try {
   Request request = ObjectModelHelper.getRequest(objectModel);
   if (map == null) {
  
  
  
  1.83  +0 -4  xml-cocoon2/src/webapp/sitemap.xmap
  
  Index: sitemap.xmap
  ===
  RCS file: /home/cvs/xml-cocoon2/src/webapp/sitemap.xmap,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- sitemap.xmap  31 Oct 2002 03:21:13 -  1.82
  +++ sitemap.xmap  11 Nov 2002 14:20:50 -  1.83
  @@ -356,10 +356,6 @@
  On


  - 
 
   

  
  
  
  1.280 +1 -5  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.279
  retrieving revision 1.280
  diff -u -r1.279 -r1.280
  --- changes.xml   10 Nov 2002 17:31:36 -  

cvs commit: xml-cocoon2 changes.xml

2002-11-10 Thread ivelin
ivelin  2002/11/10 09:31:36

  Modified:.changes.xml
  Log:
  Updated Xalan libs to 2.4.1
  
  Revision  ChangesPath
  1.279 +18 -0 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.278
  retrieving revision 1.279
  diff -u -r1.278 -r1.279
  --- changes.xml   6 Nov 2002 18:23:12 -   1.278
  +++ changes.xml   10 Nov 2002 17:31:36 -  1.279
  @@ -40,8 +40,26 @@

   

  +  
  + XMLForm Howto to reflect the fact that there is no
  +need for manual handling of unchecked check-boxes.
  +  
  +  
  + Updated Xalan to 2.4.1
  +  
 
  Improved support for CLOB and BLOB columns in modular database actions.
  +  
  +  
  + Added a more sophisticated example in samples/webserviceproxy/cocoonhive.
  + Demonstrates a small virtual portal which embeds functionality
  + from Amazon and OpenWiki.
  +  
  +  
  + XMLFormTransformer now saves a list of referenced model properties,
  + which is later used to automatically populate with default values
  + properties which were not addressed in the http request (like unchecked
  + checkboxes). This applies to session scope forms only.
 
 
   New ZipArchiveSerializer to build zip files aggregating various sources
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-11-06 Thread haul
haul2002/11/06 10:23:12

  Modified:.changes.xml
  Log:
  
  
  Revision  ChangesPath
  1.278 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.277
  retrieving revision 1.278
  diff -u -r1.277 -r1.278
  --- changes.xml   31 Oct 2002 16:48:55 -  1.277
  +++ changes.xml   6 Nov 2002 18:23:12 -   1.278
  @@ -40,6 +40,9 @@

   

  +  
  +   Improved support for CLOB and BLOB columns in modular database actions.
  +  
 
   New ZipArchiveSerializer to build zip files aggregating various sources
   as archive entries. Can be used to generate zip files, sxw files (OpenOffice),
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-10-30 Thread vgritsenko
vgritsenko2002/10/30 19:23:15

  Modified:.changes.xml
  Log:
  TraxTransformer does not have use-deli parameter anymore
  
  Revision  ChangesPath
  1.276 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.275
  retrieving revision 1.276
  diff -u -r1.275 -r1.276
  --- changes.xml   29 Oct 2002 05:29:18 -  1.275
  +++ changes.xml   31 Oct 2002 03:23:15 -  1.276
  @@ -40,6 +40,10 @@

   

  +  
  +TraxTransformer does not have use-deli parameter anymore. If deli is
  +configured in the cocoon.xconf, it always will be used.
  +  
 
   CocoonServlet upload behavior now configurable from the web.xml.
   Configuration parameters are: autosave-uploads, overwrite-uploads,
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-10-30 Thread vgritsenko
vgritsenko2002/10/30 19:23:15

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  TraxTransformer does not have use-deli parameter anymore
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.65 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.64
  retrieving revision 1.138.2.65
  diff -u -r1.138.2.64 -r1.138.2.65
  --- changes.xml   29 Oct 2002 05:28:59 -  1.138.2.64
  +++ changes.xml   31 Oct 2002 03:23:15 -  1.138.2.65
  @@ -39,6 +39,10 @@

   

  +  
  +TraxTransformer does not have use-deli parameter anymore. If deli is
  +configured in the cocoon.xconf, it always will be used.
  +  
 
   CocoonServlet upload behavior now configurable from the web.xml.
   Configuration parameters are: autosave-uploads, overwrite-uploads,
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-10-28 Thread tcurdt
tcurdt  2002/10/28 07:48:27

  Modified:.changes.xml
  Log:
  moved the AbstractMultiAction from scratchpad into maintrunk
  
  Revision  ChangesPath
  1.273 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.272
  retrieving revision 1.273
  diff -u -r1.272 -r1.273
  --- changes.xml   23 Oct 2002 04:20:43 -  1.272
  +++ changes.xml   28 Oct 2002 15:48:27 -  1.273
  @@ -40,6 +40,11 @@

   

  +  
  +Renamed the AbstractMethodAction into AbstractMultiAction and
  +moved it from scratchpad into the maintrunk. Using it helps
  +reducing the amount of custom actions for a webapp.
  +  
 
   ReadDOMSessionTransformer now can work with any types of object
   (same mechanism as in  now used). Configuration
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-10-22 Thread vgritsenko
vgritsenko2002/10/22 21:20:44

  Modified:.changes.xml
  Log:
  document changes in ReadDOMSessionTransformer.java
  
  Revision  ChangesPath
  1.272 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.271
  retrieving revision 1.272
  diff -u -r1.271 -r1.272
  --- changes.xml   22 Oct 2002 03:21:58 -  1.271
  +++ changes.xml   23 Oct 2002 04:20:43 -  1.272
  @@ -41,6 +41,11 @@
   

 
  +ReadDOMSessionTransformer now can work with any types of object
  +(same mechanism as in  now used). Configuration
  +parameter dom-name renamed to attribute-name.
  +  
  +  
   Src attribute can be used now with SessionAttributeGenerator to specify
   session attribute name. Old syntax preserved.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-10-22 Thread vgritsenko
vgritsenko2002/10/22 21:20:43

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  document changes in ReadDOMSessionTransformer.java
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.62 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.61
  retrieving revision 1.138.2.62
  diff -u -r1.138.2.61 -r1.138.2.62
  --- changes.xml   22 Oct 2002 03:21:41 -  1.138.2.61
  +++ changes.xml   23 Oct 2002 04:20:43 -  1.138.2.62
  @@ -40,6 +40,11 @@
   

 
  +ReadDOMSessionTransformer now can work with any types of object
  +(same mechanism as in  now used). Configuration
  +parameter dom-name renamed to attribute-name.
  +  
  +  
   Src attribute can be used now with SessionAttributeGenerator to specify
   session attribute name. Old syntax preserved.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-10-18 Thread haul
haul2002/10/18 08:40:13

  Modified:.changes.xml
  Log:
  update changes.xml
  
  Revision  ChangesPath
  1.267 +12 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.266
  retrieving revision 1.267
  diff -u -r1.266 -r1.267
  --- changes.xml   18 Oct 2002 08:56:12 -  1.266
  +++ changes.xml   18 Oct 2002 15:40:13 -  1.267
  @@ -40,6 +40,17 @@

   

  +  
  +   New chaining InputModule that allows to use additional modules when an attribute 
is not
  +   present or null.
  +  
  +  
  +   Changed defaults of InputModule names in many places to new names.
  +  
  +  
  +   Started moving database related stuff (actions, transformers, readers) as well 
as HSQLDB to a new blocks.
  +   Samples have not yet moved to new block, datasource declaration has.
  +  
 
   Updated the draft DTD for sitemap.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml todo.xml

2002-10-18 Thread crossley
crossley2002/10/18 01:56:12

  Modified:src/webapp/WEB-INF/entities catalog
   .changes.xml todo.xml
  Added:   src/webapp/WEB-INF/entities sitemap-v03.dtd
  Log:
  Updated the draft DTD for sitemap.
  Submitted by: Colin Paul Adams <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.2   +2 -0  xml-cocoon2/src/webapp/WEB-INF/entities/catalog
  
  Index: catalog
  ===
  RCS file: /home/cvs/xml-cocoon2/src/webapp/WEB-INF/entities/catalog,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- catalog   2 Jul 2002 14:36:36 -   1.1
  +++ catalog   18 Oct 2002 08:56:12 -  1.2
  @@ -31,6 +31,8 @@
  "todo-v10.dtd"
   PUBLIC "-//APACHE//DTD Cocoon Sitemap V0.2//EN"
  "sitemap-v02.dtd"
  +PUBLIC "-//APACHE//DTD Cocoon Sitemap V0.3//EN"
  +   "sitemap-v03.dtd"
   
   -- enabling validation during Cocoon's own "build docs" --
   --   all *.xml require DTD for validation during "build docs" --
  
  
  
  1.1  xml-cocoon2/src/webapp/WEB-INF/entities/sitemap-v03.dtd
  
  Index: sitemap-v03.dtd
  ===
  
  
  
  
  http://apache.org/cocoon/sitemap/1.0";
  >
  
  
  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
   
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  1.266 +7 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.265
  retrieving revision 1.266
  diff -u -r1.265 -r1.266
  --- changes.xml   14 Oct 2002 14:31:27 -  1.265
  +++ changes.xml   18 Oct 2002 08:56:12 -  1.266
  @@ -40,6 +40,12 @@

   

  +  
  +Updated the draft DTD for sitemap.
  +  
  +  
  +Added a draft W3C XML Schema for sitemap.
  +  
 
   Removed deprecated notification classes in org.apache.cocoon.* and in
   org.apache.cocoon.sitemap.* and the deprecated methods in 
  
  
  
  1.44  +7 -2  xml-cocoon2/todo.xml
  
  Index: todo.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/todo.xml,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- todo.xml  27 Aug 2002 14:30:57 -  1.43
  +++ todo.xml  18 Oct 2002 08:56:12 -  1.44
  @@ -49,7 +49,12 @@
  
   
 
  -   For 2.1: Correct the sitemap DTD which is now broken and make sitemap validated.
  +   For 2.1: Fine-tune the draft Sitemap DTD -
  +   src/webapp/WEB-INF/entities/sitemap-v03.dtd
  +   (see internal comments). Tweak the default sitemaps to ensure that they
  +   validate. Fine-tune the draft Sitemap WXS too - 
  +   src/documentation/xdocs/drafts/sitemap-2.1-draft.xsd
  +   (see internal comments). Anyone for Relax NG?
  

 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-27 Thread giacomo

giacomo 2002/09/27 09:29:58

  Modified:.changes.xml
  Log:
  remove Loggable in favor of LogEnabled (and all abstract classes there of)
  
  Revision  ChangesPath
  1.262 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.261
  retrieving revision 1.262
  diff -u -r1.261 -r1.262
  --- changes.xml   25 Sep 2002 17:10:19 -  1.261
  +++ changes.xml   27 Sep 2002 16:29:58 -  1.262
  @@ -40,6 +40,11 @@

   

  +  
  +   Removed all references to Loggable in favor of LogEnabled (this includes
  +   references to common abstract classes as AbstractLoggable and 
  +   AbstractDualLogEnabled)
  +  
 
  Added support for using Avalon components as Axis service objects
  with the AxisRPCReader.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-25 Thread cziegeler

cziegeler2002/09/25 06:48:40

  Modified:src/java/org/apache/cocoon/webapps/session/transformation
SessionPreTransformer.java
   src/webapp/samples/portal/resources/auth
sunlet-customnews.xml
   src/webapp/samples/portal sitemap.xmap
   src/webapp/samples/portal/resources sunrise-loaduser.xml
userprofile.xml userstatus.xml
   .changes.xml
  Removed: src/java/org/apache/cocoon/webapps/session/transformation
ConnectTransformer.java
  Log:
  Removing include from session transformer and migrating to cinclude
  
  Revision  ChangesPath
  1.4   +2 -2  
xml-cocoon2/src/java/org/apache/cocoon/webapps/session/transformation/SessionPreTransformer.java
  
  Index: SessionPreTransformer.java
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/webapps/session/transformation/SessionPreTransformer.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SessionPreTransformer.java25 Sep 2002 12:03:08 -  1.3
  +++ SessionPreTransformer.java25 Sep 2002 13:48:40 -  1.4
  @@ -76,7 +76,7 @@
* @version CVS $Id$
   */
   public class SessionPreTransformer
  -extends ConnectTransformer {
  +extends AbstractSessionTransformer {
   
   /*
* The XML commands
  
  
  
  1.2   +8 -9  
xml-cocoon2/src/webapp/samples/portal/resources/auth/sunlet-customnews.xml
  
  Index: sunlet-customnews.xml
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/webapp/samples/portal/resources/auth/sunlet-customnews.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sunlet-customnews.xml 3 Jun 2002 11:45:54 -   1.1
  +++ sunlet-customnews.xml 25 Sep 2002 13:48:40 -  1.2
  @@ -1,12 +1,11 @@
   
   
  -http://cocoon.apache.org/session/1.0";>
  - 
  - 
  - 
  - 
http://p.moreover.com/cgi-local/page?index_+xml
  - 
  - 
  - 
  +http://cocoon.apache.org/session/1.0";
  +   xmlns:cinclude="http://apache.org/cocoon/include/1.0";>
  +
  + 
  + http://p.moreover.com/cgi-local/page?index_+xml
  + 
  +
   
  
  
  
  1.9   +1 -0  xml-cocoon2/src/webapp/samples/portal/sitemap.xmap
  
  Index: sitemap.xmap
  ===
  RCS file: /home/cvs/xml-cocoon2/src/webapp/samples/portal/sitemap.xmap,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- sitemap.xmap  25 Sep 2002 13:30:13 -  1.8
  +++ sitemap.xmap  25 Sep 2002 13:48:40 -  1.9
  @@ -158,6 +158,7 @@



  + 

 

  
  
  
  1.2   +6 -7  
xml-cocoon2/src/webapp/samples/portal/resources/sunrise-loaduser.xml
  
  Index: sunrise-loaduser.xml
  ===
  RCS file: 
/home/cvs/xml-cocoon2/src/webapp/samples/portal/resources/sunrise-loaduser.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sunrise-loaduser.xml  3 Jun 2002 11:45:54 -   1.1
  +++ sunrise-loaduser.xml  25 Sep 2002 13:48:40 -  1.2
  @@ -4,15 +4,14 @@
Description: load u user
   
   -->
  -http://cocoon.apache.org/session/1.0";>
  +http://cocoon.apache.org/session/1.0";
  +  xmlns:cinclude="http://apache.org/cocoon/include/1.0";>





  - http://cocoon.apache.org/session/1.0"; 
ignoreErrors="true">
  - 
  - resources/sunrise-user.xml
  - 
  - 
  +
  + resources/sunrise-user.xml
  +
   
  
  
  
  1.2   +7 -7  xml-cocoon2/src/webapp/samples/portal/resources/userprofile.xml
  
  Index: userprofile.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/src/webapp/samples/portal/resources/userprofile.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- userprofile.xml   3 Jun 2002 11:45:54 -   1.1
  +++ userprofile.xml   25 Sep 2002 13:48:40 -  1.2
  @@ -2,10 +2,10 @@
   
  -
  -http://cocoon.apache.org/session/1.0"; 
ignoreErrors="true">
  - 
  - profiles/userprofile-.xml
  - 
  -
  +http://cocoon.apache.org/session/1.0";
  +   xmlns:cinclude="http://apache.org/cocoon/include/1.0";>
  +
  +
  + profiles/userprofile-.xml
  +
   
  

cvs commit: xml-cocoon2 changes.xml

2002-09-25 Thread cziegeler

cziegeler2002/09/25 00:42:21

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Forgot to udpate changes
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.57 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.56
  retrieving revision 1.138.2.57
  diff -u -r1.138.2.56 -r1.138.2.57
  --- changes.xml   22 Sep 2002 04:49:15 -  1.138.2.56
  +++ changes.xml   25 Sep 2002 07:42:21 -  1.138.2.57
  @@ -39,6 +39,9 @@

   

  +  
  +Fixed prefix mapping for the sql transformer.
  +  
 
   FOP user configuration can now be specified as URL or relative path
   as the value of the >user-config< element.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-25 Thread cziegeler

cziegeler2002/09/25 00:37:36

  Modified:.changes.xml
  Log:
  Forgot to udpate changes
  
  Revision  ChangesPath
  1.258 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.257
  retrieving revision 1.258
  diff -u -r1.257 -r1.258
  --- changes.xml   23 Sep 2002 03:30:44 -  1.257
  +++ changes.xml   25 Sep 2002 07:37:36 -  1.258
  @@ -40,6 +40,9 @@

   

  +  
  +Fixed prefix mapping for the sql transformer.
  +  
 
   FOP user configuration can now be specified as URL or relative path
   as the value of the >user-config< element.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-20 Thread vgritsenko

vgritsenko2002/09/20 20:43:30

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  reflect bugfix
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.51 +2 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.50
  retrieving revision 1.138.2.51
  diff -u -r1.138.2.50 -r1.138.2.51
  --- changes.xml   21 Sep 2002 03:04:20 -  1.138.2.50
  +++ changes.xml   21 Sep 2002 03:43:30 -  1.138.2.51
  @@ -46,7 +46,7 @@
   ComponentSelectors. This bug is the cause of some NPEs in the XSLT
   processor.
 
  -  
  +  
   Improve backward compatibility: FilePartFile needs toString() method to
   work with code written for Cocoon 2.0.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-20 Thread vgritsenko

vgritsenko2002/09/20 20:04:20

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  mention fix
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.50 +8 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.49
  retrieving revision 1.138.2.50
  diff -u -r1.138.2.49 -r1.138.2.50
  --- changes.xml   17 Sep 2002 15:54:04 -  1.138.2.49
  +++ changes.xml   21 Sep 2002 03:04:20 -  1.138.2.50
  @@ -39,6 +39,13 @@

   

  +  
  +Fix sitemap reloading bug: When parent sitemap is modified, it is
  +recompiled and reloaded. All sub-sitemaps of this sitemap also has
  +to be reloaded because they have references to the parent sitemap's
  +ComponentSelectors. This bug is the cause of some NPEs in the XSLT
  +processor.
  +  
 
   Improve backward compatibility: FilePartFile needs toString() method to
   work with code written for Cocoon 2.0.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-20 Thread kpiroumian

kpiroumian2002/09/20 16:06:01

  Modified:.changes.xml
  Log:
  Input modules for Request and Session properties.
  Implementation is based on JXPath therefore XPath
  expressions are also supported.
  
  Revision  ChangesPath
  1.253 +7 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.252
  retrieving revision 1.253
  diff -u -r1.252 -r1.253
  --- changes.xml   20 Sep 2002 18:33:40 -  1.252
  +++ changes.xml   20 Sep 2002 23:06:01 -  1.253
  @@ -40,6 +40,12 @@

   

  +  
  +Added JXPath based input modules for Request and Session properties.
  +Demonstration sample is also added.
  +RequestContextPathModule and RequestURIModules are obsolete now and
  +will be removed.
  +  
 
   Updated the Jisp store system to the new Jisp version and added the missing 
clear()
   and keys() methods.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-20 Thread froehlich

froehlich2002/09/20 11:33:40

  Modified:.changes.xml
  Log:
  reflect changes
  
  Revision  ChangesPath
  1.252 +5 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.251
  retrieving revision 1.252
  diff -u -r1.251 -r1.252
  --- changes.xml   17 Sep 2002 15:56:09 -  1.251
  +++ changes.xml   20 Sep 2002 18:33:40 -  1.252
  @@ -40,6 +40,10 @@

   

  +  
  +Updated the Jisp store system to the new Jisp version and added the missing 
clear()
  +and keys() methods.
  +  
 
   Improve backward compatibility: FilePartFile needs toString() method to
   work with code written for Cocoon 2.0.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-06 Thread ovidiu

ovidiu  2002/09/06 18:46:33

  Modified:.changes.xml
  Log:

  Don't explicitly redirect to the cocoon:/ pipeline in
  AbstractInterpreter.forwardTo(), do it instead in
  system.js. Suggestion from mailto:[EMAIL PROTECTED]";>Ramy Mamdouh .


  Fixed code generation problem in the jpath.xsl. Patch from Per-Olof Noren.

  
  Revision  ChangesPath
  1.241 +10 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.240
  retrieving revision 1.241
  diff -u -r1.240 -r1.241
  --- changes.xml   6 Sep 2002 03:35:53 -   1.240
  +++ changes.xml   7 Sep 2002 01:46:33 -   1.241
  @@ -39,6 +39,15 @@

   

  +  
  +Don't explicitly redirect to the cocoon:/ pipeline in
  +AbstractInterpreter.forwardTo(), do it instead in
  +system.js. Suggestion from mailto:[EMAIL PROTECTED]";>Ramy Mamdouh 
.
  +  
  +  
  +Fixed code generation problem in the jpath.xsl. Patch from Per-Olof Noren.
  +  
 
   SearchGenerator now includes  elements into 
   element. These elements contain stored fields of a found Document,
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-05 Thread ovidiu

ovidiu  2002/09/05 17:35:16

  Modified:.changes.xml
  Log:

 New user login and preferences sample to show the control flow
 layer.


 The control flow layer can now save the global JavaScript scope in
 the servlet session object. This allows the value of global
 variables to be saved between different top-level function
 invocations.

  
  Revision  ChangesPath
  1.239 +12 -2 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.238
  retrieving revision 1.239
  diff -u -r1.238 -r1.239
  --- changes.xml   3 Sep 2002 10:10:47 -   1.238
  +++ changes.xml   6 Sep 2002 00:35:16 -   1.239
  @@ -28,7 +28,7 @@
 
 
 
  -  
  +  
 
 
 
  @@ -39,6 +39,16 @@

   

  +  
  +   New user login and preferences sample to show the control flow
  +   layer.
  +  
  +  
  +   The control flow layer can now save the global JavaScript scope in
  +   the servlet session object. This allows the value of global
  +   variables to be saved between different top-level function
  +   invocations.
  +  
 
  Profiler components extended to store intermediate SAX
  fragments, and also the some informations about the
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-09-03 Thread stephan

stephan 2002/09/03 03:10:47

  Modified:.changes.xml
  Log:
  Add new point about the profiler components.
  
  Revision  ChangesPath
  1.238 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.237
  retrieving revision 1.238
  diff -u -r1.237 -r1.238
  --- changes.xml   24 Aug 2002 17:34:50 -  1.237
  +++ changes.xml   3 Sep 2002 10:10:47 -   1.238
  @@ -39,6 +39,11 @@

   

  +  
  +   Profiler components extended to store intermediate SAX
  +   fragments, and also the some informations about the
  +   environment, thanks to Bruno Dumon.
  +  
 
  Made Commandline Cocoon (Main.java) verbose output (-V option)
  less cluttered and grouped the log and output methods.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-08-19 Thread stephan

stephan 2002/08/19 01:27:42

  Modified:.changes.xml
  Log:
  Two entries about the changes of chaperon and WriteableSoure added.
  
  Revision  ChangesPath
  1.235 +8 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.234
  retrieving revision 1.235
  diff -u -r1.234 -r1.235
  --- changes.xml   15 Aug 2002 03:13:46 -  1.234
  +++ changes.xml   19 Aug 2002 08:27:42 -  1.235
  @@ -39,6 +39,13 @@

   

  +  
  +   Add the methods 'copy', 'move' and 'delete' to the WriteableSource 
  +   interface.
  +  
  +  
  +   Added the Chaperon components, examples and docs into the main tree.
  +  
 
   In addition to attributes in same namespace with elements,
   link serializer reacts on non-namespaced attributes too. This allows
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-08-12 Thread vgritsenko

vgritsenko2002/08/12 19:37:30

  Modified:.changes.xml
  Log:
  jisp store is default
  
  Revision  ChangesPath
  1.233 +6 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.232
  retrieving revision 1.233
  diff -u -r1.232 -r1.233
  --- changes.xml   13 Aug 2002 02:33:26 -  1.232
  +++ changes.xml   13 Aug 2002 02:37:29 -  1.233
  @@ -39,6 +39,11 @@

   

  +  
  +   Changed default persistence store to the JispFilesystemStore.
  +   To switch back to FilesystemStore, remove jisp.jar and rebuild Cocoon
  +   (or simply edit cocoon.xconf)
  +  
 
  Added some more types understood by modular database actions.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-08-12 Thread vgritsenko

vgritsenko2002/08/12 19:33:26

  Modified:.changes.xml
  Log:
  Sorry, Stephan, seems that bug is still here.
  
  Revision  ChangesPath
  1.232 +3 -3  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.231
  retrieving revision 1.232
  diff -u -r1.231 -r1.232
  --- changes.xml   9 Aug 2002 08:41:16 -   1.231
  +++ changes.xml   13 Aug 2002 02:33:26 -  1.232
  @@ -175,10 +175,10 @@
  Applied patch to add javascript support for the mozilla browser for transforming 
xml
  to html.
 
  -  
  +
 
  The OASIS Catalog and the entities (DTDs, entity sets, etc.) have moved
  to WEB-INF/entities and the CatalogManager.properties file has moved to
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-08-11 Thread haul

haul2002/08/11 13:18:40

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.45 +40 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.44
  retrieving revision 1.138.2.45
  diff -u -r1.138.2.44 -r1.138.2.45
  --- changes.xml   5 Aug 2002 11:12:06 -   1.138.2.44
  +++ changes.xml   11 Aug 2002 20:18:39 -  1.138.2.45
  @@ -39,6 +39,45 @@

   

  +  
  +   Backport usage of InputModules to compiled sitemap.
  +  
  +  
  +   Sync modules and related components with HEAD.
  +  
  +  
  +   Added some more types understood by modular database actions.
  +  
  +  
  +   Request logicsheet: Fix session tags.
  +  
  +  
  +   Added some more InputModules.
  +  
  +  
  +   Changed existing OutputModules to not use ":" to separate key prefix from
  +   suffix if prefix is an empty string.
  +  
  +  
  +   Simple Formvalidation: FormValidatorAction sets attribute "*" to indicate
  +   overall validation status. Added SimpleFormTransformer that fills XHTML form
  +   fields with values from request parameters and allows conditional error tags
  +   depending on validation result. This removes the requirement for
  +   XSP. Changed ordering of error levels: "notpresent" (indicates that no
  +   validation result is present for this parameter) moves between "ok" and
  +   "error". New error level "maxerror" used in conjunction with the
  +   transformer, is never set, used as upper bound.
  +  
  +  
  +   (Modular) DatabaseActions: select produced wrong result if no rows were
  +   found, query action returned broken result.
  +  
  +  
  +   ESQL: Allow arbitrary types for prepared and callable statements via
  +   dynamically loading classes like the SQLTransformer does. Is-null now uses
  +   dynamic colum specification. Fixed skip-row feature, which was off by one.
  +   Added tag to get connection meta data.
  +  
 
   Fixed NPE in the recycling phase of content aggregation.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-08-09 Thread haul

haul2002/08/09 01:41:16

  Modified:.changes.xml
  Log:
  
  
  Revision  ChangesPath
  1.231 +34 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.230
  retrieving revision 1.231
  diff -u -r1.230 -r1.231
  --- changes.xml   7 Aug 2002 06:50:05 -   1.230
  +++ changes.xml   9 Aug 2002 08:41:16 -   1.231
  @@ -39,6 +39,39 @@

   

  +  
  +   Added some more types understood by modular database actions.
  +  
  +  
  +   Request logicsheet: Fix session tags.
  +  
  +  
  +   Added some more InputModules.
  +  
  +  
  +   Changed existing OutputModules to not use ":" to separate key prefix from
  +   suffix if prefix is an empty string.
  +  
  +  
  +   Simple Formvalidation: FormValidatorAction sets attribute "*" to indicate
  +   overall validation status. Added SimpleFormTransformer that fills XHTML form
  +   fields with values from request parameters and allows conditional error tags
  +   depending on validation result. This removes the requirement for
  +   XSP. Changed ordering of error levels: "notpresent" (indicates that no
  +   validation result is present for this parameter) moves between "ok" and
  +   "error". New error level "maxerror" used in conjunction with the
  +   transformer, is never set, used as upper bound.
  +  
  +  
  +   (Modular) DatabaseActions: select produced wrong result if no rows were
  +   found, query action returned broken result.
  +  
  +  
  +   ESQL: Allow arbitrary types for prepared and callable statements via
  +   dynamically loading classes like the SQLTransformer does. Is-null now uses
  +   dynamic colum specification. Fixed skip-row feature, which was off by one.
  +   Added tag to get connection meta data.
  +  
 
  RequestGenerator does optionally output request parameters.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-08-04 Thread huber

huber   2002/08/04 11:28:16

  Modified:.changes.xml
  Log:
  Output extra locator info if included Throwable of ProcessingException is
  SAXParseException or TransformerException.
  FIX NPE in 
org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline,
  if content is malformed, and there exists an cached response the
  validity[] contains null entries.
  Fix CocoonCrawlerImpl, check if contentType is not null, and always close the 
BufferedReader at the end.
  Added cocoon-docs mailinglist to mail-archives.xml.
  
  Revision  ChangesPath
  1.229 +16 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.228
  retrieving revision 1.229
  diff -u -r1.228 -r1.229
  --- changes.xml   4 Aug 2002 05:08:44 -   1.228
  +++ changes.xml   4 Aug 2002 18:28:16 -   1.229
  @@ -39,6 +39,21 @@

   

  +  
  +Output extra locator info if included Throwable of ProcessingException is
  +SAXParseException or TransformerException.
  +  
  +   
  +FIX NPE in 
org.apache.cocoon.components.pipeline.impl.AbstractCachingProcessingPipeline, 
  +if content is malformed, and there exists an cached response the 
  +validity[] contains null entries.
  +  
  +  
  +Fix CocoonCrawlerImpl, check if contentType is not null, and always close the 
BufferedReader at the end.
  +  
  +  
  +Added cocoon-docs mailinglist to mail-archives.xml.
  +  
 
    includes any object, converting it to string.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-23 Thread vgritsenko

vgritsenko2002/07/23 20:38:45

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  update hsqldb; implement proper shutdown
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.36 +4 -1  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.35
  retrieving revision 1.138.2.36
  diff -u -r1.138.2.35 -r1.138.2.36
  --- changes.xml   17 Jul 2002 13:23:41 -  1.138.2.35
  +++ changes.xml   24 Jul 2002 03:38:45 -  1.138.2.36
  @@ -39,6 +39,9 @@

   

  +  
  +Update HSQLDB to version 1.7.0. Now it properly shuts down with Cocoon.
  +  
 
   All log messages from FOP now go into the logs instead of printing them to the 
screen.
 
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-23 Thread tcurdt

tcurdt  2002/07/23 00:36:34

  Modified:.changes.xml
  Log:
  forgot to actually tell *what* I updated
  
  Revision  ChangesPath
  1.219 +2 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.218
  retrieving revision 1.219
  diff -u -r1.218 -r1.219
  --- changes.xml   23 Jul 2002 02:06:29 -  1.218
  +++ changes.xml   23 Jul 2002 07:36:34 -  1.219
  @@ -44,7 +44,7 @@
   iText also provides support for RTF and HTML
 
 
  -Updated jar to latest CVS versions. Especially due to some xerces bugs in the 
2.0 release
  +Updated xerces, xalan, xml-apis jars to their latest CVS versions. Especially 
due to some xerces bugs in the 2.0 release
 
 
   Made docs target use logging to file via the logkit.xconf and added informative 
System.out messages for the
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-15 Thread cziegeler

cziegeler2002/07/15 03:23:14

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  Syncing changes
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.33 +6 -5  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.32
  retrieving revision 1.138.2.33
  diff -u -r1.138.2.32 -r1.138.2.33
  --- changes.xml   15 Jul 2002 10:12:34 -  1.138.2.32
  +++ changes.xml   15 Jul 2002 10:23:14 -  1.138.2.33
  @@ -21,14 +21,15 @@
 
 
 
  -  
  +  
 
 
  +  
 
 
  +  
 
 
  -  
 
 
 
  @@ -150,7 +151,7 @@
 
  Additional input modules: Date, Digest, ConstantString, Random, NullInput, 
Collection
 
  -  
  +  
  Sendmail logicsheet works again.
 
 
  @@ -245,7 +246,7 @@
 
 
  Partial commit of new samples structure.
  -   Samples go in samples/ dir with theit own sitemap.
  +   Samples go in samples/ dir with their own sitemap.
  All scratchpad samples that are in the samples/ subdir are 
  copied in webapp samples automatically by installscratchpadwar 
  target.  
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-13 Thread vgritsenko

vgritsenko2002/07/13 08:09:21

  Modified:.changes.xml
  Log:
  nitpicking
  
  Revision  ChangesPath
  1.212 +6 -6  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.211
  retrieving revision 1.212
  diff -u -r1.211 -r1.212
  --- changes.xml   12 Jul 2002 10:26:53 -  1.211
  +++ changes.xml   13 Jul 2002 15:09:21 -  1.212
  @@ -326,9 +326,9 @@
  the number of affected rows as sitemap variable.
 
 
  -  Locale selection for I18nTransformer changed to use parameter set from 
sitemap. 
  -  The old behavior (implicit locale selection using LocaleAction) is not 
supported any more.
  -  i18n samples are refactored, redesigned, new translations are added.
  +Locale selection for I18nTransformer changed to use parameter set from sitemap. 
  +The old behavior (implicit locale selection using LocaleAction) is not 
supported any more.
  +i18n samples are refactored, redesigned, new translations are added.
  
 
   Integrated the new Avalon Excalibur Source Resolving architecture. This 
deprecates
  @@ -409,8 +409,8 @@
   will come soon on the compiled engine.
 
 
  - Small optimization to XConfTool to check if the
  - file is actually a XConfTool file.
  +Small optimization to XConfTool to check if the file is actually
  +an XConfTool file.
 
 
   Added LinkStatusGenerator donated by Michael Homeijer and accompanying sample
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-13 Thread vgritsenko

vgritsenko2002/07/13 08:09:21

  Modified:.Tag: cocoon_2_0_3_branch changes.xml
  Log:
  nitpicking
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.138.2.31 +11 -14xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.138.2.30
  retrieving revision 1.138.2.31
  diff -u -r1.138.2.30 -r1.138.2.31
  --- changes.xml   12 Jul 2002 10:38:59 -  1.138.2.30
  +++ changes.xml   13 Jul 2002 15:09:20 -  1.138.2.31
  @@ -129,7 +129,7 @@
  Documentation To Do List and
  Documentation History of Changes.
 
  -   
  +  
   Fixed NPE in DefaultNotifyingBuilder.
 
  
  @@ -156,17 +156,17 @@
 
  Aliases in modular database actions now work correctly. All of them return
  the number of affected rows as sitemap variable.
  -   
  -   
  +  
  +  
  added new Selector component.
 
  -
  +  
   Updated commons-httpclient.
  -
  -   
  +  
  +  
   Fixing bug in NetUtils that altered in some cases the link reference in 
command-line mode.
 
  - 
  +  
   XScript works now (and all XScript SOAP samples).
 
 
  @@ -195,11 +195,9 @@
   Note: this is only available in the interpreted sitemap engine for now, and
   will come soon on the compiled engine.
 
  -  
  -Patch (Bug#: 7251) submitted by Marcus Crafter 
  -([EMAIL PROTECTED]):
  - Small optimization to XConfTool to check if the
  - file is actually a XConfTool file.
  +  
  +Small optimization to XConfTool to check if the file is actually
  +an XConfTool file.
 
 
   Added LinkStatusGenerator donated by Michael Homeijer and accompanying sample
  @@ -1114,4 +1112,3 @@

   
   
  -
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-10 Thread shannon

shannon 2002/07/10 11:42:49

  Modified:.changes.xml
  Log:
  fixed link to samples which breaks on live site
  
  Revision  ChangesPath
  1.208 +3 -3  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.207
  retrieving revision 1.208
  diff -u -r1.207 -r1.208
  --- changes.xml   10 Jul 2002 10:25:02 -  1.207
  +++ changes.xml   10 Jul 2002 18:42:49 -  1.208
  @@ -49,8 +49,8 @@
  WEB-INF/classes
 
 
  -   New Cocon Generator. Allows Embedding One Web Site in Another.
  -   WebServiceProxyGenerator Demo.
  +   New Cocoon Generator. Allows Embedding One Web Site in Another.
  +   WebServiceProxyGenerator Demo.
 
 
  XMLForm framework. Allows client independent form handling.
  
  
  

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




cvs commit: xml-cocoon2 changes.xml

2002-07-06 Thread crossley

crossley2002/07/06 22:08:34

  Modified:.changes.xml
  Log:
  Link to local documentation rather than hard-coded to the website.
  
  Revision  ChangesPath
  1.206 +2 -2  xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.205
  retrieving revision 1.206
  diff -u -r1.205 -r1.206
  --- changes.xml   7 Jul 2002 04:48:43 -   1.205
  +++ changes.xml   7 Jul 2002 05:08:34 -   1.206
  @@ -50,7 +50,7 @@
 
 
  XMLForm framework. Allows client independent form handling.
  -   See http://xml.apache.org/cocoon/howto/xmlform-wizard/howto-xmlform-wizard.html";>Documentation.
  +   See Documentation.
 
 
  Added "userhomes" in the webapp, that automounts the sitemaps
  
  
  

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




Re: cvs commit: xml-cocoon2 changes.xml

2002-07-02 Thread Nicola Ken Barozzi

[EMAIL PROTECTED] wrote:
> haul2002/07/02 01:36:35
...
> 
>   +  
>   +   Added support for actions and In-/OutputModules to the JavaScript
>   +   Flow. Caveat: Modifications of the Redirector object are ignored.
>   +  


Yeah! :-D

The flow is flowing! ;-)

-- 
Nicola Ken Barozzi   [EMAIL PROTECTED]
 - verba volant, scripta manent -
(discussions get forgotten, just code remains)
-


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




cvs commit: xml-cocoon2 changes.xml

2002-07-02 Thread haul

haul2002/07/02 01:36:35

  Modified:.changes.xml
  Log:
  
  
  Revision  ChangesPath
  1.202 +16 -1 xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.201
  retrieving revision 1.202
  diff -u -r1.201 -r1.202
  --- changes.xml   1 Jul 2002 08:54:57 -   1.201
  +++ changes.xml   2 Jul 2002 08:36:35 -   1.202
  @@ -39,6 +39,21 @@

   

  +  
  +   Added support for actions and In-/OutputModules to the JavaScript
  +   Flow. Caveat: Modifications of the Redirector object are ignored.
  +  
  +  
  +   Support for writing xLOBs to database through modular.DatabaseActions. Does
  +   not include a required InputModule that returns a JDBCxlobHelper to be
  +   passed to the action. 
  +  
  +  
  +   New DatabaseAction: DatabaseQueryAction. It works like the other modular
  +   DatabaseActions but does not auto-generate the query. The query has to be
  +   provided conforming to PreparedStatement syntax. Unlike the name might
  +   suggest, it can be a select, update, or delete query.
  +  
 
  Updated SourceWritingTransformer. Changed the tag set so that source:write and 
source:insert each share the same way of taking parameters.
  Added results from source:insert tag like source:write.
  
  
  

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




  1   2   3   >