Opened 20 years ago
Closed 20 years ago
#649 closed defect (fixed)
[merge]:traclinks in rst mode
Reported by: | anonymous | Owned by: | Jonas Borgström |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | wiki system | Version: | 0.7.1 |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Hi,
when using rst mode in the wiki it is problematic to link to not CamelCase trac link pages.
If I created a page as Hello
[wiki:Hello Hello]
Then I cant reference it in rst mode since the tracdirective checks that the link is camelcase. I.e
.. trac:: wiki:Hello
Give the error message below
I get an error message if I do
Also I think it should strip 'wiki:' from the link if you dont have a link name.
I think the pattern in rst.py should be changed so that if you have 'wiki:' Then it is enough that you have any characters after the '!wiki:'
Attachments (0)
Change History (3)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
Summary: | traclinks in rst mode → [merge]:traclinks in rst mode |
---|
Patch for fixing this is in #655
Basically I allow all sorts of names in wikinames. Before the pattern checked that the wikipage was CamelCase.