#1414 closed enhancement (fixed)
User-defined trac links using same colon syntax as reports, tickets etc
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | high | Milestone: | 0.10 |
Component: | wiki system | Version: | devel |
Severity: | normal | Keywords: | intertrac, traclinks |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Add ability to map TracLink -style prefixes to URLs. For example define somewhere that text with a "case:" prefix, eg:
case:123
.. is mapped to the hyperlink
http://mycrmserver/viewcase.php?case_number=123
This should also support long text descriptions as described in #185, ie
[case:123 Request from Allied Widgets inc for this report]
This can be done in a clumsy way now with a WikiMacro, but this does not work inside subversion change comments, which is where I would find it most useful.
Possible implementation: could be defined in trac.ini like so:
[linktranslation] case = http://remedy.foocorp.com/case/#1
This would require changes to the Wiki parser to build the regular expressions more dynamically than currently.
The output of this could be rendered as an external link, even better would be if this was configurable.
Also, would be nice if we could override the standard ones, etc make "ticket:" point to our own trouble ticket system, outside of Trac.
Attachments (0)
Change History (13)
comment:1 by , 20 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 19 years ago
[1856] adds a TracPluggableModules extension for allowing components to provide their Wiki link syntax.
I'll leave this open for the suggested configurable formats in the TracIni.
comment:3 by , 19 years ago
Milestone: | → 0.9 |
---|
comment:4 by , 19 years ago
Milestone: | 0.9 → 1.0 |
---|
comment:5 by , 19 years ago
In fact, I created a special purpose ticket for the branch integration: #2041. You can find the patches against 0.9.x there.
comment:6 by , 19 years ago
Component: | general → wiki |
---|---|
Keywords: | intertrac added |
comment:7 by , 19 years ago
Milestone: | 1.0 → 0.10 |
---|---|
Priority: | normal → high |
TODO also use the arguments in the description, e.g.
{{{ ... TracDev http://thread.gmane.org/gmane.comp.version-control.subversion.trac.devel/%1 # Mail [%1] in Trac-Dev mailing List ... }}}
comment:8 by , 19 years ago
Why high priority? It should already be possible to do this with a plugin.
comment:9 by , 19 years ago
… because it's already there in the InterTrac branch, and I see no need to ask users to get a plugin for this when it can easily be part of the core InterWiki functionality.
Actually, those plugins wouldn't even exist if the InterTrac branch had been merged earlier, as this is working for more than half a year already.
comment:10 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
This feature is now availabe for trunk (r2839), as part of the InterWiki. See InterMapTxt for the documentation.
comment:11 by , 11 years ago
Keywords: | traclinks intertrac → traclinks, intertrac |
---|
comment:12 by , 11 years ago
Keywords: | traclink added; traclinks removed |
---|
comment:13 by , 11 years ago
Keywords: | traclinks added; traclink removed |
---|
Though the plan is certainly to support TracLinks extensions with modules once we have pluggable modules, I nevertheless think that the lightweight TracLinks you suggested are worth implementing.
I'm currently refactoring the
WikiFormatter.py
to make it a little bit more modular, in source:branches/cboos-dev/intertrac-branch/trac/WikiFormatter.py (though I haven't commited anything there, as of this writting)With my changes, it will be esay to implement this enhancement request.
E.g: mantis:0000542 should be replaced by
http://dmachine/mantis/bug_view_page.php?bug_id=0000542
if I have:(#1 might be a valid part of the URL, whereas
$
is seldom used in URLs, right?)