Opened 17 years ago
Last modified 8 years ago
#1799 new defect
[Patch] {p1} doesn't work as expected and :\ is not a good smiley IMHO
Reported by: | Kenneth Xu | Owned by: | Christian Boos |
---|---|---|---|
Priority: | low | Component: | WikiExtrasPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
I think it's very common that I write things like C:\Temp. I prefer to use :-\ instead.
It was {1} in the code, but I couldn't get {p1} to work neither. {#1}
works for me.
I have attached the updated smileys.py file.
Attachments (2)
Change History (10)
Changed 17 years ago by
Attachment: | smileys.py added |
---|
comment:1 Changed 17 years ago by
comment:2 Changed 17 years ago by
Priority: | normal → low |
---|
comment:3 Changed 17 years ago by
How can you escape smileys? I'm having problems with the :/ smiley because I have alot of C:\Bla\Bla paths at my wiki page.
comment:5 Changed 16 years ago by
:\ is fixed in 0.11, seems that it requires a space before : to be qualified as a smiley in 0.11.
But {p1} still doesn't work. Not sure if it is environement related, but we use Windows Server 2003, Python 2.5.2 and Track 0.11.1. I had to use {#1} instead.
I am enclosing the patch for both 0.9 and 0.11 to resolve this problem. Anybody used the smiley.py will need this patch to make everything working in 0.11
Changed 16 years ago by
Attachment: | 1799.patch added |
---|
Patch for both 0.9/0.10 and 0.11 to fix the :\ and {1}
comment:6 Changed 15 years ago by
Summary: | {p1} doesn't work as expected and :\ is not a good smiley IMHO → [Patch] {p1} doesn't work as expected and :\ is not a good smiley IMHO |
---|
comment:7 Changed 14 years ago by
I also can't get the {p1}
smiley to render correctly in my environment. I therefore debugged the wiki formatting code in Trac 0.13dev-r10691 when a {p1}
smiley is parsed.
In my environment, it becomes handled by the ticket report module in Trac and not by the smiley component.
A race/conflict seems to arise between the smiley and ticket report modules in that both declares regexps that matches {p1}
. Which one that is parsed depends on the order of syntax providers stored in the wiki parser module.
When I reversed the loop that scans the syntax provides, the smiley showed up:
syntax = self._pre_rules[:] i = 0 - for resolver in WikiSystem(self.env).syntax_providers: + for resolver in reversed(WikiSystem(self.env).syntax_providers): for regexp, handler in resolver.get_wiki_syntax() or []: handlers['i' + str(i)] = handler
The order in which the the wiki syntax providers are scanned matters!
However I can’t explain why it works for some users in the normal case, but not for me. I guess the smiley syntax provider is handled before the one in the ticket report module in some environments.
comment:8 Changed 8 years ago by
Component: | WikiGoodiesPlugin → WikiExtrasPlugin |
---|
Move tickets from deprecated plugin to superseding plugin. These probably need to be triaged.
BTW, the platform is Windows 2003 Server, python 2.5.1, trac 0.10.4