You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/10/14 23:38:28 UTC

svn commit: r704697 - in /ofbiz/trunk/framework: common/webcommon/WEB-INF/common-controller.xml common/webcommon/WEB-INF/tempexpr-controller.xml example/widget/example/FormWidgetExampleForms.xml

Author: jleroux
Date: Tue Oct 14 14:38:28 2008
New Revision: 704697

URL: http://svn.apache.org/viewvc?rev=704697&view=rev
Log:
A patch from Marco Risaliti "Artifact info logs cleanup" (https://issues.apache.org/jira/browse/OFBIZ-1982) OFBIZ-1982

Modified:
    ofbiz/trunk/framework/common/webcommon/WEB-INF/common-controller.xml
    ofbiz/trunk/framework/common/webcommon/WEB-INF/tempexpr-controller.xml
    ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml

Modified: ofbiz/trunk/framework/common/webcommon/WEB-INF/common-controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/WEB-INF/common-controller.xml?rev=704697&r1=704696&r2=704697&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/WEB-INF/common-controller.xml (original)
+++ ofbiz/trunk/framework/common/webcommon/WEB-INF/common-controller.xml Tue Oct 14 14:38:28 2008
@@ -132,8 +132,13 @@
         <response name="success" type="view" value="LookupVisualThemes" />
     </request-map>
 
+    <request-map uri="main">
+        <response name="success" type="view" value="main"/>
+    </request-map>
+    
     <!-- View Mappings -->
     <view-map name="error" page="/error/error.jsp"/>
+    <view-map name="main" type="none"/>
     <view-map name="login" type="screen" page="component://common/widget/CommonScreens.xml#login"/>
     <view-map name="requirePasswordChange" type="screen" page="component://common/widget/CommonScreens.xml#requirePasswordChange"/>
     <view-map name="forgotPassword" type="screen" page="component://common/widget/CommonScreens.xml#forgotPassword"/>

Modified: ofbiz/trunk/framework/common/webcommon/WEB-INF/tempexpr-controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/WEB-INF/tempexpr-controller.xml?rev=704697&r1=704696&r2=704697&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/WEB-INF/tempexpr-controller.xml (original)
+++ ofbiz/trunk/framework/common/webcommon/WEB-INF/tempexpr-controller.xml Tue Oct 14 14:38:28 2008
@@ -46,5 +46,10 @@
         <event type="service" invoke="deleteTemporalExpressionAssoc"/>
         <response name="success" type="request" value="editTemporalExpression"/>
     </request-map>
-
+    
+    <!-- TO DO -->
+    <request-map uri="editTemporalExpression">
+        <security https="true" auth="true"/>
+        <response name="success" type="none"/>
+    </request-map>
 </site-conf>

Modified: ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml?rev=704697&r1=704696&r2=704697&view=diff
==============================================================================
--- ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml (original)
+++ ofbiz/trunk/framework/example/widget/example/FormWidgetExampleForms.xml Tue Oct 14 14:38:28 2008
@@ -38,7 +38,7 @@
         <!-- ***************** -->
         <field name="field9"
                title="Field9: date and time selection field with default value"
-               tooltip="Same as above, Uses the ${bsh: notation to call an util method to get the now timestamp">
+               tooltip="Same as above, Uses the ${bsh: notation to call an util method to get the now timestamp}">
             <date-time default-value="${bsh: org.ofbiz.base.util.UtilDateTime.nowTimestamp()}"/>
         </field>
         <!-- ***************** -->