Skip to content

Commit

Permalink
Allow + in URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesaoverton committed Feb 28, 2018
1 parent b41a4db commit 18edfac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/config.schema.yml
Expand Up @@ -43,7 +43,7 @@ mapping:
required: true
"to":
type: str
pattern: "/^(https?|ftp)\:\/\/[a-zA-Z0-9][\/\.\-\:\?\=\&\#\%\!\$\~\w]+$/"
pattern: "/^(https?|ftp)\:\/\/[a-zA-Z0-9][\/\.\-\:\?\=\&\#\%\!\$\~\+\w]+$/"
required: true
"entries":
type: seq
Expand All @@ -67,7 +67,7 @@ mapping:
unique: true
"replacement":
type: str
pattern: "/^(https?|ftp)\:\/\/[a-zA-Z0-9][\/\.\-\:\?\=\&\#\%\!\$\~\w]+$/"
pattern: "/^(https?|ftp)\:\/\/[a-zA-Z0-9][\/\.\-\:\?\=\&\#\%\!\$\~\+\w]+$/"
required: true
unique: false
"status":
Expand All @@ -86,6 +86,6 @@ mapping:
required: true
"to":
type: str
pattern: "/^(https?|ftp)\:\/\/[a-zA-Z0-9][\/\.\-\:\?\=\&\#\%\!\$\~\w]+$/"
pattern: "/^(https?|ftp)\:\/\/[a-zA-Z0-9][\/\.\-\:\?\=\&\#\%\!\$\~\+\w]+$/"
required: true

0 comments on commit 18edfac

Please sign in to comment.