Details
-
Bug
-
Resolution: Won't Fix
-
Major
-
None
-
2.0 RC1
-
None
-
Unknown
-
Description
This is a bug I encountered some times ago while working on the mediawiki importer. The problem is explained in the followinf (failing) test case:
.#----------------------------------------------------- .input|xwiki/2.0 .#----------------------------------------------------- **http://www.foo.com** .#----------------------------------------------------- .expect|xwiki/2.0 .#----------------------------------------------------- **http://www.foo.com**
The workaround I did was to edit the wikimodel parser's URI grammar. Specifically I modified the following line in common-tokens.tmpl:
| <#URI_SUB_DELIMS: [ "!", "$", "&", "'", "(", ")", "*", "+", /*",",*/ ";", "=" ]>
And replaced it with:
| <#URI_SUB_DELIMS: [ "!", "$", "&", "(", ")", "+", /*",",*/ ";", "=" ]>
It's not a fix but it worked in my case