From: Emma Humphries Date: Thu, 17 Oct 2019 01:32:44 +0000 (-0700) Subject: Bug 1185841, Remove references to obsolete APIs X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fff7ca0d1b04dc484c9032912c8a4144f9d83c61;p=thirdparty%2Fbugzilla.git Bug 1185841, Remove references to obsolete APIs --- diff --git a/docs/en/rst/integrating/apis.rst b/docs/en/rst/integrating/apis.rst index 021602f9b..356f52a26 100644 --- a/docs/en/rst/integrating/apis.rst +++ b/docs/en/rst/integrating/apis.rst @@ -20,26 +20,6 @@ as HTML. For example, bugs can be downloaded as XML, and buglists as CSV. CSV is useful for spreadsheet import. There should be links on the HTML page to alternate data formats where they are available. -XML-RPC -======= - -Bugzilla has an `XML-RPC API -`_. -This will receive no further updates and will be removed in a future version -of Bugzilla. - -Endpoint: :file:`/xmlrpc.cgi` - -JSON-RPC -======== - -Bugzilla has a `JSON-RPC API -`_. -This will receive no further updates and will be removed in a future version -of Bugzilla. - -Endpoint: :file:`/jsonrpc.cgi` - REST ==== @@ -50,23 +30,3 @@ and so will not be changed in a backwardly-incompatible way. **This is the currently-recommended API for new development.** Endpoint: :file:`/rest` - -BzAPI/BzAPI-Compatible REST -=========================== - -The first ever REST API for Bugzilla was implemented using an external proxy -called `BzAPI `_. This became popular -enough that a BzAPI-compatible shim on top of the (native) REST API has been -written, to allow code which used the BzAPI API to take advantage of the -speed improvements of direct integration without needing to be rewritten. -The shim is an extension which you would need to install in your Bugzilla. - -Neither BzAPI nor this BzAPI-compatible API shim will receive any further -updates, and they should not be used for new code. - -REST v2 -======= - -The future of Bugzilla's APIs is version 2 of the REST API, which will take -the best of the current REST API and the BzAPI API. It is still under -development.