TT#32996 correct "POSIX" re labels to "PCRE"

Change-Id: I310b2e99060b89a0a71d85f2200307ce4a2689bc
changes/48/19148/6
Rene Krenn 7 years ago
parent 6e93a2551d
commit ae937a1429

@ -16,7 +16,7 @@ has_field 'source' => (
maxlength => 255,
element_attr => {
rel => ['tooltip'],
title => ['A POSIX regular expression to match the calling number (e.g. ^.+$).']
title => ['A PCRE regular expression to match the calling number (e.g. ^.+$).']
},
);
@ -26,7 +26,7 @@ has_field 'destination' => (
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['A POSIX regular expression to match the called number (e.g. ^431.+$).']
title => ['A PCRE regular expression to match the called number (e.g. ^431.+$).']
},
);

@ -42,7 +42,7 @@ has_field 'pattern' => (
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['A regular expression the dialed number (CDR \'destination user in\') has to match in case of \'outgoing\' direction, or the inbound number (CDR \'source cli\') in case of \'incoming\' direction.']
title => ['A PCRE regular expression the dialed number (CDR \'destination user in\') has to match in case of \'outgoing\' direction, or the inbound number (CDR \'source cli\') in case of \'incoming\' direction.']
},
);

@ -38,7 +38,7 @@ has_field 'pattern' => (
max_length => 1023,
element_attr => {
rel => ['tooltip'],
title => [q!A POSIX regex matching against the specified field (e.g. '^sip:.+@example\.org$' or '^sip:431') when matching against a full URI!]
title => [q!A PCRE regex matching against the specified field (e.g. '^sip:.+@example\.org$' or '^sip:431') when matching against a full URI!]
},
);
@ -109,4 +109,3 @@ sub validate {
}
1;

@ -24,7 +24,7 @@ has_field 'callee_pattern' => (
type => '+NGCP::Panel::Field::Regexp',
element_attr => {
rel => ['tooltip'],
title => [q!A POSIX regex matching against the full Request-URI (e.g. '^sip:.+@example\.org$' or '^sip:431')!]
title => [q!A PCRE regex matching against the full Request-URI (e.g. '^sip:.+@example\.org$' or '^sip:431')!]
},
);
@ -32,7 +32,7 @@ has_field 'caller_pattern' => (
type => '+NGCP::Panel::Field::Regexp',
element_attr => {
rel => ['tooltip'],
title => [q!A POSIX regex matching against 'sip:user@domain' (e.g. '^sip:.+@example\.org$' matching the whole URI, or '999' matching if the URI contains '999')!]
title => [q!A PCRE regex matching against 'sip:user@domain' (e.g. '^sip:.+@example\.org$' matching the whole URI, or '999' matching if the URI contains '999')!]
},
);

@ -17,7 +17,7 @@ has_field 'match_pattern' => (
deflate_value_method => \&deflate_match_pattern,
element_attr => {
rel => ['tooltip'],
title => ['Match pattern, a regular expression.'],
title => ['Match pattern, a PCRE regular expression.'],
},
);

Loading…
Cancel
Save