aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla
Commit message (Collapse)AuthorAgeFilesLines
* Bug 574376: Make checksetup.pl recommend JSON::XS to speed up the JSON-RPCMax Kanat-Alexander2010-06-241-0/+7
| | | | | WebService r=mkanat, a=mkanat (module owner)
* Bug 572602: Change the way that Bugzilla::Object determines what fieldsMax Kanat-Alexander2010-06-2318-89/+87
| | | | | | | | | are required for create(). It now assumes that any column that is NOT NULL and has not DEFAULT in the database is required. We also shift the burden of throwing errors about empty values to the validators. This fixes the bug that Bugzilla::Bug->create() wasn't populating default values for fields if they weren't specified in the create() parameters. r=timello, a=mkanat
* Bug 509303: Update the CGI.pm requirement to 3.49 to make redirectionMax Kanat-Alexander2010-06-231-6/+3
| | | | | work properly when Bugzilla is behind a proxy. r=LpSolit, a=LpSolit
* Bug 573172: Prepare set_all for being used in a context other thanMax Kanat-Alexander2010-06-231-9/+16
| | | | | process_bug.cgi r=dkl, a=mkanat
* Bug 573170: Make set_all set keywords consistently with how other multi-valuedMax Kanat-Alexander2010-06-231-10/+19
| | | | | fields are set r=dkl, a=mkanat
* The DB::Schema alter_column default fix also needed to be separatelyMax Kanat-Alexander2010-06-211-2/+5
| | | | | | applied to DB::Schema::Oracle, since it has a full override of get_alter_column_ddl. https://bugzilla.mozilla.org/show_bug.cgi?id=573441
* When doing bz_alter_column, if Max Kanat-Alexander2010-06-211-2/+5
| | | https://bugzilla.mozilla.org/show_bug.cgi?id=573441
* Bug 573454: Make the products.description field be NOT NULL in theMax Kanat-Alexander2010-06-212-1/+5
| | | | | database r=timello, a=mkanat
* Bug 573450: Make the keyworddefs.description column be NOT NULL in theMax Kanat-Alexander2010-06-212-1/+3
| | | | | database r=timello, a=mkanat
* Bug 573441: Add a DEFAULT and NOTNULL to the attachments.ispatch columnMax Kanat-Alexander2010-06-212-1/+5
| | | | r=timello, a=mkanat
* Bug 567281: Make Bugzilla::Field use VALIDATOR_DEPENDENCIES instead ofMax Kanat-Alexander2010-06-211-65/+47
| | | | | UPDATE_VALIDATORS r=timello, a=mkanat
* Bug 398473: User preference for the position of the comment boxMatt McHenry2010-06-211-0/+3
| | | | r=mkanat, a=mkanat
* Bug 252005: Allow changing the captialization of a group nameSteve P2010-06-211-1/+1
| | | | r=mkanat, a=mkanat
* Bug 22353: Automatic duplicate bug detection on enter_bug.cgiMax Kanat-Alexander2010-06-217-29/+161
| | | | r=glob, a=mkanat
* Bug 548198: Add a method of limiting the User.get results by group name or idMax Kanat-Alexander2010-06-181-7/+53
| | | | r=dkl, a=mkanat
* Bug 556422: Move the existing bug-moving functionality into an extensionMax Kanat-Alexander2010-06-187-123/+4
| | | | | called OldBugMove. r=dkl, a=mkanat
* Bug 572949: Update YUI to 2.8.1Max Kanat-Alexander2010-06-181-1/+0
| | | | r=glob, a=mkanat
* Bug 413215: Move the sending of email notifications from process_bug.cgiMax Kanat-Alexander2010-06-171-0/+86
| | | | | to Bugzilla::Bug r=dkl, a=mkanat
* A few tinderbox bustage fixes from the checkin of bug 24896.Max Kanat-Alexander2010-06-152-2/+2
|
* Bug 24896: Make the First/Last/Prev/Next navigation on bugs work withMax Kanat-Alexander2010-06-157-10/+346
| | | | | multiple buglists at once r=glob, a=mkanat
* Bug 476722: Refactor Search.pm's funcdefs into a series of constantsMax Kanat-Alexander2010-06-111-327/+424
| | | | | and functions for interpreting search charts. r=jjclark, a=mkanat
* Bug 450301: What Simplify searching UI, initial improvements to the advanced ↵Guy Pyrzak2010-06-062-2/+2
| | | | | | search ui. r=mkanat, a=mkanat
* Bug 567846: Modify set_status, set_resolution, and set_dup_id to useMax Kanat-Alexander2010-06-032-26/+41
| | | | VALIDATOR_DEPENDENCIES, so that they don't need custom code in set_all.
* Bug 567296: Make Bugzilla::Bug use VALIDATOR_DEPENDENCIES instead ofMax Kanat-Alexander2010-06-031-52/+73
| | | | | UPDATE_VALIDATORS r=dkl, a=mkanat
* Bug 569312: Speed up the adding of many FKs to the same table for MySQLMax Kanat-Alexander2010-06-013-47/+89
| | | | | and PostgreSQL, by adding them all in one ALTER statement r=mkanat, a=mkanat (module owner)
* Bug 569302: Make sure that Install::DB functions always print out a messageMax Kanat-Alexander2010-05-311-9/+20
| | | | | if they are conditionally doing something to the database. r=mkanat, a=mkanat (module owner)
* Bug 561379: Upgrading from 3.4.4 to 3.6 would fails with ORA-01400,Max Kanat-Alexander2010-05-311-0/+7
| | | | | | because checksetup.pl was trying to run code that should never run on Oracle. r=mkanat, a=mkanat (module owner)
* Bug 568500 - teach Bugzilla about correct Content Type for JSON ctype. r=mkanat.2010-05-281-0/+1
|
* There is no released stable version of List::MoreUtils higher than 0.22.Max Kanat-Alexander2010-05-261-2/+1
| | | https://bugzilla.mozilla.org/show_bug.cgi?id=567303
* Bug 271913: Don't force the user to comment when adding Hours WorkedKent Rogers2010-05-251-6/+2
| | | | r=mkanat, a=mkanat
* Bug 567780: When closing a bug as a duplicate, the error "There is no field ↵David Lawrence2010-05-251-1/+2
| | | | | | 'dup_id'" is displayed r=timello,a=LpSolit
* "part" can return "undef" for a list, so sometimes $has_deps or $no_depsMax Kanat-Alexander2010-05-241-2/+2
| | | | | in Bugzilla::Object::_sort_by_deps were undef. https://bugzilla.mozilla.org/show_bug.cgi?id=567303
* Bug 567303: Implement a working algorithm for sorting fields based onMax Kanat-Alexander2010-05-242-20/+55
| | | | | | VALIDATOR_DEPENDENCIES in Bugzilla::Object. (The previous code did not actually sort fields correctly.) r=timello, a=mkanat
* Bug 556901: Move the code for setting status, resolution, and dup_idMax Kanat-Alexander2010-05-241-0/+29
| | | | from process_bug.cgi into Bugzilla::Bug::set_all
* Bug 556407: Move the code for setting product and checking strict_isolationMax Kanat-Alexander2010-05-241-7/+26
| | | | from process_bug.cgi into Bugzilla::Bug::set_all
* Bug 556403: Move adding/removing of CCs from process_bug.cgi intoMax Kanat-Alexander2010-05-221-12/+17
| | | | Bugzilla::Bug::set_all
* Bug 556397: Move the setting of single-bug fields from process_bug.cgiMax Kanat-Alexander2010-05-221-1/+9
| | | | | into Bugzilla::Bug::set_all r=dkl, a=mkanat
* Bug 560733: Move the base .htaccess file into bzr instead of having itMax Kanat-Alexander2010-05-221-40/+2
| | | | | generated by checksetup.pl r=LpSolit, a=mkanat
* Bug 566560: Make checksetup.pl explicitly check that List::MoreUtilsJonathan Martens2010-05-191-0/+5
| | | | | is installed r=mkanat, a=mkanat
* Bug 565899: Make the html_linebreak filter safe by having it first call theMax Kanat-Alexander2010-05-191-0/+1
| | | | | "html" filter r=LpSolit, a=LpSolit
* Bug 563641: Make bugzilla-queue init script support SuSEKent Rogers2010-05-191-2/+7
| | | | r=mkanat, a=mkanat
* Bug 494395: Implement the ability to mark custom fields as mandatory whenTiago Mello2010-05-195-2/+92
| | | | | creating/changing bugs r=mkanat, a=mkanat
* Bug 566499 - "#c0 links have the wrong href"Reed Loden2010-05-181-1/+1
| | | | [r=LpSolit a=LpSolit]
* Bug 556373: Move the adding/removing of groups from process_bug.cgi toMax Kanat-Alexander2010-05-171-1/+11
| | | | | Bugzilla::Bug::set_all r=dkl, a=mkanat
* Bug 556167: Move the setting of dependson/blocked from process_bug.cgiMax Kanat-Alexander2010-05-161-0/+30
| | | | | into Bugzilla::Bug::set_all r=dkl, a=mkanat
* Bug 428452: Move code to set/modify keywords from process_bug.cgi into Max Kanat-Alexander2010-05-161-1/+5
| | | | | Bugzilla::Bug::set_all r=dkl, a=mkanat
* Bug 556154: process_bug.cgi: move the stuff in the loop after $b->set_allMax Kanat-Alexander2010-05-161-0/+20
| | | | | into Bugzilla::Bug::set_all r=dkl, a=mkanat
* Bug 561296: A fix allowing updating a field value's name when it isMax Kanat-Alexander2010-05-142-1/+28
| | | | | the default value r=LpSolit, a=LpSolit
* Bug 556731 - Make Bugzilla::Milestone, Bugzilla::Version, andMax Kanat-Alexander2010-05-145-43/+36
| | | | | Bugzilla::Component use VALIDATOR_DEPENDENCIES instead of UPDATE_VALIDATORS r=LpSolit, a=LpSolit
* Bug 372537: Improve CodeErrors: show the traceback (without functionMax Kanat-Alexander2010-05-141-0/+8
| | | | | arguments) r=LpSolit, a=LpSolit