cziegeler 2002/12/06 05:21:28 Modified: . properties.xml changes.xml Log: Updating changes Revision Changes Path 1.18 +1 -1 xml-cocoon2/properties.xml Index: properties.xml =================================================================== RCS file: /home/cvs/xml-cocoon2/properties.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- properties.xml 3 Dec 2002 17:08:35 -0000 1.17 +++ properties.xml 6 Dec 2002 13:21:28 -0000 1.18 @@ -57,7 +57,7 @@ <Name>Cocoon</Name> <name>cocoon</name> <version>2.1-dev</version> <!-- This is the current CVS version --> - <released version="2.0.3" /> <!-- This is the latest official release --> + <released version="2.0.4" /> <!-- This is the latest official release --> <year>1999-2002</year> <packages>org.apache</packages> 1.302 +104 -99 xml-cocoon2/changes.xml Index: changes.xml =================================================================== RCS file: /home/cvs/xml-cocoon2/changes.xml,v retrieving revision 1.301 retrieving revision 1.302 diff -u -r1.301 -r1.302 --- changes.xml 4 Dec 2002 22:11:21 -0000 1.301 +++ changes.xml 6 Dec 2002 13:21:28 -0000 1.302 @@ -343,10 +343,6 @@ with error handler and already committed responses etc. A new pipeline parameter "outputBufferSize" controlls the behaviour. </action> - <action dev="SW" type="fix"> - AbstractServerPages used static fields for dependency tracking, which caused - either non-modified XSPs to be recompiled, or modified XSPs not to be recompiled. - </action> <action dev="MC" type="add" fixes-bug="12304"> Added AxisRPCReader to scratchpad. This reader essentially allows you to serve SOAP requests from your Cocoon application. Sample webapp with @@ -367,12 +363,6 @@ <action dev="OP" type="update" due-to="Per-Olof Noren" due-to-email="[EMAIL PROTECTED]"> Fixed code generation problem in the jpath.xsl. Patch from. </action> - <action dev="VG" type="update"> - SearchGenerator now includes <field name=""/> elements into <hit/> - element. These elements contain stored fields of a found Document, - making it possible to provide additional info about document in the - search result list (only when index created with some stored fields). - </action> <action dev="OP" type="add"> New user login and preferences sample to show the control flow layer. @@ -404,97 +394,10 @@ <action dev="SMS" type="add"> Added the Chaperon components, examples and docs into the main tree. </action> - <action dev="VG" type="update"> - In addition to attributes in same namespace with elements, - link serializer reacts on non-namespaced attributes too. This allows - processing of (strict) XHTML. - </action> - <action dev="VG" type="update" fixes-bug="10697"> - Changed default persistence store to the JispFilesystemStore. - To switch back to FilesystemStore, remove jisp.jar and rebuild Cocoon - (or simply edit cocoon.xconf) - </action> - <action dev="CH" type="add"> - Added some more types understood by modular database actions. - </action> - <action dev="CH" type="fix"> - Request logicsheet: Fix session tags. - </action> - <action dev="CH" type="add"> - Added some more InputModules. - </action> - <action dev="CH" type="update"> - Changed existing OutputModules to not use ":" to separate key prefix from - suffix if prefix is an empty string. - </action> - <action dev="CH" type="add"> - 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. - </action> - <action dev="CH" type="fix"> - (Modular) DatabaseActions: select produced wrong result if no rows were - found, query action returned broken result. - </action> - <action dev="CH" type="update"> - 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. - </action> - <action dev="CZ" type="add" due-to="Ilya A. Kriveshko" due-to-email="[EMAIL PROTECTED]"> - RequestGenerator does optionally output request parameters. - </action> - <action dev="BH" type="add"> - Output extra locator info if included Throwable of ProcessingException is - SAXParseException or TransformerException. - </action> - <action dev="BH" type="fix"> - 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. - </action> - <action dev="BH" type="fix" due-to="M. Kristian" due-to-email="[EMAIL PROTECTED]"> - Fix CocoonCrawlerImpl, check if contentType is not null, and always close the BufferedReader at the end. - </action> - <action dev="BH" type="update" fixes-bug="11447" due-to="Torsten Knodt" due-to-email="[EMAIL PROTECTED]"> - Added cocoon-docs mailinglist to mail-archives.xml. - </action> - <action dev="VG" type="fix"> - <xsp-util:include-expr/> includes any object, converting it to string. - </action> - <action dev="VG" type="update"> - XSP now verifies that value of attribute name on xsp:element does not - contains ':'. To create namespaced elements, uri and prefix attributes - must be used. - </action> - <action dev="VG" type="fix"> - Request, response, and session logicsheet were incorrectly returning - result when as="xml" is specified. - </action> <action dev="SMS" type="update"> Replaced implementation from Loggable by LogEnabled to use the Avalon Logger instead of the LogKit Logger. </action> - <action dev="VG" type="update"> - XScript now has better variable management: variables of request, - session, global, and page scope are stored not in the XScriptManager, - but as request, session, context attributes, or as XSP page field - (respectively). Chances of memory leaks are highly reduced. - </action> - <action dev="VG" type="fix"> - Include all warnings and errors reported by the XSLT engine into the - TransformerException if transformation fails or terminated by the - stylesheet. - </action> - <action dev="VG" type="update"> - Update HSQLDB to version 1.7.0. Now it properly shuts down with Cocoon. - </action> <action dev="TC" type="add"> Moved the SWF generator and serializer from the scratchpad into the main trunk. Added a hello-world sample for SWF @@ -747,6 +650,109 @@ contribution consists of a session management framework, an authentication framework and a portal engine. </action> + <action dev="VG" type="update" fixes-bug="10697"> + Changed default persistence store to the JispFilesystemStore. + To switch back to FilesystemStore, remove jisp.jar and rebuild Cocoon + (or simply edit cocoon.xconf) + </action> +<action dev="CZ" type="add" due-to="Ilya A. Kriveshko" due-to-email="[EMAIL PROTECTED]"> + RequestGenerator does optionally output request parameters. + </action> + <action dev="BH" type="add"> + Output extra locator info if included Throwable of ProcessingException is + SAXParseException or TransformerException. + </action> + <action dev="SW" type="fix"> + AbstractServerPages used static fields for dependency tracking, which caused + either non-modified XSPs to be recompiled, or modified XSPs not to be recompiled. + </action> + <action dev="VG" type="update"> + SearchGenerator now includes <field name=""/> elements into <hit/> + element. These elements contain stored fields of a found Document, + making it possible to provide additional info about document in the + search result list (only when index created with some stored fields). + </action> + <action dev="VG" type="update"> + In addition to attributes in same namespace with elements, + link serializer reacts on non-namespaced attributes too. This allows + processing of (strict) XHTML. + </action> + <action dev="CH" type="add"> + Backport usage of InputModules to compiled sitemap. + </action> + <action dev="CH" type="update"> + Sync modules and related components between 2.0.x and HEAD. + </action> + <action dev="CH" type="add"> + Added some more types understood by modular database actions. + </action> + <action dev="CH" type="fix"> + Request logicsheet: Fix session tags. + </action> + <action dev="CH" type="add"> + Added some more InputModules. + </action> + <action dev="CH" type="update"> + Changed existing OutputModules to not use ":" to separate key prefix from + suffix if prefix is an empty string. + </action> + <action dev="CH" type="add"> + 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. + </action> + <action dev="CH" type="fix"> + (Modular) DatabaseActions: select produced wrong result if no rows were + found, query action returned broken result. + </action> + <action dev="CH" type="update"> + 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. + </action> + <action dev="BH" type="fix"> + 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. + </action> + <action dev="BH" type="fix" due-to="M. Kristian" due-to-email="[EMAIL PROTECTED]"> + Fix CocoonCrawlerImpl, check if contentType is not null, and always close the BufferedReader at the end. + </action> + <action dev="BH" type="update" fixes-bug="11447" due-to="Torsten Knodt" due-to-email="[EMAIL PROTECTED]"> + Added cocoon-docs mailinglist to mail-archives.xml. + </action> + <action dev="VG" type="fix"> + <xsp-util:include-expr/> includes any object, converting it to string. + </action> + <action dev="VG" type="update"> + XSP now verifies that value of attribute name on xsp:element does not + contains ':'. To create namespaced elements, uri and prefix attributes + must be used. + </action> + <action dev="VG" type="fix"> + Request, response, and session logicsheet were incorrectly returning + result when as="xml" is specified. + </action> + <action dev="VG" type="update"> + XScript now has better variable management: variables of request, + session, global, and page scope are stored not in the XScriptManager, + but as request, session, context attributes, or as XSP page field + (respectively). Chances of memory leaks are highly reduced. + </action> + <action dev="VG" type="fix"> + Include all warnings and errors reported by the XSLT engine into the + TransformerException if transformation fails or terminated by the + stylesheet. + </action> + <action dev="VG" type="update"> + Update HSQLDB to version 1.7.0. Now it properly shuts down with Cocoon. + </action> <action dev="CZ" type="update"> All log messages from FOP now go into the logs instead of printing them to the screen. </action> @@ -1829,5 +1835,4 @@ Initial code implementation. </action> </release> - </changes>
---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]