Ticket #3643 (closed enhancement: fixed)
InterWiki Link Colon Esacape
| Reported by: | trac@… | Owned by: | cboos |
|---|---|---|---|
| Priority: | low | Milestone: | 0.10 |
| Component: | wiki system | Version: | devel |
| Severity: | minor | Keywords: | interwiki |
| Cc: |
Description
How about providing some kind of escape mechanism for colons in InterWiki links.
Maybe something a little less horrible than using the following:
t = target.replace("!:", "\x00")
args = t.split(':')
args = [argn.replace("\x00", ":") for argn in args]
instead of just:
args = target.split(':')
in interwiki.py.
(Sorry, I'm just learning Python.)
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


