aboutsummaryrefslogtreecommitdiffstats
path: root/buglist.cgi
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch by Brian Duggan <bduggan@oven.com> -- security improvements.terry%mozilla.org2000-03-081-0/+3
|
* Fixed very stupid typo.terry%mozilla.org2000-03-071-1/+1
|
* Make a universal routine to report errors in forms, so that we canterry%mozilla.org2000-02-261-8/+2
| | | | have a universal (and more noticable) way of displaying them.
* Fixed some functions in buglist.cgi that won't work if we're hooked upterry%mozilla.org2000-02-181-3/+3
| | | | to the shadow database.
* Added an optional ability to keep a read-only shadow database, so thatterry%mozilla.org2000-02-181-1/+3
| | | | | bug queries can be run against it, so that these slow queries won't be able to tie up the rest of the system.
* Oops; had the name of the "editbugs" group typed in wrong in a coupleterry%mozilla.org2000-02-171-2/+2
| | | | of places.
* Major spankage. Added a new state, UNCONFIRMED. Added new groups,terry%mozilla.org2000-02-171-2/+17
| | | | | | | | | | | | "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.
* Patch by Hugo Frappier <hfrappier@dreammechanics.com> -- make theterry%mozilla.org2000-02-091-0/+1
| | | | "check all" and "uncheck all" buttons work on IE.
* Add an optional ability to stagger the headers in the bug list, whichterry%mozilla.org2000-02-041-8/+34
| | | | is uglier, but often squeezes things better horizontally.
* Whoops, searches of "Comment changed (before|after)" were not workingterry%mozilla.org2000-02-021-2/+2
| | | | correctly.
* Allow searching of attachment stuff using boolean charts.terry%mozilla.org2000-01-311-1/+28
|
* 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.
* Massive stomp on the query page and buglist page. Added the abilityterry%mozilla.org2000-01-281-361/+567
| | | | to use the "boolean charts" to do very powerful queries.
* Allow searches for "all keywords" or "no keywords"; fixed some otherterry%mozilla.org2000-01-271-2/+18
| | | | bugs around keyword queries.
* Reworked preferences UI. Added ability to turn off "My bugs" link atterry%mozilla.org2000-01-251-3/+12
| | | | | | bottom. Made "My bugs" show bugs you own AND bugs you submitted. Added ability to display your named queries in the footer. Many random bugfixes.
* Added a way to query by bug numbers. Added an "edit this query" linkterry%mozilla.org2000-01-251-6/+27
| | | | when you view a buglist.
* Named queries (and the default query) are now stored server side, interry%mozilla.org2000-01-241-58/+90
| | | | | | | the database, rather than in cookies. This means you have to log in to use these features, but I have plans that require them to be server-side. (Besides, some people were beginning to run out of cookie space.)
* Fixed stupid typo that caused exact email searches in descriptions to crash.terry%mozilla.org2000-01-231-1/+1
|
* Can now search for people who have added text to a bug.terry%mozilla.org2000-01-231-3/+22
|
* Stupid typo caused "any words" and "all words" searches on the longterry%mozilla.org2000-01-231-2/+2
| | | | description to crash.
* If no sort order is specified, use the cookie if available.terry%mozilla.org2000-01-231-2/+6
|
* Remember the previous sort order in a cookie, and make that theterry%mozilla.org2000-01-231-1/+26
| | | | | default sort order for new queries. Add a new "show list" link to the navigation header to return you to the list of selected bugs.
* Patch by Christine Begle <cbegle@mozilla.org>>, with heavyterry%mozilla.org2000-01-231-5/+32
| | | | | modifications by me -- let you query for "any words" and "all words", as well as the existing substring and regexp stuff.
* Added a new table fielddefs that records information about theterry%mozilla.org2000-01-221-1/+1
| | | | | | | | | different fields we keep an activity log on. The bugs_activity table now has a pointer into that table instead of recording the name directly. Set up a new, highly experimental email-notification scheme. To turn it on, the maintainer has to turn on the "New email tech" param, and then individual users have to turn on the "New email tech" preference.
* Moved all the long descriptions out of the bugs table, and into a newterry%mozilla.org2000-01-211-7/+15
| | | | | table. There is now a separate entry for each new long description, rather than appending them all together in one big field.
* Allow whitespace to be used to separate keywords.terry%mozilla.org2000-01-201-2/+5
|
* Use new "keywords" cache to display keywords in bug lists. Not onlyterry%mozilla.org2000-01-171-15/+1
| | | | | is this much faster, but it also lets you sort by that column, and requires less special-case code.
* Patch by Ramon Felciano <felciano@ingenuity.com>, with many tweaks byterry%mozilla.org2000-01-151-3/+48
| | | | | | | me. Added a footer to every page. Add some options to do things like display checkboxes instead of scrolling lists, and a new formatting for email diffs, and show list items capitalized instead of all upper case.
* Allow displaying of a "keywords" column.terry%mozilla.org2000-01-141-21/+36
|
* "Change several bugs" was losing the sort order.terry%mozilla.org2000-01-131-1/+4
|
* Asking for both keywords and CC info was creating corrupted SQL.terry%mozilla.org2000-01-111-2/+2
|
* Whoops; SQL doesn't seem to want me to mention a table in a SELECT statementterry%mozilla.org2000-01-071-2/+2
| | | | if I'm not going to use it.
* Add support for a new "keywords" feature. This lets some centralterry%mozilla.org2000-01-071-3/+39
| | | | | | | | | | | | authority maintain a list of keywords, and users can associate any keyword with any bug. The new functionality won't appear until at least one keyword is defined. Note that you *must* run the "checksetup.pl" script after updating this change, in order to create the new required tables "keywords" and "keyworddefs".
* When no bugs are found, give links to make another query or to submitterry%mozilla.org2000-01-051-0/+3
| | | | a new bug.
* a bug fix or two and a whole bunch of sanity-checking of form submissions stuffdmose%mozilla.org1999-12-031-1/+2
|
* updated license boilerplatedmose%mozilla.org1999-11-021-14/+15
|
* Fixed stupid perl warning.terry%mozilla.org1999-10-201-1/+3
|
* Allow sorting of status whiteboard column.terry%mozilla.org1999-10-151-1/+1
|
* Got rid of silly debugging hack.terry%mozilla.org1999-10-121-1/+0
|
* Sort votes in decreasing order, not increasing.terry%mozilla.org1999-10-121-2/+3
|
* Stupid hack to let things work with people who have bookmarkedterry%mozilla.org1999-10-121-0/+2
| | | | vote-sorting URLs using the old style.
* Added a "votes" field to the bugs table, which caches the total numberterry%mozilla.org1999-10-121-9/+8
| | | | | | of votes that have been cast for that bug. This let me simplify the SQL in buglist.cgi, which makes things more efficient and fixes several strange bugs.
* Fixed bug 15890 -- was producing garbled SQL if doing a queryterry%mozilla.org1999-10-091-1/+1
| | | | that required the bugs_activity table.
* Added ability to query by votes.terry%mozilla.org1999-10-081-0/+26
|
* Fixed bug 15808 -- previous change had busted querying of CC.terry%mozilla.org1999-10-081-2/+2
|
* Sorting by the vote column was busted.terry%mozilla.org1999-10-081-1/+1
|
* Added the ability for users to "vote" on which bugs they think shouldterry%mozilla.org1999-10-081-2/+6
| | | | be fixed.
* Patch by Markus Rex <msrex@suse.de> -- add a param to contorl whether to ↵terry%mozilla.org1999-09-281-6/+8
| | | | show quips.
* Patch by holger@holger.om.org (Holger Schurig) -- several cleanups.terry%mozilla.org1999-09-241-2/+1
|