diff development.ini @ 1837:a6a30c919513 beta

#73 mapping of commited issues from commit message into issue tracker url.
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 06 Jan 2012 19:27:32 +0200
parents ca302053d9c2
children 37b3c3244bbc
line wrap: on
line diff
--- a/development.ini	Fri Jan 06 06:39:54 2012 +0200
+++ b/development.ini	Fri Jan 06 19:27:32 2012 +0200
@@ -58,13 +58,34 @@
 proxypass_auth_enabled = false
 
 ## overwrite schema of clone url
-# available vars:
-# scheme - http/https
-# user - current user
-# pass - password 
-# netloc - network location
-# path - usually repo_name
-# clone_uri = {scheme}://{user}{pass}{netloc}{path}
+## available vars:
+## scheme - http/https
+## user - current user
+## pass - password 
+## netloc - network location
+## path - usually repo_name
+
+#clone_uri = {scheme}://{user}{pass}{netloc}{path}
+
+## issue tracking mapping for commits messages
+## uncomment url_pat, issue_server, issue_prefix to enable
+
+
+## pattern to get the issues from commit messages
+## default one used here is #1234
+
+#url_pat = (?:^#|\s#)(\w+)
+
+## server url to the issue, each {id} will be replaced with id
+## fetched from the regex
+
+#issue_server = https://myissueserver.com/issue/{id}
+
+## prefix to add to link to indicate it's an url
+## #314 will be replaced by <issue_prefix><id>
+
+#issue_prefix = #
+
 
 ####################################
 ###        CELERY CONFIG        ####