Modify ↓
#13339 closed defect (fixed)
extension did not work with trac url of http://
| Reported by: | Owned by: | ||
|---|---|---|---|
| Priority: | normal | Component: | TracCmdScript |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: |
Description
When the trac is http protocol (e.g. http://trac.example.com ), the extension did not work (complain about permission error).
I believe line 145 need to be changed a bit (replace plus sign to question !mark):
token = re.sub(r'(http[s]+)://(.*)',
=>
token = re.sub(r'(http[s]?)://(.*)',
Attachments (0)
Change History (2)
comment:1 Changed 8 years ago by
| Owner: | set to Ryan J Ollos |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
comment:2 Changed 8 years ago by
| Owner: | changed from Ryan J Ollos to walty8@… |
|---|
Note: See
TracTickets for help on using
tickets.



In 17002: