From 2667d3631cc09c4d5d3593312bfeb86b38a4c65a Mon Sep 17 00:00:00 2001 From: Marc Schumann Date: Fri, 30 Nov 2012 15:30:44 +0100 Subject: Bug 816747 - Add dummy POD for unPODded methods. r/a=LpSolit --- Bugzilla.pm | 22 +++ Bugzilla/Attachment.pm | 26 ++++ Bugzilla/Attachment/PatchReader.pm | 18 +++ Bugzilla/Auth/Verify.pm | 8 + Bugzilla/Bug.pm | 266 ++++++++++++++++++++++++++++++++++ Bugzilla/BugMail.pm | 12 ++ Bugzilla/BugUrl.pm | 14 ++ Bugzilla/CGI.pm | 22 +++ Bugzilla/Chart.pm | 26 ++++ Bugzilla/Classification.pm | 18 +++ Bugzilla/Comment.pm | 26 ++++ Bugzilla/Component.pm | 18 +++ Bugzilla/Config.pm | 2 + Bugzilla/Config/Common.pm | 50 +++++++ Bugzilla/Constants.pm | 10 ++ Bugzilla/DB.pm | 60 ++++++++ Bugzilla/DB/Mysql.pm | 46 ++++++ Bugzilla/DB/Pg.pm | 40 +++++ Bugzilla/DB/Schema.pm | 16 ++ Bugzilla/DB/Schema/Mysql.pm | 24 +++ Bugzilla/DB/Schema/Oracle.pm | 30 ++++ Bugzilla/DB/Schema/Pg.pm | 14 ++ Bugzilla/DB/Schema/Sqlite.pm | 22 +++ Bugzilla/DB/Sqlite.pm | 36 +++++ Bugzilla/Extension.pm | 10 ++ Bugzilla/Field.pm | 12 ++ Bugzilla/Field/Choice.pm | 20 +++ Bugzilla/Field/ChoiceInterface.pm | 10 ++ Bugzilla/Flag.pm | 26 ++++ Bugzilla/FlagType.pm | 40 +++++ Bugzilla/Group.pm | 44 ++++++ Bugzilla/Install.pm | 16 ++ Bugzilla/Install/CPAN.pm | 8 + Bugzilla/Install/Filesystem.pm | 26 ++++ Bugzilla/Install/Requirements.pm | 8 + Bugzilla/Install/Util.pm | 32 ++++ Bugzilla/Job/Mailer.pm | 10 ++ Bugzilla/JobQueue.pm | 12 ++ Bugzilla/JobQueue/Runner.pm | 28 ++++ Bugzilla/Keyword.pm | 14 ++ Bugzilla/Mailer.pm | 10 ++ Bugzilla/Migrate.pm | 46 ++++++ Bugzilla/Migrate/Gnats.pm | 20 +++ Bugzilla/Milestone.pm | 10 ++ Bugzilla/Object.pm | 16 ++ Bugzilla/Product.pm | 34 +++++ Bugzilla/RNG.pm | 12 ++ Bugzilla/Report.pm | 14 ++ Bugzilla/Search.pm | 34 +++++ Bugzilla/Search/Clause.pm | 24 +++ Bugzilla/Search/ClauseGroup.pm | 10 ++ Bugzilla/Search/Condition.pm | 24 +++ Bugzilla/Search/Quicksearch.pm | 18 +++ Bugzilla/Search/Recent.pm | 24 +++ Bugzilla/Search/Saved.pm | 18 +++ Bugzilla/Send/Sendmail.pm | 7 + Bugzilla/Series.pm | 26 ++++ Bugzilla/Status.pm | 24 +++ Bugzilla/Template.pm | 26 ++++ Bugzilla/Template/Context.pm | 12 ++ Bugzilla/Token.pm | 10 ++ Bugzilla/User.pm | 54 +++++++ Bugzilla/Util.pm | 16 ++ Bugzilla/Version.pm | 22 +++ Bugzilla/WebService.pm | 8 + Bugzilla/WebService/Bug.pm | 12 ++ Bugzilla/WebService/Constants.pm | 8 + Bugzilla/WebService/Product.pm | 8 + Bugzilla/WebService/Server.pm | 12 ++ Bugzilla/WebService/Server/JSONRPC.pm | 22 +++ Bugzilla/WebService/Server/XMLRPC.pm | 12 ++ Bugzilla/WebService/Util.pm | 8 + Bugzilla/Whine/Query.pm | 8 + Bugzilla/Whine/Schedule.pm | 8 + 74 files changed, 1759 insertions(+) diff --git a/Bugzilla.pm b/Bugzilla.pm index a7ece92d3..111d567e6 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -932,3 +932,25 @@ Tells you whether or not a specific feature is enabled. For names of features, see C in C. =back + +=head1 B + +=over + +=item process_cache + +=item init_page + +=item extensions + +=item logout_user_by_id + +=item localconfig + +=item active_custom_fields + +=item request_cache + +=item has_flags + +=back diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index c00b931fb..0cec21708 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -989,3 +989,29 @@ sub get_content_type { 1; + +=head1 B + +=over + +=item set_filename + +=item set_is_obsolete + +=item DB_COLUMNS + +=item set_is_private + +=item set_content_type + +=item set_description + +=item get_content_type + +=item set_flags + +=item set_is_patch + +=item update + +=back diff --git a/Bugzilla/Attachment/PatchReader.pm b/Bugzilla/Attachment/PatchReader.pm index 4583dbd51..cf1648579 100644 --- a/Bugzilla/Attachment/PatchReader.pm +++ b/Bugzilla/Attachment/PatchReader.pm @@ -286,3 +286,21 @@ sub setup_template_patch_reader { 1; __END__ + +=head1 B + +=over + +=item get_unified_diff + +=item process_diff + +=item warn_if_interdiff_might_fail + +=item setup_template_patch_reader + +=item process_interdiff + +=item setup_patch_readers + +=back diff --git a/Bugzilla/Auth/Verify.pm b/Bugzilla/Auth/Verify.pm index de8b4030d..0c552f40b 100644 --- a/Bugzilla/Auth/Verify.pm +++ b/Bugzilla/Auth/Verify.pm @@ -234,3 +234,11 @@ edit the extern_id for all users. The default value is C. =back + +=head1 B + +=over + +=item can_change_password + +=back diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 7a3ec4c8a..e06213b7d 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -4283,3 +4283,269 @@ sub _multi_select_accessor { } 1; + +=head1 B + +=over + +=item remove_cc + +=item add_see_also + +=item choices + +=item keywords + +=item blocked + +=item qa_contact + +=item add_comment + +=item bug_severity + +=item dup_id + +=item set_priority + +=item any_flags_requesteeble + +=item set_bug_status + +=item estimated_time + +=item set_platform + +=item statuses_available + +=item set_custom_field + +=item remove_see_also + +=item remove_from_db + +=item product_obj + +=item reporter_accessible + +=item set_summary + +=item LogActivityEntry + +=item set_assigned_to + +=item add_group + +=item bug_file_loc + +=item DATE_COLUMNS + +=item set_component + +=item delta_ts + +=item set_resolution + +=item version + +=item deadline + +=item fields + +=item dependson + +=item check_can_change_field + +=item update + +=item set_op_sys + +=item cache_key + +=item bug_group + +=item comments + +=item map_fields + +=item assigned_to + +=item user + +=item ValidateDependencies + +=item short_desc + +=item duplicate_ids + +=item isopened + +=item remaining_time + +=item set_deadline + +=item preload + +=item groups_in + +=item clear_resolution + +=item set_estimated_time + +=item in_group + +=item status + +=item get_activity + +=item reporter + +=item rep_platform + +=item DB_COLUMNS + +=item flag_types + +=item bug_status + +=item attachments + +=item flags + +=item set_flags + +=item actual_time + +=item component + +=item UPDATE_COLUMNS + +=item set_cclist_accessible + +=item product + +=item VALIDATORS + +=item show_attachment_flags + +=item set_comment_is_private + +=item set_severity + +=item send_changes + +=item add_tag + +=item bug_id + +=item reset_qa_contact + +=item remove_group + +=item set_alias + +=item set_dup_id + +=item set_target_milestone + +=item cc_users + +=item everconfirmed + +=item check_is_visible + +=item check_for_edit + +=item match + +=item VALIDATOR_DEPENDENCIES + +=item possible_duplicates + +=item set_url + +=item add_cc + +=item blocks_obj + +=item set_status_whiteboard + +=item product_id + +=item error + +=item reset_assigned_to + +=item status_whiteboard + +=item create + +=item set_all + +=item set_reporter_accessible + +=item classification_id + +=item tags + +=item modify_keywords + +=item priority + +=item keyword_objects + +=item set_dependencies + +=item depends_on_obj + +=item cclist_accessible + +=item cc + +=item duplicates + +=item component_obj + +=item see_also + +=item groups + +=item default_bug_status + +=item related_bugs + +=item editable_bug_fields + +=item resolution + +=item lastdiffed + +=item classification + +=item alias + +=item op_sys + +=item remove_tag + +=item percentage_complete + +=item EmitDependList + +=item bug_alias_to_id + +=item set_qa_contact + +=item creation_ts + +=item set_version + +=item component_id + +=item new_bug_statuses + +=item set_remaining_time + +=item target_milestone + +=back diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index df8e0df78..1fb5ea977 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -476,3 +476,15 @@ sub _get_new_bugmail_fields { } 1; + +=head1 B + +=over + +=item relationships + +=item sendMail + +=item Send + +=back diff --git a/Bugzilla/BugUrl.pm b/Bugzilla/BugUrl.pm index ec6675e90..2074a3667 100644 --- a/Bugzilla/BugUrl.pm +++ b/Bugzilla/BugUrl.pm @@ -201,3 +201,17 @@ sub _check_value { } 1; + +=head1 B + +=over + +=item should_handle + +=item class_for + +=item class + +=item bug_id + +=back diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 99851c21d..e0953d4f6 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -640,3 +640,25 @@ Redirects from the current URL to one prefixed by the urlbase parameter. =head1 SEE ALSO L, L + +=head1 B + +=over + +=item check_etag + +=item clean_search_url + +=item url_is_attachment_base + +=item should_set + +=item multipart_start + +=item redirect_search_url + +=item param + +=item header + +=back diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index d157457c2..0329b9a0c 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -428,3 +428,29 @@ sub dump { } 1; + +=head1 B + +=over + +=item remove + +=item add + +=item dump + +=item readData + +=item getSeriesIDs + +=item data + +=item init + +=item getVisibleSeries + +=item generateDateProgression + +=item sum + +=back diff --git a/Bugzilla/Classification.pm b/Bugzilla/Classification.pm index 67ba8b46f..27a59fa97 100644 --- a/Bugzilla/Classification.pm +++ b/Bugzilla/Classification.pm @@ -260,3 +260,21 @@ A Classification is a higher-level grouping of Products. =back =cut + +=head1 B + +=over + +=item set_description + +=item sortkey + +=item set_name + +=item description + +=item remove_from_db + +=item set_sortkey + +=back diff --git a/Bugzilla/Comment.pm b/Bugzilla/Comment.pm index 2a7633bc2..0851d7643 100644 --- a/Bugzilla/Comment.pm +++ b/Bugzilla/Comment.pm @@ -419,3 +419,29 @@ A string, the full text of the comment as it would be displayed to an end-user. =back =cut + +=head1 B + +=over + +=item set_type + +=item bug + +=item set_extra_data + +=item set_is_private + +=item attachment + +=item is_about_attachment + +=item extra_data + +=item preload + +=item type + +=item update + +=back diff --git a/Bugzilla/Component.pm b/Bugzilla/Component.pm index 87cec42b4..e559ba1a2 100644 --- a/Bugzilla/Component.pm +++ b/Bugzilla/Component.pm @@ -653,3 +653,21 @@ Component.pm represents a Product Component object. =back =cut + +=head1 B + +=over + +=item is_set_on_bug + +=item product_id + +=item bug_ids + +=item set_is_active + +=item description + +=item is_active + +=back diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 219bd6e31..227d07c01 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -385,4 +385,6 @@ Params: none Returns: A hashref containing the current params in C<$datadir/params>. +=item C + =back diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm index 32e8ba569..75f6e0ea2 100644 --- a/Bugzilla/Config/Common.pm +++ b/Bugzilla/Config/Common.pm @@ -452,3 +452,53 @@ Checks that the value is a valid number Checks that the value is a valid regexp =back + +=head1 B + +=over + +=item check_notification + +=item check_priority + +=item check_ip + +=item check_user_verify_class + +=item check_bug_status + +=item check_shadowdb + +=item check_smtp_auth + +=item check_url + +=item check_urlbase + +=item check_email + +=item check_webdotbase + +=item get_param_list + +=item check_maxattachmentsize + +=item check_utf8 + +=item check_group + +=item check_opsys + +=item check_platform + +=item check_severity + +=item check_sslbase + +=item check_mail_delivery_method + +=item check_theschwartz_available + +=item check_smtp_ssl + +=back diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index dbb1edf74..3a95e30f3 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -653,3 +653,13 @@ sub bz_locations { BEGIN { memoize('bz_locations') }; 1; + +=head1 B + +=over + +=item DB_MODULE + +=item contenttypes + +=back diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 877e6cb15..bdda889b3 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -2681,3 +2681,63 @@ our check for implementation of C by derived class useless. L L + +=head1 B + +=over + +=item bz_add_fks + +=item bz_add_fk + +=item bz_drop_index_raw + +=item bz_table_info + +=item bz_add_index_raw + +=item bz_get_related_fks + +=item quote + +=item bz_drop_fk + +=item bz_drop_field_tables + +=item bz_drop_related_fks + +=item bz_table_columns + +=item bz_drop_foreign_keys + +=item bz_alter_column_raw + +=item bz_table_list_real + +=item bz_fk_info + +=item bz_setup_database + +=item bz_setup_foreign_keys + +=item bz_table_indexes + +=item bz_check_regexp + +=item bz_enum_initial_values + +=item bz_alter_fk + +=item bz_set_next_serial_value + +=item bz_table_list + +=item bz_table_columns_real + +=item bz_check_server_version + +=item bz_server_version + +=item bz_add_field_tables + +=back diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 81b5726bd..3be58767b 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -1034,3 +1034,49 @@ sub _bz_build_schema_from_disk { } 1; + +=head1 B + +=over + +=item sql_date_format + +=item bz_explain + +=item bz_last_key + +=item sql_position + +=item sql_fulltext_search + +=item sql_iposition + +=item bz_enum_initial_values + +=item sql_group_by + +=item sql_limit + +=item sql_not_regexp + +=item sql_string_concat + +=item sql_date_math + +=item sql_to_days + +=item bz_check_server_version + +=item sql_from_days + +=item sql_regexp + +=item sql_istring + +=item sql_group_concat + +=item bz_setup_database + +=item bz_db_is_utf8 + +=back diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm index df775fe16..bd3593cc5 100644 --- a/Bugzilla/DB/Pg.pm +++ b/Bugzilla/DB/Pg.pm @@ -367,3 +367,43 @@ sub bz_table_list_real { } 1; + +=head1 B + +=over + +=item sql_date_format + +=item bz_explain + +=item bz_sequence_exists + +=item bz_last_key + +=item sql_position + +=item sql_limit + +=item sql_not_regexp + +=item sql_string_concat + +=item sql_date_math + +=item sql_to_days + +=item bz_check_server_version + +=item sql_from_days + +=item bz_table_list_real + +=item sql_regexp + +=item sql_istring + +=item sql_group_concat + +=item bz_setup_database + +=back diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index e153b3926..7c3f9fa6c 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -3013,3 +3013,19 @@ L L =cut + +=head1 B + +=over + +=item get_table_indexes_abstract + +=item get_create_database_sql + +=item get_add_fks_sql + +=item get_fk_ddl + +=item get_drop_fk_sql + +=back diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm index 8b06dc42b..1275b2a81 100644 --- a/Bugzilla/DB/Schema/Mysql.pm +++ b/Bugzilla/DB/Schema/Mysql.pm @@ -383,3 +383,27 @@ sub get_rename_column_ddl { } 1; + +=head1 B + +=over + +=item get_rename_column_ddl + +=item get_create_database_sql + +=item get_drop_index_ddl + +=item get_set_serial_sql + +=item get_rename_indexes_ddl + +=item get_drop_fk_sql + +=item MYISAM_TABLES + +=item column_info_to_column + +=item get_alter_column_ddl + +=back diff --git a/Bugzilla/DB/Schema/Oracle.pm b/Bugzilla/DB/Schema/Oracle.pm index 26141c5f4..2edc6e3a6 100644 --- a/Bugzilla/DB/Schema/Oracle.pm +++ b/Bugzilla/DB/Schema/Oracle.pm @@ -500,3 +500,33 @@ sub get_set_serial_sql { } 1; + +=head1 B + +=over + +=item get_rename_column_ddl + +=item get_add_fks_sql + +=item get_drop_index_ddl + +=item get_rename_table_sql + +=item get_add_column_ddl + +=item get_set_serial_sql + +=item get_drop_column_ddl + +=item get_drop_table_ddl + +=item get_drop_fk_sql + +=item get_table_ddl + +=item get_alter_column_ddl + +=item get_fk_ddl + +=back diff --git a/Bugzilla/DB/Schema/Pg.pm b/Bugzilla/DB/Schema/Pg.pm index 8dcd09b89..8e90f73f9 100644 --- a/Bugzilla/DB/Schema/Pg.pm +++ b/Bugzilla/DB/Schema/Pg.pm @@ -188,3 +188,17 @@ sub _get_alter_type_sql { } 1; + +=head1 B + +=over + +=item get_rename_column_ddl + +=item get_rename_table_sql + +=item get_create_database_sql + +=item get_set_serial_sql + +=back diff --git a/Bugzilla/DB/Schema/Sqlite.pm b/Bugzilla/DB/Schema/Sqlite.pm index 780764a69..4423fae19 100644 --- a/Bugzilla/DB/Schema/Sqlite.pm +++ b/Bugzilla/DB/Schema/Sqlite.pm @@ -299,3 +299,25 @@ sub get_drop_fk_sql { 1; + +=head1 B + +=over + +=item get_rename_column_ddl + +=item get_add_fks_sql + +=item get_drop_fk_sql + +=item get_create_database_sql + +=item get_alter_column_ddl + +=item get_add_column_ddl + +=item get_type_ddl + +=item get_drop_column_ddl + +=back diff --git a/Bugzilla/DB/Sqlite.pm b/Bugzilla/DB/Sqlite.pm index 5810ab4d7..0055f3884 100644 --- a/Bugzilla/DB/Sqlite.pm +++ b/Bugzilla/DB/Sqlite.pm @@ -299,3 +299,39 @@ SQLite-specific implementation. It is instantiated by the Bugzilla::DB module and should never be used directly. For interface details see L and L. + +=head1 B + +=over + +=item sql_date_format + +=item bz_explain + +=item sql_position + +=item sql_iposition + +=item sql_group_by + +=item sql_not_regexp + +=item sql_limit + +=item sql_date_math + +=item sql_to_days + +=item sql_from_days + +=item bz_table_list_real + +=item sql_regexp + +=item sql_group_concat + +=item sql_istring + +=item bz_setup_database + +=back diff --git a/Bugzilla/Extension.pm b/Bugzilla/Extension.pm index a02a2783a..aaffe6e2a 100644 --- a/Bugzilla/Extension.pm +++ b/Bugzilla/Extension.pm @@ -809,3 +809,13 @@ package name of the loaded extension. Calls L for every enabled extension installed into Bugzilla, and returns an arrayref of all the package names that were loaded. + +=head1 B + +=over + +=item modify_inc + +=item my_inc + +=back diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm index 87b307cb7..36abc2a99 100644 --- a/Bugzilla/Field.pm +++ b/Bugzilla/Field.pm @@ -1346,3 +1346,15 @@ sub get_field_id { 1; __END__ + +=head1 B + +=over + +=item match + +=item set_is_numeric + +=item update + +=back diff --git a/Bugzilla/Field/Choice.pm b/Bugzilla/Field/Choice.pm index 52fb7b409..bbf96beb9 100644 --- a/Bugzilla/Field/Choice.pm +++ b/Bugzilla/Field/Choice.pm @@ -334,3 +334,23 @@ must call C to get a class you can call methods on. This class implements mutators for all of the settable accessors in L. + +=head1 B + +=over + +=item create + +=item remove_from_db + +=item set_is_active + +=item set_sortkey + +=item set_name + +=item update + +=item set_visibility_value + +=back diff --git a/Bugzilla/Field/ChoiceInterface.pm b/Bugzilla/Field/ChoiceInterface.pm index c6ca2bc2d..24bd57dc9 100644 --- a/Bugzilla/Field/ChoiceInterface.pm +++ b/Bugzilla/Field/ChoiceInterface.pm @@ -270,3 +270,13 @@ I of the currently selected values are this value. Returns C<0> otherwise. =back + +=head1 B + +=over + +=item FIELD_NAME + +=item controlled_values_array + +=back diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 867e08a02..8ad48cce6 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -1059,3 +1059,29 @@ sub _flag_types { } 1; + +=head1 B + +=over + +=item update_activity + +=item setter_id + +=item bug + +=item requestee_id + +=item DB_COLUMNS + +=item set_flag + +=item type_id + +=item snapshot + +=item update_flags + +=item update + +=back diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index a4fb69269..9e6dfe1e1 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -702,3 +702,43 @@ sub sqlify_criteria { } 1; + +=head1 B + +=over + +=item exclusions_as_hash + +=item request_group_id + +=item set_is_active + +=item set_is_multiplicable + +=item inclusions_as_hash + +=item set_sortkey + +=item grant_group_id + +=item set_cc_list + +=item set_request_group + +=item set_name + +=item set_is_specifically_requestable + +=item set_grant_group + +=item create + +=item set_clusions + +=item set_description + +=item set_is_requestable + +=item update + +=back diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index 5908c86fc..70df15c80 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -648,3 +648,47 @@ user_group_map for any user with DIRECT or REGEXP membership IN() the list of groups returned. =back + +=head1 B + +=over + +=item icon_url + +=item set_name + +=item bugs + +=item granted_by_direct + +=item set_user_regexp + +=item flag_types + +=item products + +=item set_icon_url + +=item set_description + +=item set_is_active + +=item user_regexp + +=item members_direct + +=item is_bug_group + +=item grant_direct + +=item description + +=item is_active + +=item remove_from_db + +=item is_active_bug_group + +=item update + +=back diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index d36bd2d72..258adf811 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -493,3 +493,19 @@ Params: none Returns: nothing =back + +=head1 B + +=over + +=item update_system_groups + +=item reset_password + +=item make_admin + +=item create_admin + +=item init_workflow + +=back diff --git a/Bugzilla/Install/CPAN.pm b/Bugzilla/Install/CPAN.pm index a0f059927..0d56ead6d 100644 --- a/Bugzilla/Install/CPAN.pm +++ b/Bugzilla/Install/CPAN.pm @@ -334,3 +334,11 @@ Note that calling this function prints a B of information to STDOUT and STDERR. =back + +=head1 B + +=over + +=item check_cpan_requirements + +=back diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 678e208d4..04f32313b 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -930,3 +930,29 @@ how they are supposed to be set in Bugzilla's current configuration. If it fails to set the permissions, a warning will be printed to STDERR. =back + +=head1 B + +=over + +=item CGI_WRITE + +=item DIR_WS_SERVE + +=item DIR_ALSO_WS_SERVE + +=item WS_SERVE + +=item FILESYSTEM + +=item WS_EXECUTE + +=item CGI_READ + +=item DIR_CGI_READ + +=item DIR_CGI_WRITE + +=item DIR_CGI_OVERWRITE + +=back diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 8f85bfe10..c446e3834 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -920,3 +920,11 @@ Returns a hashref where file names are the keys and the value is the feature that must be enabled in order to compile that file. =back + +=head1 B + +=over + +=item print_module_instructions + +=back diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 8548717e4..80ebc2a88 100644 --- a/Bugzilla/Install/Util.pm +++ b/Bugzilla/Install/Util.pm @@ -915,3 +915,35 @@ is greater than C<$b>. =back =back + +=head1 B + +=over + +=item supported_languages + +=item extension_template_directory + +=item extension_code_files + +=item extension_web_directory + +=item trick_taint + +=item success + +=item trim + +=item extension_package_directory + +=item set_output_encoding + +=item extension_requirement_packages + +=item prevent_windows_dialog_boxes + +=item sortQvalue + +=item no_checksetup_from_cgi + +=back diff --git a/Bugzilla/Job/Mailer.pm b/Bugzilla/Job/Mailer.pm index d6f08adab..69f4be2e5 100644 --- a/Bugzilla/Job/Mailer.pm +++ b/Bugzilla/Job/Mailer.pm @@ -43,3 +43,13 @@ sub work { } 1; + +=head1 B + +=over + +=item retry_delay + +=item work + +=back diff --git a/Bugzilla/JobQueue.pm b/Bugzilla/JobQueue.pm index faf06c476..19f833978 100644 --- a/Bugzilla/JobQueue.pm +++ b/Bugzilla/JobQueue.pm @@ -118,3 +118,15 @@ Bugzilla to use some sort of service to schedule jobs to happen asyncronously. See the synopsis above for an easy to follow example on how to insert a job into the queue. Give it a name and some arguments and the job will be sent away to be done later. + +=head1 B + +=over + +=item insert + +=item bz_databases + +=item job_map + +=back diff --git a/Bugzilla/JobQueue/Runner.pm b/Bugzilla/JobQueue/Runner.pm index e38e6ce59..15c82f622 100644 --- a/Bugzilla/JobQueue/Runner.pm +++ b/Bugzilla/JobQueue/Runner.pm @@ -231,3 +231,31 @@ job queue. This is a subclass of L that is used by L to run the Bugzilla job queue. + +=head1 B + +=over + +=item gd_check + +=item gd_run + +=item gd_can_install + +=item gd_other_cmd + +=item gd_more_opt + +=item gd_postconfig + +=item gd_usage + +=item gd_getopt + +=item gd_preconfig + +=item gd_can_uninstall + +=item gd_setup_signals + +=back diff --git a/Bugzilla/Keyword.pm b/Bugzilla/Keyword.pm index b933c11f8..270048d2b 100644 --- a/Bugzilla/Keyword.pm +++ b/Bugzilla/Keyword.pm @@ -166,3 +166,17 @@ implements. =back =cut + +=head1 B + +=over + +=item set_description + +=item bug_count + +=item set_name + +=item description + +=back diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index 203121de1..4a10688c3 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -201,3 +201,13 @@ sub build_thread_marker { } 1; + +=head1 B + +=over + +=item build_thread_marker + +=item MessageToMTA + +=back diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index 6dbe6ef10..a23cbd32a 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -1160,3 +1160,49 @@ or any custom fields are created. The default implementation does nothing. This is run after all data is inserted into Bugzilla. The default implementation does nothing. + +=head1 B + +=over + +=item do_migration + +=item verbose + +=item bug_fields + +=item insert_users + +=item users + +=item check_requirements + +=item bugs + +=item map_value + +=item insert_products + +=item products + +=item translate_all_bugs + +=item config_file_name + +=item dry_run + +=item name + +=item create_custom_fields + +=item reset_serial_values + +=item read_config + +=item write_config + +=item insert_bugs + +=item create_legal_values + +=back diff --git a/Bugzilla/Migrate/Gnats.pm b/Bugzilla/Migrate/Gnats.pm index 6022bdbbb..2e0784ac5 100644 --- a/Bugzilla/Migrate/Gnats.pm +++ b/Bugzilla/Migrate/Gnats.pm @@ -699,3 +699,23 @@ sub translate_value { } 1; + +=head1 B + +=over + +=item user_map + +=item user_to_email + +=item add_user + +=item translate_value + +=item before_insert + +=item translate_bug + +=item CONFIG_VARS + +=back diff --git a/Bugzilla/Milestone.pm b/Bugzilla/Milestone.pm index f66e1d3c7..1eb04bd0d 100644 --- a/Bugzilla/Milestone.pm +++ b/Bugzilla/Milestone.pm @@ -370,3 +370,13 @@ Milestone.pm represents a Product Milestone object. Returns: A Bugzilla::Milestone object. =back + +=head1 B + +=over + +=item set_is_active + +=item is_active + +=back diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm index 9d7ab7391..14b042c8c 100644 --- a/Bugzilla/Object.pm +++ b/Bugzilla/Object.pm @@ -1315,3 +1315,19 @@ C<0> otherwise. =back =cut + +=head1 B + +=over + +=item cache_key + +=item check_time + +=item id + +=item TO_JSON + +=item audit_log + +=back diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm index 536961ce5..346727203 100644 --- a/Bugzilla/Product.pm +++ b/Bugzilla/Product.pm @@ -1070,3 +1070,37 @@ C. L =cut + +=head1 B + +=over + +=item set_allows_unconfirmed + +=item allows_unconfirmed + +=item set_name + +=item set_default_milestone + +=item set_group_controls + +=item create + +=item set_description + +=item set_is_active + +=item classification_id + +=item description + +=item default_milestone + +=item remove_from_db + +=item is_active + +=item update + +=back diff --git a/Bugzilla/RNG.pm b/Bugzilla/RNG.pm index 59eb3195c..c3f112007 100644 --- a/Bugzilla/RNG.pm +++ b/Bugzilla/RNG.pm @@ -219,3 +219,15 @@ sub _win2k_seed { } 1; + +=head1 B + +=over + +=item srand + +=item rand + +=item irand + +=back diff --git a/Bugzilla/Report.pm b/Bugzilla/Report.pm index 097bbb074..03c054f57 100644 --- a/Bugzilla/Report.pm +++ b/Bugzilla/Report.pm @@ -133,3 +133,17 @@ of L, and thus provides all methods that L provides. =cut + +=head1 B + +=over + +=item create + +=item query + +=item set_query + +=item set_name + +=back diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 401d2f2af..d4b74d187 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -2939,3 +2939,37 @@ sub _translate_old_column { } 1; + +=head1 B + +=over + +=item invalid_order_columns + +=item COLUMN_JOINS + +=item sql + +=item split_order_term + +=item SqlifyDate + +=item REPORT_COLUMNS + +=item pronoun + +=item COLUMNS + +=item order + +=item search_description + +=item IsValidQueryType + +=item build_subselect + +=item do_search_function + +=item boolean_charts_to_custom_search + +=back diff --git a/Bugzilla/Search/Clause.pm b/Bugzilla/Search/Clause.pm index 77969440e..7bfd52015 100644 --- a/Bugzilla/Search/Clause.pm +++ b/Bugzilla/Search/Clause.pm @@ -129,3 +129,27 @@ sub as_params { } 1; + +=head1 B + +=over + +=item has_translated_conditions + +=item as_string + +=item add + +=item children + +=item negate + +=item update_search_args + +=item walk_conditions + +=item joiner + +=item as_params + +=back diff --git a/Bugzilla/Search/ClauseGroup.pm b/Bugzilla/Search/ClauseGroup.pm index 98c9779c9..1085ad82c 100644 --- a/Bugzilla/Search/ClauseGroup.pm +++ b/Bugzilla/Search/ClauseGroup.pm @@ -95,3 +95,13 @@ sub update_search_args { } 1; + +=head1 B + +=over + +=item add + +=item update_search_args + +=back diff --git a/Bugzilla/Search/Condition.pm b/Bugzilla/Search/Condition.pm index ac6947484..50d8258ea 100644 --- a/Bugzilla/Search/Condition.pm +++ b/Bugzilla/Search/Condition.pm @@ -69,3 +69,27 @@ sub condition { } 1; + +=head1 B + +=over + +=item as_string + +=item fov + +=item value + +=item negate + +=item translated + +=item operator + +=item as_params + +=item condition + +=item field + +=back diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index d686fde03..311ef751a 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -608,3 +608,21 @@ sub makeChart { } 1; + +=head1 B + +=over + +=item FIELD_MAP + +=item quicksearch + +=item negateComparisonType + +=item makeChart + +=item addChart + +=item matchPrefixes + +=back diff --git a/Bugzilla/Search/Recent.pm b/Bugzilla/Search/Recent.pm index f1dd092b2..af426ab74 100644 --- a/Bugzilla/Search/Recent.pm +++ b/Bugzilla/Search/Recent.pm @@ -160,3 +160,27 @@ Bugzilla::Search::Recent - A search recently run by a logged-in user. This is an implementation of L, and so has all the same methods available as L, in addition to what is documented below. + +=head1 B + +=over + +=item create + +=item list_order + +=item check_quietly + +=item new_from_cookie + +=item create_placeholder + +=item bug_list + +=item set_bug_list + +=item user_id + +=item set_list_order + +=back diff --git a/Bugzilla/Search/Saved.pm b/Bugzilla/Search/Saved.pm index f6e9badab..245cde37f 100644 --- a/Bugzilla/Search/Saved.pm +++ b/Bugzilla/Search/Saved.pm @@ -386,3 +386,21 @@ Returns how many users (besides the author of the saved search) are using the saved search, i.e. have it displayed in their footer. =back + +=head1 B + +=over + +=item create + +=item set_name + +=item set_url + +=item rename_field_value + +=item user + +=item used_in_whine + +=back diff --git a/Bugzilla/Send/Sendmail.pm b/Bugzilla/Send/Sendmail.pm index b15f48043..4cf9b88f1 100644 --- a/Bugzilla/Send/Sendmail.pm +++ b/Bugzilla/Send/Sendmail.pm @@ -94,3 +94,10 @@ sub _map_exitcode { 1; +=head1 B + +=over + +=item send + +=back diff --git a/Bugzilla/Series.pm b/Bugzilla/Series.pm index e7c2ef005..6c11f5dbc 100644 --- a/Bugzilla/Series.pm +++ b/Bugzilla/Series.pm @@ -270,3 +270,29 @@ sub remove_from_db { } 1; + +=head1 B + +=over + +=item creator + +=item existsInDatabase + +=item name + +=item getCategoryID + +=item initFromParameters + +=item initFromCGI + +=item initFromDatabase + +=item remove_from_db + +=item writeToDatabase + +=item id + +=back diff --git a/Bugzilla/Status.pm b/Bugzilla/Status.pm index 33277fed7..e1d44a603 100644 --- a/Bugzilla/Status.pm +++ b/Bugzilla/Status.pm @@ -297,3 +297,27 @@ C<1> if a comment is required on this change, C<0> if not. =back =cut + +=head1 B + +=over + +=item create + +=item BUG_STATE_OPEN + +=item is_static + +=item is_open_state + +=item is_active + +=item remove_from_db + +=item DB_COLUMNS + +=item is_open + +=item VALIDATORS + +=back diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index f62a7c498..8ddd0a5df 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -1186,3 +1186,29 @@ Returns: nothing =head1 SEE ALSO L, L