Closed
Bug 322763
Opened 19 years ago
Closed 18 years ago
Should be a UI for the administrator to view an account's history
Categories
(Webtools Graveyard :: Despot, defect, P3)
Webtools Graveyard
Despot
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: justdave, Assigned: reed)
Details
Attachments
(1 file, 2 obsolete files)
2.21 KB,
patch
|
justdave
:
review+
|
Details | Diff | Splinter Review |
Despot records user account changes to a table in the database, but there's no UI for viewing it.
Reporter | ||
Updated•19 years ago
|
Assignee: justdave → justdave
Reporter | ||
Updated•19 years ago
|
Priority: -- → P3
Assignee | ||
Updated•18 years ago
|
QA Contact: timeless → despot
Assignee | ||
Comment 1•18 years ago
|
||
This is a patch for something I'm ashamed to call a UI. :(
It's ugly, shows everything as raw data, doesn't work if user has changed e-mail address, and doesn't convert voucher ids into e-mail addresses.
I had to modify ListSomething() slightly so I could get away with not having an [edit] button for every row.
Reporter | ||
Comment 2•18 years ago
|
||
Comment on attachment 247646 [details] [diff] [review]
patch - v1 (very barebones UI)
>+ my $wherepart = "email = " . $::db->quote($F::email);;
too many semicolons ^^^
>+ if ($editprocname ne "") {
Just a perl hint here... an empty string is counted as false for boolean comparisons. So you can just do this:
if ($editprocname) {
and it'll do the right thing here.
Attachment #247646 -
Flags: review?(justdave) → review-
Reporter | ||
Comment 3•18 years ago
|
||
For the record, this is a good start, and better than nothing. We can improve on the other stuff later.
Assignee | ||
Comment 4•18 years ago
|
||
Addressed review comments.
Attachment #247646 -
Attachment is obsolete: true
Attachment #247647 -
Flags: review?(justdave)
Assignee | ||
Comment 5•18 years ago
|
||
Um, actually attach the new patch this time.
Attachment #247647 -
Attachment is obsolete: true
Attachment #247648 -
Flags: review?(justdave)
Attachment #247647 -
Flags: review?(justdave)
Reporter | ||
Updated•18 years ago
|
Attachment #247648 -
Flags: review?(justdave) → review+
Assignee | ||
Comment 6•18 years ago
|
||
Checking in despot.cgi;
/cvsroot/mozilla/webtools/despot/despot.cgi,v <-- despot.cgi
new revision: 1.50; previous revision: 1.49
done
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Updated•9 years ago
|
Product: Webtools → Webtools Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•