|
9 | 9 | <div class="methods" >
|
10 | 10 | <fieldset class="method-container" >
|
11 | 11 | <h3>Excluded Routes</h3>
|
12 |
| - <p>New line separated values. The following formats are valid: <code>[route]/[module]/[controller]/[action]</code>, <code>[route]/[module]/[controller]</code>, <code>[route]/[module]</code>, and <code>[route]</code>.</p> |
| 12 | + <p>Newline-separated values. The following formats are valid: <code>[route]/[module]/[controller]/[action]</code>, <code>[route]/[module]/[controller]</code>, <code>[route]/[module]</code>, and <code>[route]</code>.</p> |
13 | 13 | <textarea name="excluded_routes" ><?= implode ( "\n", $block->helper->getExcludedRoutes () ) ?></textarea>
|
14 | 14 | <div class="tray-labels" >
|
15 | 15 | <div data-tray="debug-headers" >Debug Headers <span>▸</span></div>
|
|
58 | 58 | <div class="methods" >
|
59 | 59 | <fieldset class="method-container" >
|
60 | 60 | <h3>Excluded Paths (Wildcard Pattern)</h3>
|
61 |
| - <p>New line separated values. Wildcard patterns must start with a <code>/</code> and must match the full path. Using two <code>**</code> will match across multiple slash seperated segments, while using one will match up until the first slash seperated segment.</p> |
| 61 | + <p>Newline-separated values. Wildcard patterns must start with a <code>/</code> and must match the full path. Using two <code>**</code> will match across multiple slash-separated segments, while using one will match up until the first slash-separated segment.</p> |
62 | 62 | <textarea name="excluded_wildcard_patterns" ><?= implode ( "\n", $block->helper->getExcludedWildcardPatterns () ) ?></textarea>
|
63 | 63 | <div class="tray-labels" >
|
64 | 64 | <div data-tray="debug-headers" >Debug Headers <span>▸</span></div>
|
|
111 | 111 | <div class="methods" >
|
112 | 112 | <fieldset class="method-container" >
|
113 | 113 | <h3>Excluded URLs (RegExp Pattern)</h3>
|
114 |
| - <p>New line separated values. Regular expression patterns match against the full URL. Use anchors (<code>^</code> & <code>$</code>) exhaustively, since the risk of overmatching without them is high.</p> |
| 114 | + <p>Newline-separated values. Regular expression patterns match against the full URL. Use anchors (<code>^</code> & <code>$</code>) exhaustively, since the risk of overmatching without them is high.</p> |
115 | 115 | <textarea name="excluded_regexp_patterns" ><?= implode ( "\n", $block->helper->getExcludedRegExpPatterns () ) ?></textarea>
|
116 | 116 | <div class="tray-labels" >
|
117 | 117 | <div data-tray="debug-headers" >Debug Headers <span>▸</span></div>
|
|
0 commit comments