#3202 closed defect (fixed)
svn urls has bogus first line for table
Reported by: | Jeff Hammel | Owned by: | Jeff Hammel |
---|---|---|---|
Priority: | normal | Component: | SvnUrlsPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
For any subdirectory, the first entry ..
, for the parent directory contains a bogus svn url link. The link points to the right place, but it is in the "Last Changes" column and should either be moved to the right place or removed
see (e.g.)
Attachments (0)
Change History (3)
comment:1 follow-up: 3 Changed 16 years ago by
comment:2 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 Changed 16 years ago by
Replying to extemporalgenome@gmail.com:
This is because the .. column has a colspan attribute hard coded to be 5. The best method would be to submit a patch to vanilla trac that looks at the number of columns in the header, and sets the colspan dynamically. From there, it would be a simple fix (via negation in an xpath expression) to have SvnUrlsPlugin avoid transforming that row.
i did this by just unmarking the colspan attribute on this entry (see r4112); ideally, the colspan should be reset on the subsequent entry, but i punted on this for now.
This is because the .. column has a colspan attribute hard coded to be 5. The best method would be to submit a patch to vanilla trac that looks at the number of columns in the header, and sets the colspan dynamically. From there, it would be a simple fix (via negation in an xpath expression) to have SvnUrlsPlugin avoid transforming that row.