Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 75499 invoked from network); 20 Feb 2008 07:16:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Feb 2008 07:16:50 -0000 Received: (qmail 93590 invoked by uid 500); 20 Feb 2008 07:16:45 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 93540 invoked by uid 500); 20 Feb 2008 07:16:45 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 93529 invoked by uid 99); 20 Feb 2008 07:16:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Feb 2008 23:16:45 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Feb 2008 07:16:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 251CB1A9832; Tue, 19 Feb 2008 23:16:25 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r629376 - in /cocoon/branches/BRANCH_2_1_X: src/blocks/forms/resources/org/apache/cocoon/forms/resources/forms-field-styling.xsl status.xml Date: Wed, 20 Feb 2008 07:16:22 -0000 To: cvs@cocoon.apache.org From: antonio@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080220071625.251CB1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: antonio Date: Tue Feb 19 23:16:19 2008 New Revision: 629376 URL: http://svn.apache.org/viewvc?rev=629376&view=rev Log: Forms: CAPTCHA <input> element should have autocomplete="off" Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/forms/resources/org/apache/cocoon/forms/resources/forms-field-styling.xsl cocoon/branches/BRANCH_2_1_X/status.xml Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/forms/resources/org/apache/cocoon/forms/resources/forms-field-styling.xsl URL: http://svn.apache.org/viewvc/cocoon/branches/BRANCH_2_1_X/src/blocks/forms/resources/org/apache/cocoon/forms/resources/forms-field-styling.xsl?rev=629376&r1=629375&r2=629376&view=diff ============================================================================== --- cocoon/branches/BRANCH_2_1_X/src/blocks/forms/resources/org/apache/cocoon/forms/resources/forms-field-styling.xsl (original) +++ cocoon/branches/BRANCH_2_1_X/src/blocks/forms/resources/org/apache/cocoon/forms/resources/forms-field-styling.xsl Tue Feb 19 23:16:19 2008 @@ -48,7 +48,7 @@ | CForms can run in two different modes, in each mode different form widgets get instantiated. | The @ajax attribute in your ft:form-template controls the mode. | - | 1. non-ajax mode (@ajax="false", this is the default) : + | 1. non-ajax mode (@ajax="false", this is the default) : | All form submits happen via full page loads. | Form submission is handled by cocoon.forms.SimpleForm (dojoType="forms:SimpleForm") | either directly (submit buttons) or via cocoon.forms.submitForm (scripts, onChange handlers etc.). @@ -57,8 +57,8 @@ | All form submits happen via AJAX (XHR or IframeIO) resulting in partial page updates. | Form submission is handled by cocoon.forms.AjaxForm (dojoType="forms:AjaxForm") | either directly (buttons) or via cocoon.forms.submitForm (scripts). - | - | NOTES: + | + | NOTES: | Dojo is always loaded by this XSLT. You can use dojo widgets regardless of whether you want ajax-type behaviour. | Since 2.1.11, cocoon widgets no longer need to be explicitly 'dojo.require'd in the page, they load automatically using a namespace manifest. | You may use this same mechanism for your own namespace widgets. @@ -67,7 +67,7 @@ | | If you are overiding this xslt to avoid the use of dojo (untested, but cocoon.forms.common should still work) | you should add a call to run CForms OnLoadHandlers into the body's @onload attribute - | + | | eg. | cocoon.forms.callOnLoadHandlers(); +--> @@ -94,14 +94,14 @@ dojo.registerModulePath("cocoon.forms", "../forms/js"); dojo.require("cocoon.forms.common"); dojo.addOnLoad(cocoon.forms.callOnLoadHandlers); - - + + - + @@ -873,14 +876,14 @@ - - + + - + - + var marker = new GMarker(new GLatLng(, )); GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(""); @@ -888,13 +891,13 @@ }); map_.addOverlay(marker); - + - + - + var usermarker_ = new GMarker(new GLatLng(, )); map_.addOverlay(usermarker_); GEvent.addListener(map_, "click", function(overlay,point) { @@ -924,6 +927,6 @@ - + Modified: cocoon/branches/BRANCH_2_1_X/status.xml URL: http://svn.apache.org/viewvc/cocoon/branches/BRANCH_2_1_X/status.xml?rev=629376&r1=629375&r2=629376&view=diff ============================================================================== --- cocoon/branches/BRANCH_2_1_X/status.xml (original) +++ cocoon/branches/BRANCH_2_1_X/status.xml Tue Feb 19 23:16:19 2008 @@ -182,6 +182,9 @@ + + Forms: CAPTCHA <input> element should have autocomplete="off" + Lucene block: Added optimize-frequency configuration parameter to LuceneIndexTransformer. This gives a huge performance increase on large Lucene indexes when not optimizing after every update. @@ -196,7 +199,7 @@ Forms Block: Fixed concurrency issue in form definition builders code. If you have custom widgets, please implement WidgetDefinitionBuilder.buildWidgetDefinition(Element, WidgetDefinitionBuilderContext) method. Do not use WidgetDefinitionBuilder.buildWidgetDefinition(Element) method, it is intended to be - implemented only by the top level widget (Form). + implemented only by the top level widget (Form). Add capability to IncludeTransformer to strip the root element from included XML content. @@ -210,13 +213,13 @@ Core: XMLByteStreamCompiler hard-coded limits of 0xffff Strings prevents large XML documents - from being handled in Cocoon. + from being handled in Cocoon. Created XPathXMLFileModule to address issus with XMLFileModule. XPathXMLFileModule supports variable - replacement and caching of documents in ehcache and expressions as soft references. + replacement and caching of documents in ehcache and expressions as soft references. Forms: Allow Ajax submission of forms with empty upload field. @@ -231,11 +234,11 @@ Core: Update xalan to 2.7.1. - Sitemap: Redirect to cocoon:/foo did not work in sub-sitemap when it is in same directory as the root sitemap. + Sitemap: Redirect to cocoon:/foo did not work in sub-sitemap when it is in same directory as the root sitemap. Core: Update xercesImpl to 2.9.1. - + Event Cache Block: Restore serializability of persistent cache when using event-aware cache. @@ -415,10 +418,10 @@ The new version should be compatible with the previous version, though it does not support the constructs "catch (continue|break|return)" which were available in Cocoon's Rhino fork. - + Updated xercesImpl to 2.9.0 and xml-apis to 1.3.04. - + Ajax: upload progress bar widget.
    @@ -651,7 +654,7 @@ CForms Block: Add multiple repeater drag & drop dojo sample. - + Set instrumentation manager on child component managers to enable instrumentation of all components including sitemap components. @@ -758,7 +761,7 @@ Updated axis to 1.4 and commons-collections to 3.2. - Added a lightweight FOM_SimpleCocoon class, and placed it in the javascript scope when there isn't + Added a lightweight FOM_SimpleCocoon class, and placed it in the javascript scope when there isn't already a scope defined. This way, even when using javaflow, you have access to the cocoon object (with request etc..) from javascript snippets in definition. @@ -1315,7 +1318,7 @@ groovy to 1.0-jsr-03. - Deli block updated to use the latest revision of DELI. This uses a more robust method of loading configuration + Deli block updated to use the latest revision of DELI. This uses a more robust method of loading configuration files that should ensure DELI works on different apps servers or deployed as a WAR. @@ -1505,13 +1508,13 @@ CForms block: Make all WidgetValidatorBuilders ThreadSafe. Reset validation errors before validating a field. - + Portal block: Add portal manager aspects for more flexible portal processing. CForms block: Add isValid() method to a Widget. - + POI Block: Added HSSFGenerator. @@ -1546,7 +1549,7 @@ CForms block: The default HTML stylesheets have been moved into the jar packages. If they should be extended in custom stylesheets, import or include them using the resource protocol: <xsl:include href="resource://org/apache/cocoon/forms/resources/forms-advanced-field-styling.xsl"/>. - + CForms block: The form and container widgets can take up ValidationErrors. As those widgets don't have a natural place where the error message should appear, the <ft:validation-error id="[widget-id]"/> @@ -1731,7 +1734,7 @@ Updated groovy to 1.0-jsr-01, jdtcore to 3.0.2. - New set of automated tests based on HtmlUnit + New set of automated tests based on HtmlUnit Add support for namespaced XML elements to the JXPath based input @@ -1966,7 +1969,7 @@ 1.4 = Java version 1.4 1.5 = Java version 1.5 auto = The version of the JVM where cocoon is running. (Default value). - + NOTE: The parameter is optional to keep backward compatibility. The parameter currently works only with Sun Javac compiler. The eclipse compiler version 3.0.1 currently does not support java 1.5. @@ -1987,7 +1990,7 @@ Updated jakarta-slide-webdavlib to 2.1, jdom to 1.0, slide-kernel to 2.1, slide-stores to 2.1, slide-webdavservlet to 2.1. - Portal now allows Cocoon to be deployed as a war (only supports local JSR-168 portlets) and + Portal now allows Cocoon to be deployed as a war (only supports local JSR-168 portlets) and allows external portlets to be in a war. @@ -2000,9 +2003,9 @@ Modified PortletURLProviderImpl.toString() to create a copy of itself and register that with the event. - ContinuationsManager default implementation can now store continuations in user session. - Continuations are not available outside user session and invalidated automatically - when session gets invalidated by servlet container. This is a good security option for web applications. + ContinuationsManager default implementation can now store continuations in user session. + Continuations are not available outside user session and invalidated automatically + when session gets invalidated by servlet container. This is a good security option for web applications. Update Deli to x031104 (include over 300 vendor, operator and third party profiles)