Changeset 132:015f15273f6a
- Timestamp:
- 2007-08-03 04:21:22
(1 year ago)
- Author:
- Stefan Schwarzer <sschwarzer@sschwarzer.net>
- branch:
- default
- Message:
Use `urlpath.to_url` to convert the path.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r130 |
r132 |
|
| 135 | 135 | html_parts.append(u' %s ' % arg) |
|---|
| 136 | 136 | else: |
|---|
| 137 | | old_url = path.replace(config.root, "", 1) or "/" |
|---|
| 138 | | old_url = urllib.quote(old_url) |
|---|
| | 137 | old_url = urlpath.to_url(config.root, path) |
|---|
| 139 | 138 | html_parts.append( |
|---|
| 140 | 139 | (u'<a href="/%s/set?dir_levels=%s&old_url=%s">' |
|---|