aboutsummaryrefslogtreecommitdiffstats
path: root/globals.pl
Commit message (Collapse)AuthorAgeFilesLines
* 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
* removing "Use Carp" and "sub die_with_dignity" that I was supposed to remove ↵justdave%syndicomm.com2001-07-041-7/+7
| | | | from the previous patch before checking it in.
* Fix for bug 59349: Processmail now runs in taint (perl -T and ↵justdave%syndicomm.com2001-07-041-3/+35
| | | | | | | $db->{Taint}=1) mode. Hooks also added to globals.pl to make converting other files in Bugzilla to run in Taint mode easier. Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
* Fix for bug 87596: improper definition of $::components in globals.pljustdave%syndicomm.com2001-07-011-1/+1
| | | | | Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
* Re-fix for bug 21253: fix calling conventions for syncshadowdb so that a ↵justdave%syndicomm.com2001-06-111-4/+5
| | | | | | phony parameter to get past the multi-param system() test in tinderbox actually works. r= tara
* Hopefully the fix for bug 77778: component lists, etc stuttering due to ↵justdave%syndicomm.com2001-06-081-0/+3
| | | | | | | | corruption in data/versioncache. Patch design by Terry Weissman <terry@mozilla.org> Patch implemented by Dave Miller <justdave@syndicomm.com> r= tara@tequilarista.org
* Fix for bug 21253: removing all single-parameter system() calls from Bugzillajustdave%syndicomm.com2001-06-071-2/+21
| | | | | Patch by Dave Miller <justdave@syndicomm.com> r= tara@tequilarista.org
* Fix for bug 75482: adding the capability to deactivate a group without ↵justdave%syndicomm.com2001-06-061-0/+11
| | | | | | | deleting it (prevent new bugs from being placed into that group, but don't remove the group restriction from bugs already in it). Patch by Myk Melez <myk@mozilla.org> r= justdave@syndicomm.com
* Fix for bug 72862: fixes more Perl warnings in RelationSet.pm and globals.pljustdave%syndicomm.com2001-06-011-0/+2
|
* Bug 71552 - Remove oldemailtech from Bugzillajake%acutex.net2001-05-241-2/+1
| | | | r= justdave@syndicomm.com
* Fix for bug 80045: 500 Server Error in IE (but not Netscape or Mozilla) on ↵justdave%syndicomm.com2001-05-111-0/+1
| | | | | | | errors looking up email addresses. Patch by <jake@acutex.net> r= justdave@syndicomm.com
* rolling version number to 2.13 for developmentjustdave%syndicomm.com2001-04-281-1/+1
|
* Tara is a bucket head. Floating version to 2.12 ship for tag and stripetara%tequilarista.org2001-04-251-1/+1
|
* Re-re-fix for bug 71550. This will quite likely fix a number of bugs in ↵dave%intrec.com2001-03-201-0/+8
| | | | other places. The DBID<->Name conversion routines in globals.pl were not pushing/popping the SQL state around their SQL calls, which could result in lost data if called from inside a loop which is handling other SQL data.
* Checking in Jake's <jake@acutex.net> interim patches from bug 30694. ↵endico%mozilla.org2001-03-131-3/+4
| | | | Bugzilla was showing bug summaries to everyone, even if they didn't have permission to view the bug. Jake's quick solution is to not display the bug at all if it is in a group no matter who is viewing it. The correct solution would be display the summary if the viewer had the proper permissions.
* Bug 66149 - nicer wording for the most common Bugzilla error message.gerv%gerv.net2001-03-081-1/+3
|
* fix for 9302: Would be nice if attachment + number was a link too.cyeh%bluemartini.com2001-02-211-0/+8
| | | | | | patch submitted by afranke@ags.uni-sb.de (Andreas Franke) thanks for the patch. Now can reference attachments in other bugs as an HTML link.
* Fix for bug 66149: better error message on connection failures. Patch by ↵dave%intrec.com2001-02-021-1/+1
| | | | shie9022@msmailhub.oulan.ou.edu (Alan Shields)
* Fix for bug 30694: adds title attributes to bug links with bug status and ↵dave%intrec.com2001-01-251-19/+45
| | | | description. Patch by jake@acutex.net
* changes from jake@acutex.net to make it possible to toggle the default value ↵dmose%mozilla.org2000-12-231-1/+4
| | | | of newemailtech for new profiles, this is set by default to be turned on (the old default was off) ; r=dmose@mozilla.org. changes from me to make newemailtech the default in all new installations, and update the verbiage in various spots to make it clear that newemailtech is now considered the one true way and the old tech will be going away. r=endico@mozilla.org,cyeh@bluemartini.com
* add a stack to save the current global SQL state so that queries can be ↵dmose%mozilla.org2000-12-121-1/+41
| | | | nested. used this mechanism to fix the 62618 regression. r=encido@mozilla.org
* patch from Jake <jsteenhagen@novagate.com> to fix bug 59515; adds a title ↵dmose%mozilla.org2000-12-071-2/+10
| | | | attribute containing status and short description to various bug links. In some browsers (most Mozilla builds, at least) this makes the status and short description available as a tooltip, so it is no longer necessary to click through to see it. r=dmose@mozilla.org
* correcting scopetara%tequilarista.org2000-10-311-7/+7
|
* front end fix for 31456: Editing a superuser clears their access flagscyeh%bluemartini.com2000-09-161-0/+4
| | | | patch by jmrobin@tgix.com
* fix for 51520: Missing uses of Param('emailsuffix')cyeh%bluemartini.com2000-09-141-1/+2
| | | | patch submitted by john.beranek@pace.co.uk (John Beranek)
* fix for 51299: RemoveVotes email should use the 'sendmailnow' Param. patch ↵cyeh%bluemartini.com2000-09-121-1/+5
| | | | by dave@intrec.com
* Don't lowercase the entries in legal_keywords.terry%mozilla.org2000-07-141-1/+1
|
* change '@::legal_resolution_no_dup' to '@::settable_resolutions'. This a ↵endico%mozilla.org2000-07-141-4/+15
| | | | list of resolutions which a bug may be changed to in the bug form and consists of all legal resolutions except 'MOVED' and 'DUPLICATE', since setting a bug to those resolutions requires a special process.
* Keywords were already enforced to never differ only in capitalization. So, ↵terry%mozilla.org2000-07-141-1/+10
| | | | changed the code so that case no longer matters when typing in the name of a keyword.
* fix for DBI compatibilitycyeh%bluemartini.com2000-06-271-1/+1
|
* remove dependency on Mysql, use DBI instead. Patch submitted bycyeh%bluemartini.com2000-05-201-5/+6
| | | | | sstock@iconnect-inc.com, reworked slightly by cyeh@bluemartini.com to update it to the tip
* rolling version to 2.11 for developmentcyeh%bluemartini.com2000-05-091-1/+1
|
* rolling version number to latest release of 2.10cyeh%bluemartini.com2000-05-091-1/+1
|
* fix warnings on DBID_to_real_or_loginname. thanks to endico@mozilla.orgcyeh%bluemartini.com2000-05-091-2/+2
|
* better implementation of realnames support. remove overhead of two sqlcyeh%bluemartini.com2000-04-261-5/+5
| | | | calls from bug_form.
* Add conditional support to display users real name in bug reports if usercyeh%bluemartini.com2000-04-221-6/+22
| | | | | | entered in that information. Thanks to Chris Baldwin <cbaldwin@redback.com> for providing the patch.