comparison production.ini @ 1933:3da456a3a211 beta

changed default issue tracker links pattern
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 21 Jan 2012 00:55:09 +0200
parents f26acc1b27e2
children 6020e3884a58
comparison
equal deleted inserted replaced
1932:1cf94aadabdc 1933:3da456a3a211
66 ## path - usually repo_name 66 ## path - usually repo_name
67 67
68 #clone_uri = {scheme}://{user}{pass}{netloc}{path} 68 #clone_uri = {scheme}://{user}{pass}{netloc}{path}
69 69
70 ## issue tracking mapping for commits messages 70 ## issue tracking mapping for commits messages
71 ## uncomment url_pat, issue_server, issue_prefix to enable 71 ## comment out issue_pat, issue_server, issue_prefix to enable
72
73 72
74 ## pattern to get the issues from commit messages 73 ## pattern to get the issues from commit messages
75 ## default one used here is #1234 74 ## default one used here is #<numbers> with a regex passive group for `#`
76 75 ## {id} will be all groups matched from this pattern
77 #url_pat = (?:^#|\s#)(\w+) 76
78 77 issue_pat = (?:\s*#)(\d+)
79 ## server url to the issue, each {id} will be replaced with id 78
79 ## server url to the issue, each {id} will be replaced with match
80 ## fetched from the regex and {repo} is replaced with repository name 80 ## fetched from the regex and {repo} is replaced with repository name
81 81
82 #issue_server_link = https://myissueserver.com/{repo}/issue/{id} 82 issue_server_link = https://myissueserver.com/{repo}/issue/{id}
83 83
84 ## prefix to add to link to indicate it's an url 84 ## prefix to add to link to indicate it's an url
85 ## #314 will be replaced by <issue_prefix><id> 85 ## #314 will be replaced by <issue_prefix><id>
86 86
87 #issue_prefix = # 87 issue_prefix = #
88 88
89 89
90 #################################### 90 ####################################
91 ### CELERY CONFIG #### 91 ### CELERY CONFIG ####
92 #################################### 92 ####################################