aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* If there is only one project allowing new bugs, don't bother promptingterry%mozilla.org2000-02-261-3/+12
| | | | for which project to use.
* Fixed to cope with new longdescs table.terry%mozilla.org2000-02-251-2/+13
|
* Cut down on the number of syncshadowdb processes we fork off.terry%mozilla.org2000-02-192-2/+12
|
* Don't stomp on bugs timestamps when adding the new everconfirmed field.terry%mozilla.org2000-02-191-1/+1
|
* Check that we have defined a shadow db before trying to use it.terry%mozilla.org2000-02-191-1/+1
|
* Make reports work off of the the shadow database.terry%mozilla.org2000-02-181-1/+1
|
* Fixed some functions in buglist.cgi that won't work if we're hooked upterry%mozilla.org2000-02-182-3/+10
| | | | to the shadow database.
* Wasn't always tweaking LOCK TABLES commands correctly when shadowing. And ↵terry%mozilla.org2000-02-181-3/+3
| | | | finally fixed it to actually generate useful SQL error messages.
* Added an optional ability to keep a read-only shadow database, so thatterry%mozilla.org2000-02-188-8/+224
| | | | | bug queries can be run against it, so that these slow queries won't be able to tie up the rest of the system.
* Fixed bug where it was complaining that people without permissionsterry%mozilla.org2000-02-181-0/+6
| | | | were changing the resolution, even if they weren't.
* Was crashing when logging profile activity.terry%mozilla.org2000-02-181-3/+6
|
* Oops; had the name of the "editbugs" group typed in wrong in a coupleterry%mozilla.org2000-02-172-3/+3
| | | | of places.
* Display all possible state transitions in a bug if the user is notterry%mozilla.org2000-02-172-4/+14
| | | | | | logged in. Since they haven't logged in, we don't know what they will be allowed to do. And users who disable cookies tend to pretty often not be logged in.
* Put the "users" link in the trailer for people who are able to tweakterry%mozilla.org2000-02-171-4/+4
| | | | the permissions of other users.
* Ignore leading and trailing whitespace when trying to decide ifterry%mozilla.org2000-02-171-0/+3
| | | | someone changed something.
* Removed stupid debugging printf.terry%mozilla.org2000-02-171-1/+0
|
* Fixed icky infinite loop bug.terry%mozilla.org2000-02-171-3/+4
|
* Was crapping out if strictvaluechecks was turned on.terry%mozilla.org2000-02-171-17/+17
|
* Major spankage. Added a new state, UNCONFIRMED. Added new groups,terry%mozilla.org2000-02-1716-186/+942
| | | | | | | | | | | | "editbugs" and "canconfirm". People without these states are now much more limited in what they can do. For backwards compatability, by default all users will have the editbugs and canconfirm bits on them. Installing this changes as is should only have one major visible effect -- an UNCONFIRMED state will appear in the query page. But no bugs will become in that state, until you tweak some of the new voting-related parameters you'll find when editing products.
* Lock the tables as low-priority when writing. Maybe makes people making ↵terry%mozilla.org2000-02-161-1/+6
| | | | changes wait longer, but people doing read-only stuff should now never block for very long.
* Patches by Ken Jenks <kjenks@abiblion.com> and jug@tellux.de -- make the ↵terry%mozilla.org2000-02-161-2/+3
| | | | Javascript behave under IE5 and under Netscape 3.x
* Patches by Ken Jenks <kjenks@abiblion.com> and jug@tellux.de -- make the ↵terry%mozilla.org2000-02-151-16/+11
| | | | Javascript behave under IE5 and under Netscape 3.x
* This implements canonical email address transformation. i.e., you have the ↵seth%cs.brandeis.edu2000-02-131-9/+33
| | | | option of setting up bug_email.pl to search the profiles database for a username which has the same username (before the @) same username and base domain (seth@cs.brandeis.edu = seth@job.cs.brandeis.edu) or identical email address (old behavior) based on the From email address. See the code for a more sensical description.
* o this is a minor step towards getting canonical email addresses to work, ↵seth%cs.brandeis.edu2000-02-131-9/+41
| | | | | | | | and not via a gross hack (the script with a gross hack is in use in a production environment, so ...) Anyways, this address the findUser() sub and email transforms of none, base domain, and name only. base_domain is not properly implemented yet. an email transform of none does an exact match on email addresses in the profiles table. A name only transform does a regular expression match (via mysql's RLIKE operator) on the name portion of the address (i.e., seth from seth@job.cs.brandeis.edu). This is sloppy, but useful in an environment where there are only a few users. the base_domain is next, probably tomorrow. I need to figure out how to implement it first.
* this is the initial checkin of the bug_email.pl script into the bugzilla cvs ↵seth%cs.brandeis.edu2000-02-131-0/+1258
| | | | | | | | | | | | | | | | | | | | | | | tree under the contrib directory. This is not my code, but I'm championing its maintanence right now, since I'm using and hacking on it heavily. The list of contributors can be found in the file itself. Changes I've made : - updated to the newest CVS pull of bugzilla - works out of contrib/bugzilla - put in the MPL license header Directions for use are in the file itself. Essentially, you put in a procmailrc entry which cats the message to this script. Changes coming in the near future ... - canonical email transformation (i.e., seth@job.cs.brandeis.edu == seth@cs.brandeis.edu) - default product and component (i.e., if you don't specify a product and component, it goes into a PENDING product) - querying a bug over email - appending a bug over email - keywords over email - use the globals.pl parameters functionality to edit and save this script's parameters - integrate some setup in the checksetup.pl script FWIW, the first two things are necessary for this to be useful in my setup, so they get an overwhelming bit of priority
* Patch by Hugo Frappier <hfrappier@dreammechanics.com> -- make theterry%mozilla.org2000-02-091-0/+1
| | | | "check all" and "uncheck all" buttons work on IE.
* Get rid of a bit of unused Javascript code.terry%mozilla.org2000-02-091-2/+0
|
* Make the "mail a new password" text be a param.terry%mozilla.org2000-02-082-17/+27
|
* The "put this named query in the footer" feature was choking if theterry%mozilla.org2000-02-051-8/+24
| | | | name of the query had a space in it.
* Add an optional ability to stagger the headers in the bug list, whichterry%mozilla.org2000-02-042-8/+50
| | | | is uglier, but often squeezes things better horizontally.
* Simplify dependency wording.terry%mozilla.org2000-02-031-2/+2
|
* Whoops, searches of "Comment changed (before|after)" were not workingterry%mozilla.org2000-02-021-2/+2
| | | | correctly.
* Nothing was checking that the bug number you entered for a duplicateterry%mozilla.org2000-02-021-7/+9
| | | | bug was actually a legal bug number.
* REOPENing a bug now clears the resolution; most people will agree itterry%mozilla.org2000-02-011-0/+1
| | | | should have always had this behavior.
* The "And" and "Or" buttons now work faster, if you have Javascriptterry%mozilla.org2000-02-011-4/+6
| | | | | enabled. (If you don't have Javascript, they work just like they did before.)
* Allow searching of attachment stuff using boolean charts.terry%mozilla.org2000-01-312-1/+32
|
* Patch by aclark@ghoti.org -- use localconfig file to get databaseterry%mozilla.org2000-01-301-1/+14
| | | | connection info.
* Patch by aclark@ghoti.org -- clear the accumulation buffer before using it.terry%mozilla.org2000-01-301-0/+1
|
* Don't regenerate the shadow database until we're sure that our DB isterry%mozilla.org2000-01-301-2/+11
| | | | up to snuff with what processmail expects.
* Fixed busted mailto: link.terry%mozilla.org2000-01-291-2/+2
|
* The "Show list" link that is supposed to quickly get you back to theterry%mozilla.org2000-01-291-1/+1
| | | | list of bugs you queried for was busted.
* Apparently, you're supposed to put "#foo" stuff in a URL after all theterry%mozilla.org2000-01-291-2/+4
| | | | "?" and "&" stuff. IE doesn't work if you don't.
* Was crashing if you weren't already logged in.terry%mozilla.org2000-01-281-0/+1
|
* Allow searching by "last change date" in the boolean charts.terry%mozilla.org2000-01-281-0/+3
|
* Massive stomp on the query page and buglist page. Added the abilityterry%mozilla.org2000-01-285-374/+768
| | | | to use the "boolean charts" to do very powerful queries.
* Patch by granrose@netscape.com -- put initial focus into bug# field.terry%mozilla.org2000-01-271-0/+3
|
* Add support for keywords.terry%mozilla.org2000-01-271-2/+9
|
* Patch by Rob Baham <robb@scitechsoft.com> -- links to other bugsterry%mozilla.org2000-01-271-2/+2
| | | | should be relative URLs, not absolute.
* Allow searches for "all keywords" or "no keywords"; fixed some otherterry%mozilla.org2000-01-272-14/+31
| | | | bugs around keyword queries.
* Add a way to log all SQL requests made.terry%mozilla.org2000-01-271-0/+19
|