Make WordPress Core

Changeset 60655


Ignore:
Timestamp:
08/21/2025 02:58:19 PM (7 months ago)
Author:
SergeyBiryukov
Message:

XML-RPC: Update specUrl links in IXR_Server and IXR_IntrospectionServer.

As the original URLs are no longer accessible, this commit uses the latest available copy of the corresponding documentation from the Wayback Machine.

Follow-up to [1346], [56167].

Props mayur8991, panchalhimani711, SergeyBiryukov.
Fixes #63848.

Location:
trunk/src/wp-includes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/IXR/class-IXR-introspectionserver.php

    r42201 r60655  
    2020        $this->setCapabilities();
    2121        $this->capabilities['introspection'] = array(
    22             'specUrl' => 'http://xmlrpc.usefulinc.com/doc/reserved.html',
     22            'specUrl' => 'https://web.archive.org/web/20050404090342/http://xmlrpc.usefulinc.com/doc/reserved.html',
    2323            'specVersion' => 1
    2424        );
  • trunk/src/wp-includes/IXR/class-IXR-server.php

    r50954 r60655  
    162162        $this->capabilities = array(
    163163            'xmlrpc' => array(
    164                 'specUrl' => 'http://www.xmlrpc.com/spec',
     164                'specUrl' => 'https://xmlrpc.com/spec.md',
    165165                'specVersion' => 1
    166166        ),
    167167            'faults_interop' => array(
    168                 'specUrl' => 'http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php',
     168                'specUrl' => 'https://web.archive.org/web/20240416231938/https://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php',
    169169                'specVersion' => 20010516
    170170        ),
    171171            'system.multicall' => array(
    172                 'specUrl' => 'http://www.xmlrpc.com/discuss/msgReader$1208',
     172                'specUrl' => 'https://web.archive.org/web/20060624230303/http://www.xmlrpc.com/discuss/msgReader$1208?mode=topic',
    173173                'specVersion' => 1
    174174        ),
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r60235 r60655  
    65456545    /*
    65466546     * MovableType API functions.
    6547      * Specs archive on http://web.archive.org/web/20050220091302/http://www.movabletype.org:80/docs/mtmanual_programmatic.html
     6547     * Specs archive on https://web.archive.org/web/20050220091302/http://www.movabletype.org/docs/mtmanual_programmatic.html
    65486548     */
    65496549
Note: See TracChangeset for help on using the changeset viewer.