Closed
Bug 133273
Opened 23 years ago
Closed 23 years ago
URL field not linked after show_bug.cgi templatization
Categories
(Bugzilla :: Creating/Changing Bugs, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.16
People
(Reporter: ddkilzer, Assigned: ddkilzer)
Details
(Keywords: regression)
Attachments
(1 file, 1 obsolete file)
|
699 bytes,
patch
|
gerv
:
review+
gerv
:
review+
|
Details | Diff | Splinter Review |
The template uses bug.url but the URL is actually stored in
bug.bug_file_loc. Template also includes use of arcane
'FILTER url'. Patch coming shortly.
| Assignee | ||
Comment 1•23 years ago
|
||
Target -> 2.16. Keywords: patch, review, regression.
| Assignee | ||
Updated•23 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•23 years ago
|
||
Change bug.url -> bug.bug_file_loc in template.
| Assignee | ||
Comment 3•23 years ago
|
||
Bug 110012 is the original show_bug.cgi templatization patch.
Comment 4•23 years ago
|
||
Comment on attachment 75970 [details] [diff] [review]
Patch v.1
You'll need to put the "FILTER url" back :-)
Gerv
Attachment #75970 -
Flags: review-
| Assignee | ||
Comment 5•23 years ago
|
||
I believe 'FILTER url' was deprecated in favor of 'FILTER uri'.
I will upload another patch.
BTW, if bug.bug_file_loc has a 'FILTER uri', then shouldn't
bug.milestoneurl use one, too (like 173)?
<a href="[% bug.milestoneurl %]">Target Milestone</a>:
| Assignee | ||
Comment 6•23 years ago
|
||
Now with 'FILTER uri' added.
Attachment #75970 -
Attachment is obsolete: true
Updated•23 years ago
|
Attachment #75996 -
Flags: review+
Comment 7•23 years ago
|
||
Comment on attachment 75996 [details] [diff] [review]
Patch v.2
2xr=gerv. The answer to your question is "yes, probably :-)".
File another bug? <ducks>
Gerv
| Assignee | ||
Comment 8•23 years ago
|
||
Filed Bug 133372 regarding use of 'FILTER uri' on bug.milestoneurl.
Comment 9•23 years ago
|
||
Gerv, looks like you replaced the second occurrence of bug.url, but not the one
at the IF:
< [% IF bug.url %]
---
> [% IF bug.bug_file_loc %]
Is there a bug somewhere about renaming the bug_file_loc to something
reasonable?
| Assignee | ||
Comment 10•23 years ago
|
||
Should this bug be marked RESOLVED DUPLICATE of Bug 133425?
| Assignee | ||
Comment 11•23 years ago
|
||
The fixes in this bug were checked into CVS in two parts of
the template/default/show/show_bug.html.tmpl file:
- v1.3 fixed the [% bug.url FILTER url %] line
http://bonsai.mozilla.org/cvsview2.cgi?diff_mode=context&whitespace_mode=show&subdir=mozilla/webtools/bugzilla/template/default/show&command=DIFF_FRAMESET&file=show_bug.html.tmpl&rev1=1.2&rev2=1.3&root=/cvsroot
- v1.6 fixed the [% IF bug.url %] line
http://bonsai.mozilla.org/cvsview2.cgi?diff_mode=context&whitespace_mode=show&subdir=mozilla/webtools/bugzilla/template/default/show&command=DIFF_FRAMESET&file=show_bug.html.tmpl&rev1=1.5&rev2=1.6&root=/cvsroot
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Updated•13 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•