summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla.pm22
-rw-r--r--Bugzilla/Attachment.pm26
-rw-r--r--Bugzilla/Attachment/PatchReader.pm18
-rw-r--r--Bugzilla/Auth/Verify.pm8
-rw-r--r--Bugzilla/Bug.pm266
-rw-r--r--Bugzilla/BugMail.pm12
-rw-r--r--Bugzilla/BugUrl.pm14
-rw-r--r--Bugzilla/CGI.pm22
-rw-r--r--Bugzilla/Chart.pm26
-rw-r--r--Bugzilla/Classification.pm18
-rw-r--r--Bugzilla/Comment.pm26
-rw-r--r--Bugzilla/Component.pm18
-rw-r--r--Bugzilla/Config.pm2
-rw-r--r--Bugzilla/Config/Common.pm50
-rw-r--r--Bugzilla/Constants.pm10
-rw-r--r--Bugzilla/DB.pm60
-rw-r--r--Bugzilla/DB/Mysql.pm46
-rw-r--r--Bugzilla/DB/Pg.pm40
-rw-r--r--Bugzilla/DB/Schema.pm16
-rw-r--r--Bugzilla/DB/Schema/Mysql.pm24
-rw-r--r--Bugzilla/DB/Schema/Oracle.pm30
-rw-r--r--Bugzilla/DB/Schema/Pg.pm14
-rw-r--r--Bugzilla/DB/Schema/Sqlite.pm22
-rw-r--r--Bugzilla/DB/Sqlite.pm36
-rw-r--r--Bugzilla/Extension.pm10
-rw-r--r--Bugzilla/Field.pm12
-rw-r--r--Bugzilla/Field/Choice.pm20
-rw-r--r--Bugzilla/Field/ChoiceInterface.pm10
-rw-r--r--Bugzilla/Flag.pm26
-rw-r--r--Bugzilla/FlagType.pm40
-rw-r--r--Bugzilla/Group.pm44
-rw-r--r--Bugzilla/Install.pm16
-rw-r--r--Bugzilla/Install/CPAN.pm8
-rw-r--r--Bugzilla/Install/Filesystem.pm26
-rw-r--r--Bugzilla/Install/Requirements.pm8
-rw-r--r--Bugzilla/Install/Util.pm32
-rw-r--r--Bugzilla/Job/Mailer.pm10
-rw-r--r--Bugzilla/JobQueue.pm12
-rw-r--r--Bugzilla/JobQueue/Runner.pm28
-rw-r--r--Bugzilla/Keyword.pm14
-rw-r--r--Bugzilla/Mailer.pm10
-rw-r--r--Bugzilla/Migrate.pm46
-rw-r--r--Bugzilla/Migrate/Gnats.pm20
-rw-r--r--Bugzilla/Milestone.pm10
-rw-r--r--Bugzilla/Object.pm16
-rw-r--r--Bugzilla/Product.pm34
-rw-r--r--Bugzilla/RNG.pm12
-rw-r--r--Bugzilla/Report.pm14
-rw-r--r--Bugzilla/Search.pm34
-rw-r--r--Bugzilla/Search/Clause.pm24
-rw-r--r--Bugzilla/Search/ClauseGroup.pm10
-rw-r--r--Bugzilla/Search/Condition.pm24
-rw-r--r--Bugzilla/Search/Quicksearch.pm18
-rw-r--r--Bugzilla/Search/Recent.pm24
-rw-r--r--Bugzilla/Search/Saved.pm18
-rw-r--r--Bugzilla/Send/Sendmail.pm7
-rw-r--r--Bugzilla/Series.pm26
-rw-r--r--Bugzilla/Status.pm24
-rw-r--r--Bugzilla/Template.pm26
-rw-r--r--Bugzilla/Template/Context.pm12
-rw-r--r--Bugzilla/Token.pm10
-rw-r--r--Bugzilla/User.pm54
-rw-r--r--Bugzilla/Util.pm16
-rw-r--r--Bugzilla/Version.pm22
-rw-r--r--Bugzilla/WebService.pm8
-rw-r--r--Bugzilla/WebService/Bug.pm12
-rw-r--r--Bugzilla/WebService/Constants.pm8
-rw-r--r--Bugzilla/WebService/Product.pm8
-rw-r--r--Bugzilla/WebService/Server.pm12
-rw-r--r--Bugzilla/WebService/Server/JSONRPC.pm22
-rw-r--r--Bugzilla/WebService/Server/XMLRPC.pm12
-rw-r--r--Bugzilla/WebService/Util.pm8
-rw-r--r--Bugzilla/Whine/Query.pm8
-rw-r--r--Bugzilla/Whine/Schedule.pm8
74 files changed, 1759 insertions, 0 deletions
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<OPTIONAL_MODULES> in C<Bugzilla::Install::Requirements>.
=back
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<false>.
=back
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<CGI|CGI>, L<CGI::Cookie|CGI::Cookie>
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<param_panels()>
+
=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<new> by derived class useless.
L<DBI>
L<Bugzilla::Constants/DB_MODULE>
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Bugzilla::DB>
L<http://www.bugzilla.org/docs/developer.html#sql-schema>
=cut
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Bugzilla::DB> and L<DBI>.
+
+=head1 B<Methods in need of POD>
+
+=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</load> for every enabled extension installed into Bugzilla,
and returns an arrayref of all the package names that were loaded.
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<type> to get a class you can call methods on.
This class implements mutators for all of the settable accessors in
L<Bugzilla::Field::ChoiceInterface>.
+
+=head1 B<Methods in need of POD>
+
+=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<any> of the currently selected values are this value.
Returns C<0> otherwise.
=back
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<lot> of information to
STDOUT and STDERR.
=back
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Daemon::Generic> that is used by L<jobqueue>
to run the Bugzilla job queue.
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Bugzilla::Product::preload($products)>.
L<Bugzilla::Object>
=cut
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Bugzilla::Object>, and thus provides all methods that
L<Bugzilla::Object> provides.
=cut
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Bugzilla::Object>, and so has all the
same methods available as L<Bugzilla::Object>, in addition to what is
documented below.
+
+=head1 B<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Methods in need of POD>
+
+=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<Bugzilla>, L<Template>
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item multiline_sprintf
+
+=item create
+
+=item css_files
+
+=item mtime_filter
+
+=item yui_resolve_deps
+
+=item process
+
+=item get_bug_link
+
+=item quoteUrls
+
+=item get_attachment_link
+
+=item SAFE_URL_REGEXP
+
+=back
diff --git a/Bugzilla/Template/Context.pm b/Bugzilla/Template/Context.pm
index 1edc0422c..61fcba4d6 100644
--- a/Bugzilla/Template/Context.pm
+++ b/Bugzilla/Template/Context.pm
@@ -98,3 +98,15 @@ sub DESTROY {
};
1;
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item stash
+
+=item filter
+
+=item process
+
+=back
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm
index f7caa0e31..a5bf9e0a3 100644
--- a/Bugzilla/Token.pm
+++ b/Bugzilla/Token.pm
@@ -597,3 +597,13 @@ although they can be used separately.
=back
=cut
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item check_hash_token
+
+=item issue_hash_token
+
+=back
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 70261c4df..417072e95 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -2728,3 +2728,57 @@ is done with the data.
=head1 SEE ALSO
L<Bugzilla|Bugzilla>
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item email_enabled
+
+=item cryptpassword
+
+=item clear_login_failures
+
+=item set_disable_mail
+
+=item has_audit_entries
+
+=item groups_with_icon
+
+=item check_login_name
+
+=item set_extern_id
+
+=item mail_settings
+
+=item email_disabled
+
+=item update
+
+=item is_timetracker
+
+=item is_enabled
+
+=item queryshare_groups_as_string
+
+=item set_login
+
+=item set_password
+
+=item last_seen_date
+
+=item set_disabledtext
+
+=item update_last_seen_date
+
+=item set_name
+
+=item DB_COLUMNS
+
+=item extern_id
+
+=item visible_bugs
+
+=item UPDATE_COLUMNS
+
+=back
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index 9bdff77f3..c7f75f07e 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -1165,3 +1165,19 @@ if Bugzilla is currently using the shadowdb or not. Used like:
}
=back
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item do_ssl_redirect_if_required
+
+=item validate_time
+
+=item is_ipv4
+
+=item is_ipv6
+
+=item display_value
+
+=back
diff --git a/Bugzilla/Version.pm b/Bugzilla/Version.pm
index aa05d66e8..b088e1c5c 100644
--- a/Bugzilla/Version.pm
+++ b/Bugzilla/Version.pm
@@ -248,3 +248,25 @@ below.
=back
=cut
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item DEFAULT_VERSION
+
+=item set_is_active
+
+=item set_name
+
+=item product_id
+
+=item is_active
+
+=item remove_from_db
+
+=item product
+
+=item update
+
+=back
diff --git a/Bugzilla/WebService.pm b/Bugzilla/WebService.pm
index 3d6186325..67aa21374 100644
--- a/Bugzilla/WebService.pm
+++ b/Bugzilla/WebService.pm
@@ -319,3 +319,11 @@ would return something like:
=item L<Bugzilla::WebService::User>
=back
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item login_exempt
+
+=back
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index f4cb53600..172353b07 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -3395,3 +3395,15 @@ This method can throw the same errors as L</get>.
=back
=back
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item get_bugs
+
+=item possible_duplicates
+
+=item get_history
+
+=back
diff --git a/Bugzilla/WebService/Constants.pm b/Bugzilla/WebService/Constants.pm
index a5a5dffe9..126cd7947 100644
--- a/Bugzilla/WebService/Constants.pm
+++ b/Bugzilla/WebService/Constants.pm
@@ -203,3 +203,11 @@ sub WS_DISPATCH {
};
1;
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item WS_DISPATCH
+
+=back
diff --git a/Bugzilla/WebService/Product.pm b/Bugzilla/WebService/Product.pm
index 19a016fbc..30a97c465 100644
--- a/Bugzilla/WebService/Product.pm
+++ b/Bugzilla/WebService/Product.pm
@@ -856,3 +856,11 @@ You must define a default milestone.
=back
=back
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item get_products
+
+=back
diff --git a/Bugzilla/WebService/Server.pm b/Bugzilla/WebService/Server.pm
index 5634aa0fe..02226284c 100644
--- a/Bugzilla/WebService/Server.pm
+++ b/Bugzilla/WebService/Server.pm
@@ -56,3 +56,15 @@ sub datetime_format_outbound {
}
1;
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item handle_login
+
+=item datetime_format_outbound
+
+=item datetime_format_inbound
+
+=back
diff --git a/Bugzilla/WebService/Server/JSONRPC.pm b/Bugzilla/WebService/Server/JSONRPC.pm
index a0de6af77..d4573fd19 100644
--- a/Bugzilla/WebService/Server/JSONRPC.pm
+++ b/Bugzilla/WebService/Server/JSONRPC.pm
@@ -571,3 +571,25 @@ the JSON-RPC library that Bugzilla uses, not by Bugzilla.
=head1 SEE ALSO
L<Bugzilla::WebService>
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item response
+
+=item response_header
+
+=item cgi
+
+=item retrieve_json_from_get
+
+=item create_json_coder
+
+=item type
+
+=item handle_login
+
+=item datetime_format_outbound
+
+=back
diff --git a/Bugzilla/WebService/Server/XMLRPC.pm b/Bugzilla/WebService/Server/XMLRPC.pm
index a888382b7..f55bd6cf2 100644
--- a/Bugzilla/WebService/Server/XMLRPC.pm
+++ b/Bugzilla/WebService/Server/XMLRPC.pm
@@ -379,3 +379,15 @@ perl-SOAP-Lite package in versions 0.68-1 and above.
=head1 SEE ALSO
L<Bugzilla::WebService>
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item make_response
+
+=item initialize
+
+=item handle_login
+
+=back
diff --git a/Bugzilla/WebService/Util.pm b/Bugzilla/WebService/Util.pm
index 30862ed26..57a55a599 100644
--- a/Bugzilla/WebService/Util.pm
+++ b/Bugzilla/WebService/Util.pm
@@ -189,3 +189,11 @@ parameters passed to a WebService method (the first parameter to this function).
Helps make life simpler for WebService methods that internally create objects
via both "ids" and "names" fields. Also de-duplicates objects that were loaded
by both "ids" and "names". Returns an arrayref of objects.
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item taint_data
+
+=back
diff --git a/Bugzilla/Whine/Query.pm b/Bugzilla/Whine/Query.pm
index 3c63e8057..b40ba1c3b 100644
--- a/Bugzilla/Whine/Query.pm
+++ b/Bugzilla/Whine/Query.pm
@@ -122,3 +122,11 @@ bugs or one email per bug.
The title of this object as it appears in the user forms and emails.
=back
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item eventid
+
+=back
diff --git a/Bugzilla/Whine/Schedule.pm b/Bugzilla/Whine/Schedule.pm
index a96c728f2..2171f84a5 100644
--- a/Bugzilla/Whine/Schedule.pm
+++ b/Bugzilla/Whine/Schedule.pm
@@ -156,3 +156,11 @@ the group is still active, otherwise it will contain a single array element
for the L<Bugzilla::User> in L</mailto>.
=back
+
+=head1 B<Methods in need of POD>
+
+=over
+
+=item eventid
+
+=back