diff options
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 12 | ||||
-rw-r--r-- | Bugzilla/WebService/Constants.pm | 8 | ||||
-rw-r--r-- | Bugzilla/WebService/Product.pm | 8 | ||||
-rw-r--r-- | Bugzilla/WebService/Server.pm | 12 | ||||
-rw-r--r-- | Bugzilla/WebService/Server/JSONRPC.pm | 22 | ||||
-rw-r--r-- | Bugzilla/WebService/Server/XMLRPC.pm | 12 | ||||
-rw-r--r-- | Bugzilla/WebService/Util.pm | 8 |
7 files changed, 82 insertions, 0 deletions
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 |