aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config.pm
Commit message (Collapse)AuthorAgeFilesLines
* Bug 452525 - Allow the option of "OR" groups ("any of the groups" instead of ↵Simon Green2013-12-181-0/+3
| | | | | "all of the groups") r=gerv, a=sgreen
* Bug 787668: Use |use parent| instead of |use base|Matt Selsky2012-12-011-1/+1
| | | | r/a=LpSolit
* Bug 816747 - Add dummy POD for unPODded methods.Marc Schumann2012-11-301-0/+2
| | | | r/a=LpSolit
* Bug 797636: Improve performance for buglistsFrédéric Buclin2012-11-161-2/+4
| | | | r=dkl a=LpSolit
* Bug 787529: Use |use 5.10.1| everywhereFrédéric Buclin2012-09-011-0/+1
| | | | r=wicked a=LpSolit
* Bug 680131: Replace the MPL 1.1 license by the MPL 2.0 one in all files, and ↵Frédéric Buclin2012-01-111-28/+5
| | | | | | add it to files which miss one r=kiko r=mkanat r=mrbball a=LpSolit
* Bug 255606: Do not let buglist.cgi return all bugs by defaultFrédéric Buclin2011-11-261-0/+5
| | | | r/a=mkanat
* Bug 676200: We shouldn't manually delete obsolete parameters in ↵Frédéric Buclin2011-08-041-17/+13
| | | | | | Bugzilla::Config::update_params(), else they are not saved in old-params.txt r/a=mkanat
* Bug 624349: Let the config_modify_panels hook add new parameters to existing ↵Frédéric Buclin2011-01-111-11/+10
| | | | | | panels r/a=mkanat
* Bug 434801: [SECURITY] .htaccess doesn't prevent reading old-params.txt from ↵Reed Loden2010-02-011-4/+7
| | | | | | the web Patch by Reed Loden <reed@reedloden.com> r=mkanat a=LpSolit
* Bug 519858 - Move uncommonly used parameters out of the "Required" section ↵mkanat%bugzilla.org2009-12-311-17/+2
| | | | | | and into a "General" and "Advanced" section Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
* Bug 430014: Re-write the code hooks system so that it uses modules instead ↵mkanat%bugzilla.org2009-11-241-2/+2
| | | | | | of individual .pl files Patch by Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
* Was getting an "uninitialized value" error in Bugzilla::Config when running ↵mkanat%bugzilla.org2009-10-091-1/+3
| | | | checksetup.pl, because of the checkin from bug 514913.
* Bug 514913: Eliminate ssl="authenticated sessions"mkanat%bugzilla.org2009-10-091-0/+5
| | | | Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
* Bug 519676: Allow users to set blank/false values for things in ↵mkanat%bugzilla.org2009-09-301-1/+6
| | | | | | checksetup.pl's "answers" file. Patch by Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
* Bug 478972: Remove the 'useentrygroupdefault' parameter - Patch by ↵lpsolit%gmail.com2009-03-311-4/+0
| | | | Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
* Bug 347707: Changing parameters could silently fail because we weren't ↵mkanat%bugzilla.org2008-12-241-1/+1
| | | | | | correctly checking the return code from "rename" Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave, a=mkanat
* Bug 438435: Need code hooks for authenticationmkanat%bugzilla.org2008-08-071-2/+10
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
* Bug 430909 - add hook for parametersbbaetz%acm.org2008-05-061-6/+10
| | | | r=mkanat, r/a=lpsolit
* Bug 407402: Make Bugzilla die when data/params doesn't exist, if we're in a CGI.mkanat%bugzilla.org2008-01-181-0/+11
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave, a=mkanat
* Bug 361149: Bugzilla now requires Perl 5.8.1 or newer (Perl 5.8.0 throws ↵lpsolit%gmail.com2007-08-091-2/+0
| | | | warnings about deprecated pseudo-hashes) - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
* Bug 345100: Remove obsolete parameters and "officially" turn on custom bug ↵lpsolit%gmail.com2007-06-141-10/+15
| | | | status workflow - Patch by Frédéric Buclin <LpSolit@gmail.com> r=gerv a=justdave
* Bug 361252: checksetup.pl should get confirmation from the user before ↵lpsolit%gmail.com2006-12-091-1/+1
| | | | causing dataloss in UTF8 conversion - Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit a=myk
* Bug 353711: Move to Email:: modules for email sendingmkanat%bugzilla.org2006-11-031-2/+15
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=glob, a=myk
* Bug 352235: Use Bugzilla->localconfig everywhere instead of :localconfig ↵mkanat%bugzilla.org2006-09-191-10/+1
| | | | | | from Bugzilla::Config Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
* Bug 346483: Fix up param-updating code in checksetup.pl to all be in a module.mkanat%bugzilla.org2006-08-011-50/+122
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
* Bug 346375: Move the code that gets the initial $dbh into Bugzilla::DBmkanat%bugzilla.org2006-07-291-1/+2
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=justdave
* Bug 343338: Eliminate "my" variables from the root level of modulesmkanat%bugzilla.org2006-07-141-2/+2
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
* Bug 338375: Use Bugzilla->params everywhere instead of Param().mkanat%bugzilla.org2006-07-041-35/+0
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Bug 342869: Use Bugzilla->params everywhere except templatesmkanat%bugzilla.org2006-07-041-2/+2
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Bug 343112: @Bugzilla::Config::parampanels is only defined if something ↵mkanat%bugzilla.org2006-07-041-11/+14
| | | | | | calls _load_params Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Bug 328186: checksetup.pl should display the version of Bugzilla - Patch by ↵lpsolit%gmail.com2006-07-031-3/+0
| | | | Rémi Zara <remi_zara@mac.com> r=mkanat a=justdave
* Bug 342121: Remove usage of Config qw(:locations) in favor of ↵mkanat%bugzilla.org2006-06-291-41/+7
| | | | | | Constants::bz_locations() Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Bug 282121: Remove globals.pl from scripts that no longer use it - Patch by ↵lpsolit%gmail.com2006-06-211-5/+2
| | | | Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
* Bug 304601: Bugzilla::Config's :locations exports need to be in their own ↵lpsolit%gmail.com2006-06-201-12/+15
| | | | | | | | module - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat for the main patch, r=myk for the patch about CGI.pm a=justdave Bug 328637: Remove all legal_* versioncache arrays - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave Bug 110503 - Eliminate versioncache
* Spelling in code comments patch: 'particuarly' -> 'particularly'; 'bugzilla' ↵vladd%bugzilla.org2006-06-191-2/+2
| | | | -> 'Bugzilla'; patch by Vlad Dascalu <vladd@bugzilla.org>.
* Bug 328642: Params should be in Bugzilla->params instead of being a ↵mkanat%bugzilla.org2006-05-231-74/+43
| | | | | | Bugzilla::Config subroutine Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Bump version post-release.mkanat%bugzilla.org2006-04-231-1/+1
|
* Update the version numbers for 2.23.1.mkanat%bugzilla.org2006-04-231-1/+1
|
* Patch for bug 298341: Implement code hook mechanism; patch by ↵jocuri%softhome.net2006-02-281-1/+2
| | | | zach@zachlipton.com, r=timeless, a=justdave.
* Start of the 2.23 development cycle; update the version number.mkanat%kerio.com2006-02-211-1/+1
|
* Update Version Numbers for 2.22rc1 Release.mkanat%kerio.com2006-02-211-1/+1
|
* Bug 106386 Correct misspellings in source codetimeless%mozdev.org2005-11-261-2/+2
| | | | patch by unknown@simplemachines.org r=timeless rs=brendan
* Bug 46296: Make editparams.cgi be multi-panel by category - Patch by ↵lpsolit%gmail.com2005-10-121-85/+20
| | | | Frédéric Buclin <LpSolit@gmail.com> r=joel a=justdave
* Add a + to the version number to indicate it came from CVS.mkanat%kerio.com2005-10-021-1/+1
|
* Bump version numbers for 2.21.1mkanat%kerio.com2005-10-011-1/+1
|
* Bug 282686: Multiple projects sharing the same Bugzilla codebase (different ↵lpsolit%gmail.com2005-09-161-5/+17
| | | | datastores) - Patch by guillomovitch@zarb.org r=wurblzap a=justdave
* Bug 299848: enter_bug's automatic OS/Platform code does not work with the ↵mkanat%kerio.com2005-08-181-1/+1
| | | | | | new default OS list Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=wurblzap, a=justdave
* Update version numbers post-release.mkanat%kerio.com2005-07-081-1/+1
|
* Update version numbers for 2.20rc1 release.mkanat%kerio.com2005-07-081-1/+1
|