Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
8a48cfd0
Commit
8a48cfd0
authored
Apr 15, 2015
by
Matt Tyson
Committed by
Frédéric Buclin
Apr 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1154099: Remove support for Bug.get_bugs and Bug.get_history
r=LpSolit a=glob
parent
d5c47c9a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
Bug.pm
Bugzilla/WebService/Bug.pm
+0
-17
bz_webservice_demo.pl
contrib/bz_webservice_demo.pl
+0
-2
No files found.
Bugzilla/WebService/Bug.pm
View file @
8a48cfd0
...
@@ -97,17 +97,6 @@ use constant ATTACHMENT_MAPPED_RETURNS => {
...
@@ -97,17 +97,6 @@ use constant ATTACHMENT_MAPPED_RETURNS => {
mimetype
=>
'content_type'
,
mimetype
=>
'content_type'
,
};
};
######################################################
# Add aliases here for old method name compatibility #
######################################################
BEGIN
{
# In 3.0, get was called get_bugs
*
get_bugs
=
\&
get
;
# Before 3.4rc1, "history" was get_history.
*
get_history
=
\&
history
;
}
###########
###########
# Methods #
# Methods #
###########
###########
...
@@ -2143,8 +2132,6 @@ B<STABLE>
...
@@ -2143,8 +2132,6 @@ B<STABLE>
Gets information about particular bugs in the database.
Gets information about particular bugs in the database.
Note: Can also be called as "get_bugs" for compatibilty with Bugzilla 3.0 API.
=item B<REST>
=item B<REST>
To get information about a particular bug using its ID or alias:
To get information about a particular bug using its ID or alias:
...
@@ -4665,8 +4652,4 @@ This method can throw all of the errors that L</get> throws.
...
@@ -4665,8 +4652,4 @@ This method can throw all of the errors that L</get> throws.
=over
=over
=item get_bugs
=item get_history
=back
=back
contrib/bz_webservice_demo.pl
View file @
8a48cfd0
...
@@ -259,8 +259,6 @@ if ($fetch_extension_info) {
...
@@ -259,8 +259,6 @@ if ($fetch_extension_info) {
Call C<Bug.get> with the ID of the bug you want to know more of.
Call C<Bug.get> with the ID of the bug you want to know more of.
The call will return a C<Bugzilla::Bug> object.
The call will return a C<Bugzilla::Bug> object.
Note: You can also use "Bug.get_bugs" for compatibility with Bugzilla 3.0 API.
=cut
=cut
if
(
$bug_id
)
{
if
(
$bug_id
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment