aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Component.pm
Commit message (Collapse)AuthorAgeFilesLines
* Bug 895813: Mandatory custom fields whose visibility depends on a component ↵Frédéric Buclin2014-01-021-4/+4
| | | | | | are not required on bug creation r=pketolai r=dkl a=sgreen
* Bug 937991 - Fix typo in Bugzilla::Component documentationSimon Green2013-11-131-3/+1
| | | r=glob, a=sgreen
* Bug 815532: Add caching for Bugzilla::User objectsByron Jones2012-12-191-12/+5
| | | | r=dkl,a=LpSolit
* 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/+18
| | | | r/a=LpSolit
* Fix typoSimon Green2012-11-261-10/+10
| | | | | r/a=LpSolit https://bugzilla.mozilla.org/show_bug.cgi?id=814654
* Bug 445861: $component->default_qa_contact should not return the default ↵Koosha Khajeh Moogahi2012-09-191-1/+4
| | | | | | user object when no default QA contact is defined r/a=LpSolit
* Bug 787529: Use |use 5.10.1| everywhereFrédéric Buclin2012-09-011-0/+3
| | | | r=wicked a=LpSolit
* Bug 765315: Mention the data type of 'product' param in POD of ↵Koosha Khajeh Moogahi2012-06-171-4/+6
| | | | | | Bugzilla::Component->new to avoid misunderstanding r/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-17/+5
| | | | | | add it to files which miss one r=kiko r=mkanat r=mrbball a=LpSolit
* Bug 661476: sanitycheck.pl should check if all products have components defined.Frédéric Buclin2011-08-171-0/+5
| | | | | Also, creating a new product from the web UI asks you to create a component too. r=glob a=LpSolit
* Bug 675366: Use Bugzilla::Object::remove_from_db() when deleting a componentEdmund Yan2011-08-161-8/+1
| | | | r/a=LpSolit
* Bug 553266: config.cgi?ctype=rdf spends most of its time loading flagtypes ↵Frédéric Buclin2010-10-201-7/+5
| | | | | | from the database a=LpSolit (module owner)
* Bug 77193 - Add the ability to retire (disable) old versions, components and ↵Dave Lawrence2010-08-311-1/+5
| | | | | | milestones r/a=mkanat
* Bug 572602: Change the way that Bugzilla::Object determines what fieldsMax Kanat-Alexander2010-06-231-7/+6
| | | | | | | | | 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 556731 - Make Bugzilla::Milestone, Bugzilla::Version, andMax Kanat-Alexander2010-05-141-15/+10
| | | | | Bugzilla::Component use VALIDATOR_DEPENDENCIES instead of UPDATE_VALIDATORS r=LpSolit, a=LpSolit
* Bug 487508: Allow restricting the visibility of custom fields and values by ↵Max Kanat-Alexander2010-02-011-7/+23
| | | | | | component r=dkl, a=mkanat
* Bug 487769: checksetup.pl can no longer create versions in TestProduct due ↵lpsolit%gmail.com2009-04-111-2/+4
| | | | to insufficient privileges (checksetup.pl fails) - Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r/a=LpSolit
* Bug 313123: Implement $component->create and $component->update based on ↵lpsolit%gmail.com2007-10-121-55/+373
| | | | Object.pm - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
* Bug 364743: Crash when renaming components (regression) - Patch by ↵lpsolit%gmail.com2006-12-231-1/+2
| | | | Frédéric Buclin <LpSolit@gmail.com> r/a=justdave
* Bug 339380: Make Bugzilla::Component use Bugzilla::Objectmkanat%bugzilla.org2006-12-191-54/+38
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
* Bug 189627: Implement per-product privileges - Patch by Frédéric ↵lpsolit%gmail.com2006-11-111-1/+19
| | | | Buclin <LpSolit@gmail.com> r=mkanat a=myk
* Bug 38922: Default (Initial) CC list for each componentmkanat%bugzilla.org2006-09-211-0/+23
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
* Bug 174039: Set flags on bug entry - Patch by Frédéric Buclin ↵lpsolit%gmail.com2006-07-251-1/+31
| | | | <LpSolit@gmail.com> r=wurblzap r=myk a=myk
* Fix invalid POD formatting (patch for fixing broken tree - runtests.pl, test ↵jocuri%softhome.net2006-02-281-2/+2
| | | | 11).
* Bug 314088: Several Bugzilla::Foo->new crash when passing a string instead ↵lpsolit%gmail.com2005-10-281-1/+4
| | | | of a valid ID as a param - Patch by Frédéric Buclin <LpSolit@gmail.com> r=kiko a=justdave
* Bug 309749: Remove get_x_by_y functions from the new .pm files, in favor of ↵mkanat%kerio.com2005-10-071-36/+0
| | | | | | object methods Patch By André Batosti <batosti@async.com.br> r=LpSolit, a=justdave
* Bug 301743: Replace old code from editcomponents.cgi by methods and routines ↵lpsolit%gmail.com2005-09-071-6/+118
| | | | from Component.pm and Product.pm - Patch by Tiago R. Mello <timello@gmail.com> r=LpSolit a=justdave
* Bug 286158: Remove GetSelectableProducts() from globals.pl and use ↵lpsolit%gmail.com2005-09-031-9/+6
| | | | Bugzilla::User::get_selectable_products() instead - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel,kiko a=justdave
* Bug 303413: Remove "use Bugzilla" from all of the pm files. All of the cgi ↵justdave%bugzilla.org2005-08-151-1/+0
| | | | | | | files already have it loaded, and it causes circular dependencies. Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave a=justdave
* Bug 303669: Bugzilla mis-uses perl subroutine prototypesmkanat%kerio.com2005-08-131-1/+1
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Backout of bug 303669 which broke AppendComment and possibly a numberbugreport%peshkin.net2005-08-091-1/+1
| | | | of other items.
* Bug 303669: Bugzilla mis-uses perl subroutine prototypesmkanat%kerio.com2005-08-091-1/+1
| | | | Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
* Bug 294160: Step 1 (RO): Create libraries for Products, Components, ↵lpsolit%gmail.com2005-07-131-0/+198
Classifications, Milestones, and Versions - Patch by Tiago R. Mello <timello@async.com.br> r=mkanat a=myk