svn commit: r1744787 - in /ofbiz/trunk/specialpurpose/projectmgr: ./ template/project/ template/project/summary/ template/request/ widget/

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1744787 - in /ofbiz/trunk/specialpurpose/projectmgr: ./ template/project/ template/project/summary/ template/request/ widget/

Deepak Dixit-5
Author: deepak
Date: Fri May 20 19:14:19 2016
New Revision: 1744787

URL: http://svn.apache.org/viewvc?rev=1744787&view=rev
Log:
(OFBIZ-7021) Renamed specialpurpose projectmgr component ftl file name from lower camel case to upper camel case pattern.

Added:
    ofbiz/trunk/specialpurpose/projectmgr/Main.ftl
      - copied unchanged from r1744783, ofbiz/trunk/specialpurpose/projectmgr/main.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/project/EditTaskAndAssoc.ftl
      - copied unchanged from r1744783, ofbiz/trunk/specialpurpose/projectmgr/template/project/edittaskandassoc.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/project/GanttChart.ftl
      - copied unchanged from r1744783, ofbiz/trunk/specialpurpose/projectmgr/template/project/ganttChart.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/project/summary/NoteInfo.ftl
      - copied unchanged from r1744783, ofbiz/trunk/specialpurpose/projectmgr/template/project/summary/noteinfo.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/request/OverViewRequestItems.ftl
      - copied unchanged from r1744783, ofbiz/trunk/specialpurpose/projectmgr/template/request/overViewRequestItems.ftl
Removed:
    ofbiz/trunk/specialpurpose/projectmgr/main.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/project/edittaskandassoc.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/project/ganttChart.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/project/summary/noteinfo.ftl
    ofbiz/trunk/specialpurpose/projectmgr/template/request/overViewRequestItems.ftl
Modified:
    ofbiz/trunk/specialpurpose/projectmgr/widget/CustRequestScreens.xml
    ofbiz/trunk/specialpurpose/projectmgr/widget/ProjectScreens.xml
    ofbiz/trunk/specialpurpose/projectmgr/widget/TaskScreens.xml

Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/CustRequestScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/CustRequestScreens.xml?rev=1744787&r1=1744786&r2=1744787&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/projectmgr/widget/CustRequestScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/projectmgr/widget/CustRequestScreens.xml Fri May 20 19:14:19 2016
@@ -163,7 +163,7 @@ under the License.
                         </container>
                         <container style="clear"/>
                         <platform-specific>
-                            <html><html-template location="component://projectmgr/webapp/projectmgr/request/overViewRequestItems.ftl"/></html>
+                            <html><html-template location="component://projectmgr/webapp/projectmgr/request/OverViewRequestItems.ftl"/></html>
                         </platform-specific>
                     </decorator-section>
                 </decorator-screen>

Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/ProjectScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/ProjectScreens.xml?rev=1744787&r1=1744786&r2=1744787&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/projectmgr/widget/ProjectScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/projectmgr/widget/ProjectScreens.xml Fri May 20 19:14:19 2016
@@ -257,7 +257,7 @@ under the License.
                                     <!-- Edit an existing Task -->
                                     <widgets>
                                         <platform-specific>
-                                            <html><html-template location="component://projectmgr/template/project/edittaskandassoc.ftl"/></html>
+                                            <html><html-template location="component://projectmgr/template/project/EditTaskAndAssoc.ftl"/></html>
                                         </platform-specific>
                                     </widgets>
                                     <!-- Edit an existing SubTask -->
@@ -271,7 +271,7 @@ under the License.
                                         <label style="h1">${uiLabelMap.ProjectMgrSubTaskName}: ${task.workEffortName}</label>
                                         <container><label style="h1">${uiLabelMap.PageTitleEditSubTask}</label></container>
                                         <platform-specific>
-                                            <html><html-template location="component://projectmgr/template/project/edittaskandassoc.ftl"/></html>
+                                            <html><html-template location="component://projectmgr/template/project/EditTaskAndAssoc.ftl"/></html>
                                         </platform-specific>
                                     </fail-widgets>
                                 </section>
@@ -423,7 +423,7 @@ under the License.
                     <decorator-section name="body">
                         <screenlet title="${uiLabelMap.PageTitleProjectGanttChart}">
                             <platform-specific>
-                                <html><html-template location="component://projectmgr/template/project/ganttChart.ftl"/></html>
+                                <html><html-template location="component://projectmgr/template/project/GanttChart.ftl"/></html>
                             </platform-specific>
                         </screenlet>
                     </decorator-section>
@@ -569,7 +569,7 @@ under the License.
             </actions>
             <widgets>
                 <platform-specific>
-                    <html><html-template location="component://projectmgr/template/project/summary/noteinfo.ftl"/></html>
+                    <html><html-template location="component://projectmgr/template/project/summary/NoteInfo.ftl"/></html>
                 </platform-specific>
             </widgets>
         </section>
@@ -1032,7 +1032,7 @@ under the License.
                             <container style="clear"/>
                             <screenlet title="${uiLabelMap.PageTitleProjectGanttChart}">
                                 <platform-specific>
-                                    <html><html-template location="component://projectmgr/template/project/ganttChart.ftl"/></html>
+                                    <html><html-template location="component://projectmgr/template/project/GanttChart.ftl"/></html>
                                 </platform-specific>
                             </screenlet>
                         </widgets>

Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/TaskScreens.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/TaskScreens.xml?rev=1744787&r1=1744786&r2=1744787&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/projectmgr/widget/TaskScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/projectmgr/widget/TaskScreens.xml Fri May 20 19:14:19 2016
@@ -403,7 +403,7 @@ under the License.
             </actions>
             <widgets>
                 <platform-specific>
-                    <html><html-template location="component://projectmgr/template/project/summary/noteinfo.ftl"/></html>
+                    <html><html-template location="component://projectmgr/template/project/summary/NoteInfo.ftl"/></html>
                 </platform-specific>
             </widgets>
         </section>