OLD | NEW |
1 // Copyright (C) 2009 Onno Hommes. | 1 // Copyright (C) 2009 Onno Hommes. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 // = ! or ?. | 42 // = ! or ?. |
43 [PR['PR_LITERAL'], | 43 [PR['PR_LITERAL'], |
44 /^\'(?:-*(?:\w|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?)?/], | 44 /^\'(?:-*(?:\w|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?)?/], |
45 // Any word including labels that optionally ends with = ! or ?. | 45 // Any word including labels that optionally ends with = ! or ?. |
46 [PR['PR_PLAIN'], | 46 [PR['PR_PLAIN'], |
47 /^-*(?:[!-z_]|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?/i], | 47 /^-*(?:[!-z_]|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?/i], |
48 // A printable non-space non-special character | 48 // A printable non-space non-special character |
49 [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0()\"\\\';]+/] | 49 [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0()\"\\\';]+/] |
50 ]), | 50 ]), |
51 ['apollo', 'agc', 'aea']); | 51 ['apollo', 'agc', 'aea']); |
OLD | NEW |