Overview
Artifact ID: | 6c75ae403797e4565dd2c81d541ebe6cbccce85b |
---|---|
Ticket: | 28d861eb5799a60e412fe33d15fa56b87000e412
File listing has extra space before file name |
User & Date: | anonymous 2009-10-11 20:43:16 |
Changes
- comment changed to:
File listing ("Files in the top-level directory") has an extra space before file name, which looks like underscore when used as link. I propose removing the space (see this picture: [http://i33.tinypic.com/9tfgo7.png]). <verbatim> --- src/browse.c +++ src/browse.c @@ -222,19 +222,19 @@ } i++; zFName = db_column_text(&q, 0); if( zFName[0]=='/' ){ zFName++; - @ <li><a href="%s(zSubdirLink)%T(zFName)"> - @ %h(zFName)/</a></li> + @ <li> + @ <a href="%s(zSubdirLink)%T(zFName)">%h(zFName)/</a></li> }else if( zCI ){ const char *zUuid = db_column_text(&q, 1); @ <li><a href="%s(g.zBaseURL)/artifact?name=%s(zUuid)">%h(zFName)</a> }else{ - @ <li><a href="%s(g.zBaseURL)/finfo?name=%T(zPrefix)%T(zFName)"> - @ %h(zFName)</a></li> + @ <li> + @ <a href="%s(g.zBaseURL)/finfo?name=%T(zPrefix)%T(zFName)">%h(zFName)</a></li> } } db_finalize(&q); @ </td></tr></table> style_footer(); } </verbatim>
- foundin changed to: "5308e46815"
- private_contact changed to: "05f652db744266759b20d248ec2f451629420388"
- severity changed to: "Cosmetic"
- status changed to: "Open"
- title changed to: "File listing has extra space before file name"
- type changed to: "Code_Defect"