Modify ↓
#12803 closed enhancement (fixed)
Format the referrers as links too
Reported by: | anonymous | Owned by: | Ryan J Ollos |
---|---|---|---|
Priority: | normal | Component: | WantedPagesMacro |
Severity: | normal | Keywords: | patch |
Cc: | wolph@… | Trac Release: |
Description (last modified by )
By simply adding [[
and ]]
to line 216 in macros.py: wantedpagesmacro/trunk/wantedpages/macro.py@14534#L216
All referrers will be shown as links.
_data = _data + "||[[%s]]" % _name
Attachments (0)
Change History (7)
comment:1 Changed 8 years ago by
Cc: | wolph@… added |
---|
comment:2 Changed 8 years ago by
Description: | modified (diff) |
---|---|
Type: | defect → enhancement |
comment:3 follow-up: 5 Changed 8 years ago by
comment:4 Changed 5 years ago by
Keywords: | patch added |
---|
comment:5 Changed 5 years ago by
Owner: | changed from Geert to Ryan J Ollos |
---|---|
Status: | new → accepted |
Replying to jan.wystub@…:
Now my question is:
How can I help to patch the repository of the plugin so that installing can be achieved without locally editing the files next time? ;)
Sorry for the delay. See AdoptingHacks.
Note: See
TracTickets for help on using
tickets.
Wrapping
[[
and]]
around the string results in triggering unwanted macros, e.g.[[TracIni]]
.I suggest changing the
%s
to[\"%s\"]
or even to[wiki:\"%s\"]
in lines 210, 216 & 219 in macro.py would give the best result if the name of a wiki page contains spaces.Now my question is:
How can I help to patch the repository of the plugin so that installing can be achieved without locally editing the files next time? ;)