aboutsummaryrefslogtreecommitdiffstats
path: root/globals.pl
Commit message (Collapse)AuthorAgeFilesLines
* Fix for bug 103778: Rewrites and templatizes buglist.cgi.myk%mozilla.org2002-03-121-2/+118
| | | | | Patch by Myk Melez <myk@mozilla.org>. r=bbaetz,gerv
* Backing out a bit I didn't mean to check in as part of bug 119657. Oops.bbaetz%student.usyd.edu.au2002-03-021-3/+0
|
* Bug 127318 - push UserInGroup to templatesbbaetz%student.usyd.edu.au2002-03-011-0/+3
| | | | r=jake x 2
* Bug 119657 - template error checkingbbaetz%student.usyd.edu.au2002-03-011-2/+6
| | | | r=gerv, justdave
* Bug 115369 - templatise long_list.cgi.gerv%gerv.net2002-02-201-22/+34
|
* Fix for bug 125516: the recent fix for emails truncating when a period ↵justdave%syndicomm.com2002-02-171-1/+1
| | | | | | | | occurred on a line by itself broke Exim because it needs the -t and -i as separate parameters instead of stacked (the original patch had -ti) Patch by Tobias Burnus <burnus@gmx.de> r= justdave, gerv
* Bug 110013 - templatize describecomponents.cgibbaetz%student.usyd.edu.au2002-02-141-6/+8
| | | | r=gerv, afranke
* Backing out checkin for bug 115369, it's busted on Perl 5.00503.justdave%syndicomm.com2002-02-141-206/+13
|
* Fix for bug 115369: Templatization of long_list.cgijustdave%syndicomm.com2002-02-131-13/+206
| | | | | Patch by Gervase Markham <gerv@mozilla.org> r= bbaetz, dkl
* Bug 97471 - The assignee and qa contact should always be able to see theirbbaetz%student.usyd.edu.au2002-02-131-5/+2
| | | | | bugs r=justdave, afranke
* Bug 100094 - use generic template handling codebbaetz%student.usyd.edu.au2002-02-131-3/+14
| | | | r=mattyt, afranke
* Fix for bug 117055: Emails were being truncated if they contained a line ↵justdave%syndicomm.com2002-02-061-1/+1
| | | | | | | | | with nothing but a period on them. We now pass -i to sendmail and its clones to tell it to ignore periods (since we close the pipe when we're done, rather than signalling it with a period). Has been tested with sendmail and postfix. Patch by Dave Miller <justdave@syndicomm.com> r= afranke, bugzilla@bkor.dhs.org, jake
* Bug 95732 - remove logincookies.cryptpassword, and invalidate cookies frombbaetz%student.usyd.edu.au2002-02-041-0/+13
| | | | | | | the db when required instead. (Also fixes bug 58242 as a side effect) r=myk, kiko
* Fix for bug 121747: Stops every script before it does anything else if ↵myk%mozilla.org2002-02-031-0/+92
| | | | | | | | Bugzilla is currently shut down. Also adds global template instantiation code to globals.pl. Patch by Myk Melez <myk@mozilla.org>. r=gerv,kiko
* Fix for bug 104521: Removes old attachment interface in favor of new ↵myk%mozilla.org2002-01-301-2/+2
| | | | | | | attachment tracker. Patch by Myk Melez <myk@mozilla.org>. r=bbaetz,kiko
* Bug 121074 - taint error after changing bugbbaetz%student.usyd.edu.au2002-01-221-1/+1
| | | | r=daa@distributed.net,jake
* Bug 98368 - dbi connect doesn't use db_port option.bbaetz%student.usyd.edu.au2002-01-221-1/+2
| | | | Patch by gene.stuckey@tellabs.com, r=bbaetz,justdave
* Fix for bug 108982: enable taint mode for all user-facing CGI files.justdave%syndicomm.com2002-01-201-0/+19
| | | | | Patch by Brad Baetz <bbaetz@student.usyd.edu.au> r= jake, justdave
* Fix for bug 113646, midair when changing assignee gives error. Fix changes ↵zach%zachlipton.com2001-12-171-4/+4
| | | | | | | | sub trim() in globals.pl not to use $_ so as not to conflict with $_ values allready set. Patch by myk@mozilla.org, r1=bbaetz, r2=dave.
* Bug 104677 : Votes field (text style) on showvotes.cgi defaults to size 5, ↵matty%chariot.net.au2001-11-171-0/+17
| | | | | | not natural size and doesn't include a maxlength attribute. Patch by Christoper Aillon <caillon@returnzero.com>.
* Bug 101560, pt 2. Perl 5.00503 gives a (bogus?) warning which 5.6 doesn't.bbaetz%cs.mcgill.ca2001-11-171-1/+1
| | | | Quote manually rather than using qw to get arround this
* Bug 101560 - clear some more env vars so that system calls will run inbbaetz%cs.mcgill.ca2001-11-171-2/+1
| | | | | | taint mode. The perforce integration stuff needs this. r=gerv,mattyt
* Fix for bug 86300 - If a bug didn't exist and GetBugLink() tried to create a ↵jake%acutex.net2001-11-121-33/+52
| | | | | | tooltip for it, you'd get uninitialized variables warnings in your error log. This path also introduces a cache so if the same bug # is mentioned more than once during the same running of the script, it only has to query the database once. r= mattyt, gerv
* Fixed "used only once" warning coming from my patch for bug 97469. Thebbaetz%cs.mcgill.ca2001-10-251-0/+1
| | | | | | warning was hidden from the tests by bug 106424. r=Jake, no 2nd review needed.
* Bug 97469 - Assignee/QA/Reporter/CC don't get email on restricted bugs.bbaetz%cs.mcgill.ca2001-10-231-8/+110
| | | | | | | | | | Also fixes seeing bugs in the buglist (bug 95024), dependancy lists, tooltips, duplicates, and everywhere else I could see which checked group bugs.groupset == 0. Also fxed bug 101560, by clearing BASH_ENV r=myk,justdave
* Bug 71840 - Make comments referenceable using a #c4 to get the fourth comment.jake%acutex.net2001-10-201-10/+24
| | | | | Patch by Gerv <gerv@mozilla.org> and Myself. r= jake@acutex.net, gerv@mozilla.org, justdave@syndicomm.com
* Backing out previous change, the wrong patch got checked in.jake%acutex.net2001-10-201-26/+10
|
* Bug 71840 - make comments referenceable. Patch by gerv/jake. r=justdave, ↵gerv%gerv.net2001-10-201-10/+26
| | | | jake/gerv.
* Bug 73180 - We now put a notice at the top of the versioncache file saying ↵jake%acutex.net2001-10-201-0/+7
| | | | | | | that it should not be edited. Patch by Matthew Tuck <matty@chariot.net.au> r= gerv@mozilla.org, jake@acutex.net
* Bug 57819 - change the size of the bit we print in the large error case. ↵gerv%gerv.net2001-10-141-2/+2
| | | | r=justdave.
* Fix for bug 104516: No code changes in this patch, all this checkin does is ↵justdave%syndicomm.com2001-10-131-13/+13
| | | | | | | remove all tabs from the bugzilla source and replace it with the appropriate number of spaces (in most cases 8) to line up with existing code. This is part of the effort to bring the existing codebase up to par with our style guidelines. Patch by Jake Steehagen <jake@acutex.net> r= justdave x2
* Backing out Gerv's checkin for bug 71840. Per the bug report, it did not ↵justdave%syndicomm.com2001-10-121-26/+10
| | | | | | have proper review first, and myk objected to what got landed on irc.
* Bug 71840 - Make comments referenceable. Patch by gerv; r=myk, jake (ish :-).gerv%gerv.net2001-10-121-10/+26
|
* Bug 57819 - cut down large mysql error strings. Patch by ↵gerv%gerv.net2001-10-121-2/+7
| | | | n_hibma@qubesoft.com, r=gerv.
* Fix for bug 82809: comments in bugs no longer have &#013; where the ↵justdave%syndicomm.com2001-10-031-1/+1
| | | | | | | linefeeds should be. Patch by Dave Miller <justdave@syndicomm.com> r= timeless@mac.com (no 2nd review needed)
* Fix for bug 30731 - Reassigning closed bugs from the mass change page caused ↵jake%acutex.net2001-09-151-1/+8
| | | | | | their status to be set to new. r= myk@mozilla.org, zach@zachlipton.com
* Fix for bug 42810 - Bugzilla would choke if your product name contained a ' ↵jake%acutex.net2001-09-011-1/+1
| | | | | | | mark. Patch by Christian Reis <kiko@async.com.br> r= justdave@syndicomm.com, caillon@returnzero.com
* Bumping version to 2.15 for developmentjustdave%syndicomm.com2001-08-301-1/+1
|
* moving version to 2.14 (golden) to roll the tarball.justdave%syndicomm.com2001-08-301-1/+1
|
* All code patches targetted for 2.14 have been checked in. Bumping versionjustdave%syndicomm.com2001-08-271-1/+1
| | | | number to 2.14rc to indicate release candidate status.
* Fix for bug 95634 - Improvements to Param('voteremovedmail')jake%acutex.net2001-08-251-10/+33
| | | | | Patch by Matthew Tuck <matty@chariot.net.au> r= jake@acutex.net
* Fix for bug 95890: Correctly convert/record keyword changes in the ↵myk%mozilla.org2001-08-201-12/+10
| | | | | | | | bugs_activity table for keywords containing a plus sign or other regular expression meta-characters. Myk's first ever Bugzilla checkin! Patch by Dave Miller <justdave@syndicomm.com> and Myk Melez <myk@mozilla.org>. r=myk@mozilla.org,justdave@syndicomm.com
* Fix for bug 92593: Changing a bugs product will no longer remove the votes ↵justdave%syndicomm.com2001-08-161-7/+35
| | | | | | | from that bug unless the number of votes for a given user is beyond what is allowed per-bug on the new product. Only the per-bug vote count is checked. If the user is beyond the per-product vote limit for the new product, it is left alone, on the theory that it's better to preserve the votes on the bug. The user will be forced to reduce their votes to fit the product limit the next time they try to vote on something. Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
* Re-fix for bug 95082: allow syncshadowdb to continue to make queries while ↵justdave%syndicomm.com2001-08-151-1/+1
| | | | | | | Bugzilla is shut down. Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
* Fix for bug 95082 - Param('shutdownhtml') doesn't completely shut down bugzilla.jake%acutex.net2001-08-141-0/+17
| | | | r= justdave@syndicomm.com
* Fix for bug 94618: remove restrictions on valid characters in passwords. If ↵justdave%syndicomm.com2001-08-111-7/+4
| | | | | | | crypt() takes it, why shouldn't we? Patch by Myk Melez <myk@mozilla.org> r= justdave@syndicomm.com
* fix for bug 66235: process_bug.cgi: multiple product change misses the ↵zach%zachlipton.com2001-08-111-0/+24
| | | | groupset bit. Patch by Myk <myk@mozilla.org> r=Jake, oh, and it's my first checkin, yahoo!
* Fix for bugs 55161 and 12819. The activity log now stores only what's ↵jake%acutex.net2001-07-201-0/+31
| | | | | | changed in multi-value fields. r= justdave@syndicomm.com
* Fix for bug 77473, bug 74032, and bug 85472: Passwords are no longer stored ↵justdave%syndicomm.com2001-07-111-9/+100
| | | | | | | in plaintext in the database. Passwords are no longer encrypted with MySQL's ENCRYPT() function (because it doesn't work on some installs), but with Perl's crypt() function. The crypt-related routines now properly deal with salts so that they work on systems that use methods other than UNIX crypt to crypt the passwords (such as MD5). Checksetup.pl will walk through your database and re-crypt everyone's passwords based on the plaintext password entry, then drop the plaintext password column. As a consequence of no longer having a plaintext password, it is no longer possible to email someone their password, so the login screen has been changed to request a password reset instead. The user is emailed a temporary identifying token, with a link back to Bugzilla. They click on the link or paste it into their browser and Bugzilla allows them to change their password. Patch by Myk Melez <myk@mozilla.org> r= justdave@syndicomm.com, jake@acutex.net
* Fix for bug 87701: Invalid username in bug changes echoed back without ↵justdave%syndicomm.com2001-07-041-0/+1
| | | | | | | escaping HTML data Patch by Gervase Markham <gervase.markham@univ.ox.ac.uk> r= justdave@syndicomm.com