Double the gerrit regex backslashes
The current amount of backslashes is not good enough for gerrit, and it rejects the config file. Probably related to futureparser? In any case, we need doubled-backslashes in the generated file, so 4 backslashes does the right thing in the puppet. Change-Id: I950b8efbcb876b2d1309f1117626a41ef22025b0
This commit is contained in:
parent
45c427838a
commit
dfe891af3e
@ -158,13 +158,13 @@ class openstack_project::gerrit (
|
||||
{
|
||||
name => 'storyboard-story',
|
||||
footer => 'story:',
|
||||
match => '\\#?(\\d+)',
|
||||
match => '\\\\#?(\\\\d+)',
|
||||
system => 'Storyboard',
|
||||
},
|
||||
{
|
||||
name => 'storyboard-task',
|
||||
footer => 'task:',
|
||||
match => '\\#?(\\d+)',
|
||||
match => '\\\\#?(\\\\d+)',
|
||||
system => 'Storyboard',
|
||||
},
|
||||
],
|
||||
|
@ -142,27 +142,27 @@ class openstack_project::review (
|
||||
commentlinks => [
|
||||
{
|
||||
name => 'bugheader',
|
||||
match => '([Cc]loses|[Pp]artial|[Rr]elated)-[Bb]ug:\\s*#?(\\d+)',
|
||||
match => '([Cc]loses|[Pp]artial|[Rr]elated)-[Bb]ug:\\\\s*#?(\\\\d+)',
|
||||
link => 'https://launchpad.net/bugs/$2',
|
||||
},
|
||||
{
|
||||
name => 'bug',
|
||||
match => '\\b[Bb]ug:? #?(\\d+)',
|
||||
match => '\\\\b[Bb]ug:? #?(\\\\d+)',
|
||||
link => 'https://launchpad.net/bugs/$1',
|
||||
},
|
||||
{
|
||||
name => 'story',
|
||||
match => '\\b[Ss]tory:? #?(\\d+)',
|
||||
match => '\\\\b[Ss]tory:? #?(\\\\d+)',
|
||||
link => 'https://storyboard.openstack.org/#!/story/$1',
|
||||
},
|
||||
{
|
||||
name => 'its-storyboard',
|
||||
match => '\\b[Tt]ask:? #?(\\d+)',
|
||||
match => '\\\\b[Tt]ask:? #?(\\\\d+)',
|
||||
link => 'task: $1',
|
||||
},
|
||||
{
|
||||
name => 'blueprint',
|
||||
match => '(\\b[Bb]lue[Pp]rint\\b|\\b[Bb][Pp]\\b)[ \\t#:]*([A-Za-z0-9\\-]+)',
|
||||
match => '(\\\\b[Bb]lue[Pp]rint\\\\b|\\\\b[Bb][Pp]\\\\b)[ \\\\t#:]*([A-Za-z0-9\\\\-]+)',
|
||||
link => 'https://blueprints.launchpad.net/openstack/?searchtext=$2',
|
||||
},
|
||||
{
|
||||
@ -177,7 +177,7 @@ class openstack_project::review (
|
||||
},
|
||||
{
|
||||
name => 'launchpadbug',
|
||||
match => '<a href=\"(https://bugs\\.launchpad\\.net/[a-zA-Z0-9\\-]+/\\+bug/(\\d+))[^\"]*\">[^<]+</a>',
|
||||
match => '<a href=\"(https://bugs\\\\.launchpad\\\\.net/[a-zA-Z0-9\\\\-]+/\\\\+bug/(\\\\d+))[^\"]*\">[^<]+</a>',
|
||||
html => '<a href=\"$1\">$1</a>'
|
||||
},
|
||||
{
|
||||
@ -187,7 +187,7 @@ class openstack_project::review (
|
||||
},
|
||||
{
|
||||
name => 'gitsha',
|
||||
match => '(<p>|[\\s(])([0-9a-f]{40})(</p>|[\\s.,;:)])',
|
||||
match => '(<p>|[\\\\s(])([0-9a-f]{40})(</p>|[\\\\s.,;:)])',
|
||||
html => '$1<a href=\"/#/q/$2\">$2</a>$3',
|
||||
},
|
||||
],
|
||||
|
@ -89,27 +89,27 @@ class openstack_project::review_dev (
|
||||
commentlinks => [
|
||||
{
|
||||
name => 'bugheader',
|
||||
match => '([Cc]loses|[Pp]artial|[Rr]elated)-[Bb]ug:\\s*#?(\\d+)',
|
||||
match => '([Cc]loses|[Pp]artial|[Rr]elated)-[Bb]ug:\\\\s*#?(\\\\d+)',
|
||||
link => 'https://launchpad.net/bugs/$2',
|
||||
},
|
||||
{
|
||||
name => 'bug',
|
||||
match => '\\b[Bb]ug:? #?(\\d+)',
|
||||
match => '\\\\b[Bb]ug:? #?(\\\\d+)',
|
||||
link => 'https://launchpad.net/bugs/$1',
|
||||
},
|
||||
{
|
||||
name => 'story',
|
||||
match => '\\b[Ss]tory:? #?(\\d+)',
|
||||
match => '\\\\b[Ss]tory:? #?(\\\\d+)',
|
||||
link => 'https://storyboard-dev.openstack.org/#!/story/$1',
|
||||
},
|
||||
{
|
||||
name => 'its-storyboard',
|
||||
match => '\\b[Tt]ask:? #?(\\d+)',
|
||||
match => '\\\\b[Tt]ask:? #?(\\\\d+)',
|
||||
link => 'task: $1',
|
||||
},
|
||||
{
|
||||
name => 'blueprint',
|
||||
match => '(\\b[Bb]lue[Pp]rint\\b|\\b[Bb][Pp]\\b)[ \\t#:]*([A-Za-z0-9\\-]+)',
|
||||
match => '(\\\\b[Bb]lue[Pp]rint\\\\b|\\\\b[Bb][Pp]\\\\b)[ \\\\t#:]*([A-Za-z0-9\\\\-]+)',
|
||||
link => 'https://blueprints.launchpad.net/openstack/?searchtext=$2',
|
||||
},
|
||||
{
|
||||
@ -119,7 +119,7 @@ class openstack_project::review_dev (
|
||||
},
|
||||
{
|
||||
name => 'launchpadbug',
|
||||
match => '<a href=\"(https://bugs\\.launchpad\\.net/[a-zA-Z0-9\\-]+/\\+bug/(\\d+))[^\"]*\">[^<]+</a>',
|
||||
match => '<a href=\"(https://bugs\\\\.launchpad\\\\.net/[a-zA-Z0-9\\\\.]+/\\\\+bug/(\\\\d+))[^\"]*\">[^<]+</a>',
|
||||
html => '<a href=\"$1\">$1</a>'
|
||||
},
|
||||
{
|
||||
@ -129,7 +129,7 @@ class openstack_project::review_dev (
|
||||
},
|
||||
{
|
||||
name => 'gitsha',
|
||||
match => '(<p>|[\\s(])([0-9a-f]{40})(</p>|[\\s.,;:)])',
|
||||
match => '(<p>|[\\\\s(])([0-9a-f]{40})(</p>|[\\\\s.,;:)])',
|
||||
html => '$1<a href=\"/#/q/$2\">$2</a>$3',
|
||||
},
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user