svn commit: r1805600 - in /ofbiz/ofbiz-plugins/trunk/scrum: README.md README.txt

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

svn commit: r1805600 - in /ofbiz/ofbiz-plugins/trunk/scrum: README.md README.txt

Deepak Dixit-5
Author: deepak
Date: Mon Aug 21 05:41:28 2017
New Revision: 1805600

URL: http://svn.apache.org/viewvc?rev=1805600&view=rev
Log:
Copied scrum README.txt contet to README.md and removed duplicate README file.

Removed:
    ofbiz/ofbiz-plugins/trunk/scrum/README.txt
Modified:
    ofbiz/ofbiz-plugins/trunk/scrum/README.md

Modified: ofbiz/ofbiz-plugins/trunk/scrum/README.md
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/scrum/README.md?rev=1805600&r1=1805599&r2=1805600&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/scrum/README.md (original)
+++ ofbiz/ofbiz-plugins/trunk/scrum/README.md Mon Aug 21 05:41:28 2017
@@ -11,4 +11,45 @@ which can be found at https://cwiki.apac
 JIRA issues related to this component can be found at https://issues.apache.org/jira/browse/OFBIZ/component/12316900
 
 ## commits
-Committed revisions can be viewed at http://svn.apache.org/viewvc/ofbiz/trunk/plugins/scrum/
\ No newline at end of file
+Committed revisions can be viewed at http://svn.apache.org/viewvc/ofbiz/trunk/plugins/scrum/
+
+## How to install the revision of task function.
+
+### Server requirements
+1. subversion
+
+### Installation (On server)
+
+1. Install subversion
+2. Hook script setting
+    2.1 post-commit file is hook script file that will work when users commit source code to subversion repository.
+          Copy post-commit file from "scrum/data/hookscripts/post-commit" to hooks folder of repository and then edit file following :
+          Example : python /usr/share/subversion/hook-scripts/commit.py "$REPOS" "$REV"
+    2.2 commit.py file is python file which will send revision information to Scrum web service.
+          Copy commit.py from "scrum/data/hookscripts/commit.py" to "/usr/share/subversion/hook-scripts/" and then edit file following :
+          ---------------------------------------------------------------------------------
+            CONFIG_PATH = ""    // the path of the revision.properties should begin from home directory.
+            Example : CONFIG_PATH = "/home/ofbiz/ofbiz/plugins/scrum/config/revision.properties"
+          --------------------------------------------------------------------------------
+3. Configure file setting : The original configure file is in scrum component (/scrum/config/revision.properties) you can put it
+          anywhere that you wish but should be set the path of the file in commit.py file ("CONFIG_PATH=").
+          Example:
+          --------------------------------------------------------------------------------
+            revision.url =www.example.com/svn/
+            ofbiz.webservice.url =http://www.example.com/webtools/control/SOAPService
+            host.name =www.example.com
+            host.port =80
+            
+            #-- subversion admin and password
+            svn.user=demoUser
+            svn.password=demoPassword
+          --------------------------------------------------------------------------------
+4. Change the location path of the updateScrumRevision service in .../scrum/servicedef/services.xml file.
+          Example:
+          --------------------------------------------------------------------------------
+          <service name="updateScrumRevision" engine="soap" export="true"
+            location="http://www.example.com/webtools/control/SOAPService" invoke="updateScrumRevisionChange">
+            <implements service="updateScrumRevisionChange"/>
+          </service>
+          --------------------------------------------------------------------------------
+5. Restart the server.