Closed
Bug 44617
Opened 26 years ago
Closed 25 years ago
edit*.cgi: Should show which product you're working on
Categories
(Bugzilla :: Bugzilla-General, enhancement, P3)
Tracking
()
VERIFIED
FIXED
Bugzilla 2.12
People
(Reporter: mtakacs, Assigned: Chris.Yeh)
Details
(Whiteboard: 2.12)
As an admin user, there's three CGI's that allow you to work on the version,
components and milestones for the products you're tracking.
IF you're doing alot of data entry (on a new installation for instance) you can
get confused about which product you're working on. Sure, you could look in the
URL and read the ?product=XX listing, but why not print it out right where
you're working?
editversion.cgi
editcomponent.cgi
editmilestone.cgi
patches follow:
Index: editcomponents.cgi
===================================================================
RCS file: /cvsroot/mozilla/webtools/bugzilla/editcomponents.cgi,v
retrieving revision 1.11
diff -r1.11 editcomponents.cgi
266c266
< PutHeader("Select component");
---
> PutHeader("Select component of $product");
333c333
< PutHeader("Add component");
---
> PutHeader("Add component of $product");
361c361
< PutHeader("Adding new component");
---
> PutHeader("Adding new component of $product");
439c439
< PutHeader("Delete component");
---
> PutHeader("Delete component of $product");
555c555
< PutHeader("Deleting component");
---
> PutHeader("Deleting component of $product");
619c619
< PutHeader("Edit component");
---
> PutHeader("Edit component of $product");
681c681
< PutHeader("Update component");
---
> PutHeader("Update component of $product");
Index: editversions.cgi
===================================================================
RCS file: /cvsroot/mozilla/webtools/bugzilla/editversions.cgi,v
retrieving revision 1.5
diff -r1.5 editversions.cgi
225c225
< PutHeader("Select version");
---
> PutHeader("Select version of $product");
280c280
< PutHeader("Add version");
---
> PutHeader("Add version of $product");
351c351
< PutHeader("Delete version");
---
> PutHeader("Delete version of $product");
415c415
< PutHeader("Deleting version");
---
> PutHeader("Deleting version of $product");
480c480
< PutHeader("Edit version");
---
> PutHeader("Edit version of $product");
510c510
< PutHeader("Update version");
---
> PutHeader("Update version of $product");
Index: editmilestones.cgi
===================================================================
RCS file: /cvsroot/mozilla/webtools/bugzilla/editmilestones.cgi,v
retrieving revision 1.2
diff -r1.2 editmilestones.cgi
215c215
< PutHeader("Select milestone");
---
> PutHeader("Select milestone for $product");
258c258
< PutHeader("Add milestone");
---
> PutHeader("Add milestone for $product");
286c286
< PutHeader("Adding new milestone");
---
> PutHeader("Adding new milestone for $product");
329c329
< PutHeader("Delete milestone");
---
> PutHeader("Delete milestone of $product");
404c404
< PutHeader("Deleting milestone");
---
> PutHeader("Deleting milestone of $product");
469c469
< PutHeader("Edit milestone");
---
> PutHeader("Edit milestone of $product");
505c505
< PutHeader("Update milestone");
---
> PutHeader("Update milestone of $product");
committed to trunk, thanks for the patch!
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Comment 4•25 years ago
|
||
Sorry for the spam, but I needed to be able to query for all of these correctly.
Target Milestone: --- → Bugzilla 2.12
Comment 6•24 years ago
|
||
Moving closed bugs to Bugzilla product
Component: Bugzilla → Bugzilla-General
Product: Webtools → Bugzilla
Version: other → unspecified
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
•