summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
AgeCommit message (Collapse)AuthorFilesLines
2001-08-20Fix for bug 95890: Correctly convert/record keyword changes in the ↵myk%mozilla.org1-7/+9
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
2001-08-13Fix for bug 39816: Anyone in CC, Reporter, QA Contact, or Asigned To fields ↵justdave%syndicomm.com1-0/+13
can now be given access to view a bug even if the permissions on that bug are set to a group that would normally exclude those people. Patch by Myk Melez <myk@mozilla.org> r= justdave@syndicomm.com
2001-08-11Fix for bug 94618: remove restrictions on valid characters in passwords. If ↵justdave%syndicomm.com1-3/+2
crypt() takes it, why shouldn't we? Patch by Myk Melez <myk@mozilla.org> r= justdave@syndicomm.com
2001-08-09Re-fix for bug 55161 - if data is partial in activity table, prepend a ? to ↵justdave%syndicomm.com1-0/+6
indicate that we don't know for sure what got dropped. Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
2001-07-26Fix for bug 90933: inconsistant field types for profiles.disabledtextjustdave%syndicomm.com1-1/+5
Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
2001-07-25re-fix bug 76154: permissions weren't being set correctly on the .htaccess ↵justdave%syndicomm.com1-0/+3
files when checksetup.pl was run again. Also adding .htaccess to .cvsignore so it won't show up as ? in cvs diffs and updates. Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
2001-07-23Remove the code for rejecting the version of MySQL with broken encryption ↵jake%acutex.net1-9/+8
(as bugzilla no longer uses MySQL's encrypt routine). Also, point to mysql.com for downloading newer versions. Patch by Myk Melez <myk@mozilla.org> r= jake@acutex.net
2001-07-22Fix for bug 76154: Bugzilla can now optionally provide .htaccess files for ↵justdave%syndicomm.com1-0/+71
Apache to help restrict viewing of private data Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
2001-07-21Fix for bugs 55161 and 12819. The activity log now stores only what's ↵jake%acutex.net1-2/+68
changed in multi-value fields. r= justdave@syndicomm.com
2001-07-17Correcting the URL for MySQL's web page. Bug 90553.jake%acutex.net1-1/+1
Patch by Myk Melez <myk@mozilla.org>
2001-07-11Fix for bug 77473, bug 74032, and bug 85472: Passwords are no longer stored ↵justdave%syndicomm.com1-9/+98
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
2001-06-29Fix for bug 76183 and bug 71555: consolidates chmod activity in one place in ↵justdave%syndicomm.com1-104/+119
checksetup.pl and also provides permission setting for bugzilla installations installed in a personal user directory as opposed to the server's main web space. (makes the files world-readable so the webserver can see them, since you can't set the group) Patch by Christian Reis <kiko@async.com.br> r= justdave@syndicomm.com
2001-06-22Re-fix for bug 28458: AddFDef always replaces the fielddefs every time you ↵justdave%syndicomm.com1-1/+1
run checksetup.pl, so the change to them during doeditparams was nullified if you updated. Other recent changes have nullified the reason for changing it in editparams anyway, so just backing that part out. Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
2001-06-20Fix for bug 86447 - ChangeFieldType() wasn't dealing with 'not null' properly.jake%acutex.net1-5/+9
r= justdave@syndicomm.com
2001-06-19Running a query using the Added Comment option was very slow (bug 57350).jake%acutex.net1-0/+11
Patch by Myk Melez <myk@mozilla.org> and Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
2001-06-17applying handy patch to refix version table to be 64 instead of 16--partial ↵tara%tequilarista.org1-1/+5
fix of bug 9352
2001-06-07Fix for bug 21253: removing all single-parameter system() calls from Bugzillajustdave%syndicomm.com1-3/+3
Patch by Dave Miller <justdave@syndicomm.com> r= tara@tequilarista.org
2001-06-07Fix for bug 83872: Bugzilla no longer requires the Mysql Perl module, but ↵justdave%syndicomm.com1-8/+6
the DBD::mysql Perl module, and has been this way for a while. Fixing the version checks in checksetup.pl to check the correct module. Also eliminates a DBD::mysql-specific database function call that is depricated in the current version of DBD_mysql. Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net, tara@tequilarista.org
2001-06-06Fix for bug 28458: "NEW" bugs were not getting CC or QA Contact information ↵justdave%syndicomm.com1-4/+4
displayed. Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
2001-06-06Fix for bug 75482: adding the capability to deactivate a group without ↵justdave%syndicomm.com1-0/+18
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
2001-06-02Fix for bug 83596: optional dependency on XML::Parser now checked in ↵justdave%syndicomm.com1-5/+13
checksetup.pl Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
2001-06-02Fix for bug 83618: checksetup.pl crashes if DBI module isn't already installed.justdave%syndicomm.com1-1/+5
Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
2001-06-01Fix for bug 79317: dependency on CGI::Carp not caught by checksetup.pljustdave%syndicomm.com1-28/+30
Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
2001-05-29Fix for bug 78045: change references to README in error messages to point to ↵justdave%syndicomm.com1-3/+4
the Bugzilla Guide instead. Patch by Matthew Tuck <matty@chariot.net.au> r= justdave@syndicomm.com
2001-05-24Bug 71552 - Remove oldemailtech from Bugzillajake%acutex.net1-29/+16
r= justdave@syndicomm.com
2001-04-20another chmod with a leading 1 (Perl interprets this as a decimal instead of ↵justdave%syndicomm.com1-1/+1
octal)
2001-04-20Changing all chmod 1777 to chmod 01777. Without the leading 0 it's ↵justdave%syndicomm.com1-4/+4
interpreted as decimal instead of octal (oops)
2001-04-20Bullshit checkin to add the fact that the previous changes also include the ↵tara%tequilarista.org1-3/+0
final fix for bug 72721. I am a buckethead
2001-04-20landing final patch for bug 76261tara%tequilarista.org1-9/+15
2001-04-17Correcting my email address in the commentsjustdave%syndicomm.com1-6/+6
2001-03-10Fix for bug 71510: permissions not set correctly on graphs directorydave%intrec.com1-1/+1
2001-03-09Refix for bug 25693: more accurate regexp to find duplicates when generating ↵dave%intrec.com1-3/+3
initial duplicates table.
2001-03-07Fix for bug 62949: Initial Test Component on new install did not have ↵dave%intrec.com1-27/+34
initialOwner, which made sanitycheck complain.
2001-03-01fix for 61637: Code bit for upgrading from 2.5cyeh%bluemartini.com1-0/+29
based on patch submitted by ehanson@talkware.net (Eric Hanson) support for changes comments table to longdescs, but only if comments table exists.
2001-02-27Fix for bug 50279: a couple executable files were missing from the list of ↵dave%intrec.com1-1/+2
files that checksetup considers executable when it's resetting permissions.
2001-02-26Fix for bug 69670: Chart::Base only reports its version number as 0.99, ↵dave%intrec.com1-1/+1
regardless of the fact that you have 0.99b or 0.99c installed. So checksetup.pl needs to look for 0.99 instead of 0.99b.
2001-02-23fix for 66876: Using userids (mediumint) for initialowner and initialqacontactcyeh%bluemartini.com1-2/+62
based on patch submitted by baulig@suse.de (Martin Baulig).
2001-02-22Made dupe table populating code not break on multi-line dupe comments. ↵gerv%gerv.net1-1/+1
Thanks to Alex Melnick <alex@get.topica.com>. No bug number.
2001-02-21fix for 61648: SQL inserts do not match constraintscyeh%bluemartini.com1-10/+11
patch submitted by kevin.brannen@springbow.com (Kevin Brannen) change checksetup inserts to match database constraints.
2001-02-17fix for 17773: Checksetup.pl should create maintainer if database is empty.cyeh%bluemartini.com1-17/+126
patch submitted by dave@intrec.com (Dave Miller) create an administrator if we don't find one in the db or if new.
2001-01-25Fix for part 2 of bug 31456: changes the way checksetup.pl handles the ↵dave%intrec.com1-66/+63
localconfig file internally to guarantee proper detection of any variables defined in localconfig (even empty arrays, which it couldn't detect before, in case someone adds one to localcofig at some point)
2001-01-25Fix for bug 65598: check for minimum versions of some of the Perl modules ↵dave%intrec.com1-8/+84
Bugzilla needs. Also check for minimum version of MySQL server on the other end.
2001-01-25patch from bug 17464 to give user some control over what sorts of bug mail ↵dmose%mozilla.org1-0/+8
get sent to an account. Original patch by al_raetz@yahoo.com and lots of additional hacking by me; r=donm@bluemartini.com
2001-01-19More bug 6682. Perhaps this could be it.gerv%gerv.net1-13/+27
2001-01-18Code to upgrade data file formats from old version, and intermediate broken ↵gerv%gerv.net1-0/+61
version. Bug 6682.
2000-12-15Fix duplicates table check; make sure we create graphs directory.gerv%gerv.net1-4/+3
2000-12-14Fixed dupes table detection code; added check for graphs directory.gerv%gerv.net1-7/+14
2000-10-24whoopsie.tara%tequilarista.org1-2/+2
2000-10-24Landing duplicates stuff from gervase markhamtara%tequilarista.org1-1/+44
2000-09-29Fix for bug 52921: checksetup.pl fails to create database with password.dave%intrec.com1-37/+49
Now it won't choke on this anymore. Patch also includes a Perl 5.6 compatibility update (see bug 52921 and bug 44622 for details).