Changesets can be listed by changeset number.
The Git repository is here.
Changeset 415
Add "|" as another character which is interpreted as a closure to a named
reference syntax Textile tag. Without this, the Textile link corrector can
trip up in tables unless the author puts a space before the "|" separating
one cell from another immediately after a named reference syntax link:
|"This would fail":failure|Another cell|
[failure]http://www.test.com/
- Comitted by: rool
- Date: Monday March 21 18:09:53 2011 (over 13 years ago)
Affected files:
rool/rails/instiki/trunk/app/models/page.rb:
prev. | current | |
# allowed. Trailing punctuation at the end of the link ('"foo":bar. ') is | ||
# stripped if necessary later. A '"' is not allowed immediately after the | ||
# ':' either, since Textile doesn't allow it and one or two sequences in | ||
171 | | |
171 | # the ROOL Wiki can lead to disaster otherwise, such as '"#",":"'. In a | |
172 | # similar vein, a vertical bar is also ignored as this is a Textile table | |
173 | # cell separator and can't be used in named link references either. | |
173 | | |
175 | TEXTILE_LINK_PATTERN = /\[?"([^\s].*?)":([^\s\"\|]+)\]?/ | |
TEXTILE_LINK_TRIM_PATTERN = /[^\w]+$/ | ||
TEXTILE_ALIAS_PATTERN_START = /\r\n\[/.source | ||
TEXTILE_ALIAS_PATTERN_END = /\]([^\s]+)/.source |