Per the spec these kinds of values need to be single-quoted. Change-Id: I7ebe85f0b8acc6e91845e1d27e2231cb0c7c0e3achanges/79/13979/8
parent
6ab579610c
commit
0174cd7ec9
@ -1,13 +1,13 @@
|
||||
rw_00:
|
||||
- direction: in
|
||||
field: callee
|
||||
match_pattern: "^([1-9][0-9]{2})$"
|
||||
replace_pattern: "emergency_\1"
|
||||
match_pattern: '^([1-9][0-9]{2})$'
|
||||
replace_pattern: 'emergency_\1'
|
||||
priority: 1
|
||||
description: Emergency in
|
||||
- direction: out
|
||||
field: callee
|
||||
match_pattern: "^emergency_([1-9][0-9]+)$"
|
||||
replace_pattern: "\1"
|
||||
match_pattern: '^emergency_([1-9][0-9]+)$'
|
||||
replace_pattern: '\1'
|
||||
priority: 1
|
||||
description: Emergency out
|
||||
|
@ -1,13 +1,13 @@
|
||||
rw_00:
|
||||
- direction: in
|
||||
field: callee
|
||||
match_pattern: "^(00|\+)([1-9][0-9]+)$"
|
||||
replace_pattern: "\2"
|
||||
match_pattern: '^(00|\+)([1-9][0-9]+)$'
|
||||
replace_pattern: '\2'
|
||||
priority: 1
|
||||
description: International to E.164
|
||||
- direction: in
|
||||
field: caller
|
||||
match_pattern: "^(00|\+)([1-9][0-9]+)$"
|
||||
replace_pattern: "\2"
|
||||
match_pattern: '^(00|\+)([1-9][0-9]+)$'
|
||||
replace_pattern: '\2'
|
||||
priority: 1
|
||||
description: International to E.164
|
||||
|
@ -1,19 +1,19 @@
|
||||
rw_00:
|
||||
- direction: in
|
||||
field: callee
|
||||
match_pattern: "^(00|\+)([1-9][0-9]+)$"
|
||||
replace_pattern: "\2"
|
||||
match_pattern: '^(00|\+)([1-9][0-9]+)$'
|
||||
replace_pattern: '\2'
|
||||
priority: 1
|
||||
description: International to E.164
|
||||
- direction: in
|
||||
field: caller
|
||||
match_pattern: "^(00|\+)([1-9][0-9]+)$"
|
||||
replace_pattern: "\2"
|
||||
match_pattern: '^(00|\+)([1-9][0-9]+)$'
|
||||
replace_pattern: '\2'
|
||||
priority: 1
|
||||
description: International to E.164
|
||||
- direction: out
|
||||
field: caller
|
||||
match_pattern: "^$avp(s:caller_cc)$avp(s:caller_ac)([1-9][0-9]+)$"
|
||||
replace_pattern: "\1"
|
||||
match_pattern: '^$avp(s:caller_cc)$avp(s:caller_ac)([1-9][0-9]+)$'
|
||||
replace_pattern: '\1'
|
||||
priority: 1
|
||||
description: E.164 to local
|
||||
|
@ -1,7 +1,7 @@
|
||||
rw_00:
|
||||
- direction: out
|
||||
field: caller
|
||||
match_pattern: "^(.+)$"
|
||||
replace_pattern: "${callee_lnp_prefix}\1"
|
||||
match_pattern: '^(.+)$'
|
||||
replace_pattern: '${callee_lnp_prefix}\1'
|
||||
priority: 1
|
||||
description: LNP prefix
|
||||
|
@ -1,7 +1,7 @@
|
||||
rw_00:
|
||||
- direction: lnp
|
||||
field: callee
|
||||
match_pattern: "^0043([0-9]+)$"
|
||||
replace_pattern: "0043$avp(s:callee_lnp_prefix)\1"
|
||||
match_pattern: '^0043([0-9]+)$'
|
||||
replace_pattern: '0043$avp(s:callee_lnp_prefix)\1'
|
||||
priority: 1
|
||||
description: add LNP prefix
|
||||
|
Loading…
Reference in new issue