Modify ↓
Opened 15 years ago
Closed 15 years ago
#5618 closed defect (fixed)
Produces invalid URLs
Reported by: | Owned by: | Edward S. Marshall | |
---|---|---|---|
Priority: | normal | Component: | TracSitemapPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
TracSitemap don't use URL quoting. Some special characters and unicode characters must be quoted. For example:
<loc>http://example.org/wiki/Скачать</loc>
should be:
<loc>http://example.org/wiki/%D0%A1%D0%BA%D0%B0%D1%87%D0%B0%D1%82%D1%8C</loc>
Solution: look at the Trac source code and you see that Trac uses special functions to build URLs. This functions knows about all special characters that must be quoted.
Instead of writing:
'wiki/%s' % (row[0],)
write:
req.href('wiki', row[0])
And remember that req.href() adds req.base_path automatically.
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Fixed in r7132.