Overview
Comment: | Updated make URL references to directories to include a trailing slash |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 15e90ceaa8bc37b32224939447d2e539094bf874 |
User & Date: | rkeene on 2014-05-15 21:36:32 |
Other Links: | manifest | tags |
Context
2014-05-16
| ||
15:25 | Updated to includ win32/win64 in platforms to build for check-in: 297696d6f5 user: rkeene tags: trunk | |
2014-05-15
| ||
21:36 | Updated make URL references to directories to include a trailing slash check-in: 15e90ceaa8 user: rkeene tags: trunk | |
2014-05-06
| ||
12:11 | Swapped out "tcltcc" for "tcc4tcl" check-in: 326afc96d5 user: rkeene tags: trunk | |
Changes
Modified server/teapot_index from [18e199e0c9] to [32a86c72c6].
190 190 191 191 if {$complete_entpath_parts == ""} { 192 192 set entpath [join [join [list entity $entpath_parts]] /] 193 193 } else { 194 194 set entpath [join $complete_entpath_parts /] 195 195 } 196 196 197 - append ret " <td><a href=\"/$entpath\">$item</a></td>\n" 197 + append ret " <td><a href=\"/$entpath/\">$item</a></td>\n" 198 198 } 199 199 200 200 append ret " </tr>\n" 201 201 } 202 202 203 203 return [string range $ret 0 end-1] 204 204 }