|
From: <lac...@us...> - 2007-10-04 09:47:15
|
Revision: 35
http://td2jira.svn.sourceforge.net/td2jira/?rev=35&view=rev
Author: lacostej
Date: 2007-10-04 02:47:14 -0700 (Thu, 04 Oct 2007)
Log Message:
-----------
Document example td2jira.properties file
Added Paths:
-----------
trunk/td2jira/etc/td2jira.properties.example
Added: trunk/td2jira/etc/td2jira.properties.example
===================================================================
--- trunk/td2jira/etc/td2jira.properties.example (rev 0)
+++ trunk/td2jira/etc/td2jira.properties.example 2007-10-04 09:47:14 UTC (rev 35)
@@ -0,0 +1,75 @@
+# td2jira.properties example
+# to copy into etc/td2jira.properties and configure appropriately
+#
+# By default this config will do nothing real (it uses a mock TD connection and a single issue to synchronize)
+
+## For debug: process specific TD issue only
+# configure and test, then disable when happy
+sync.only.td.id=0
+
+
+## TD connection Implementation
+# mock one
+td.implementation=td2jira.td.api.mock.Connection
+# real TD
+#td.implementation=td2jira.td.api.dcom.Connection
+
+# TD connection data (disabled by default: mock TD is used; change td.implementation to DCOM one to enable)
+td.user=FILLME
+td.password=FILLME
+td.url=http://FILLME/qcbin
+td.domain=FILLME
+td.project=FILLME
+td.lead=FILLME
+
+# JIRA connection data (td2jira account won't probably exist; you'll need to Signup first!)
+jira.url=http://FILLME:FILLME
+jira.user=FILLME
+jira.password=FILLME
+jira.project=FILLME
+jira.summary.prefix=FILLME
+jira.assign.to=FILLME
+
+# HTTP Proxy, if required
+# http.proxyHost=myproxy.here.com
+# http.proxyPort=8081
+# http.proxyUser=AD\\vdyuzhev
+# http.proxyPassword=mypassword
+
+# Mapping between developer's ids in TD and JIRA
+# If an issue assigned to a developer in TD, then TD2JIRA syncs TD's AssignedTo
+# field according to JIRA AssignedTo field.
+# Otherwise TD issue is considered non-development one and ignored (subject to code in SyncIssues.java)
+td.developers.jira.developers=tduser1=jirauser1,tduser2=jirauser2
+
+# Repeat Sync every so minutes
+sync.minutes=1
+
+# JIRA Connector Implementation
+# more portable, but less powerful
+#jira.connector.implementation=td2jira.jira.xmlrpc.JIRAXmlRpcConnector
+# more powerful, but needs fresh JIRA version and has troubles with attachments (TODO document problems)
+#jira.connector.implementation=td2jira.jira.soap.JIRASoapConnector
+
+# Sync rules
+# FIXME enable and configure
+#sync.rules=class=td2jira.sync.impl.SyncIssues; \
+# class=td2jira.sync.impl.SyncAttachments; \
+# td.status=Closed|Rejected,jira.status=Open|Assigned To Fix|Assigned To Merge|Assigned To Review|Resolved,class=td2jira.sync.impl.CloseJiraIssue; \
+# td.status=Reopen|Assigned,jira=null,class=td2jira.sync.impl.CreateJiraIssue; \
+# td.status=Reopen|Assigned,jira.status=Closed,class=td2jira.sync.impl.RecreateJiraIssue; \
+# td.status=New|Open|Reopen|Assigned,jira.status=Resolved,class=td2jira.sync.impl.MarkTdIssueAsFixed; \
+# td.status=Fixed,jira.status=Closed,class=td2jira.sync.impl.AskToRetest;
+
+# TD mock connection settings
+# Allowed TD workflow transitions; e.g. New issue can become Open or Rejected
+td.mock.transitions=New>Open,New>Rejected,Open>Assigned,Open>Rejected,Assigned>Fixed,Assigned>Rejected,Fixed>Closed,Rejected>Closed,Closed>Reopen,Reopen>Assigned,Reopen>Rejected
+# Probability to create a new TD issue per run
+td.mock.new.issue.probability=5
+# Probability to add a comment to TD issue per run
+td.mock.new.comment.probability=5
+# Probability to create an attachment to TD issue per run
+td.mock.new.attachment.probability=5
+
+
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|