MediaWiki API result

This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.

Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.

See the complete documentation, or the API help for more information.

{
    "batchcomplete": "",
    "continue": {
        "gapcontinue": "Saving_of_passwords_has_been_disabled_by_you",
        "continue": "gapcontinue||"
    },
    "warnings": {
        "main": {
            "*": "Subscribe to the mediawiki-api-announce mailing list at <https://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce> for notice of API deprecations and breaking changes."
        },
        "revisions": {
            "*": "Because \"rvslots\" was not specified, a legacy format has been used for the output. This format is deprecated, and in the future the new format will always be used."
        }
    },
    "query": {
        "pages": {
            "2725": {
                "pageid": 2725,
                "ns": 0,
                "title": "Regular Expressions",
                "revisions": [
                    {
                        "contentformat": "text/x-wiki",
                        "contentmodel": "wikitext",
                        "*": "Regular expressions are used in [[Filename_Filters|filename filters]] as a way to filter files on either the client or server side.\n\nThe flavor of regular expressions used are [http://en.wikipedia.org/wiki/Regular_expression#POSIX_Extended_Regular_Expressions POSIX extended regular expressions].\n\nNote that by selecting \"None of the following\" as a [[Filename_Filters|file filter criteria type]], you can effectively select those files that ''do not'' match the specified criteria.\n\n= Regular Expressions Match Anywhere In The Name =\n\nUnless anchored to the beginning or the end of the file name, they will match if they occur anywhere inside the file name. See the '^' and '$' characters.\n\nThus, if your regular expression is 'x', then any filename that contains the letter x anywhere will match (beginning, middle, or end).\n\n= All Non-Special Characters =\n\nAll characters not specified below will match exactly in the filename. Thus, the regular expression 'foo' will match \"foobar\", \"barfoo\", and \"quxfoobaz\".\n\n= The '.' Character =\n\nThe '.' character matches any single character. Thus, 'd.t' matches both \"dat\" and \"dot\".\n\n= The '*' Character =\n\nThe '*' character matches 0 or more of the preceding token. Thus, 'foo.*bar' matches both \"fooquxbar\" and \"foobar\". The regular expression 'ge*k' matches \"gk\", \"gek\", \"geek\", and \"geeeeeeeeeeeeeeeek\".\n\n= The '?' Character =\n\nThe '?' character matches 0 or 1 of the preceding token. Thus, 'gee?k' matches \"gek\" and \"geek\", but not \"gk\" or \"geeek\".\n\n= The '^' Character =\n\nThe '^' character matches the beginning of the filename. So, '^x' matches all file whose names begin with the letter 'x'.\n\n= The '$' Character =\n\nThe '$' character matches the end of the filename. Thus, 'x$' matches all files whose names end with the letter 'x'.\n\n= The '\\' Character =\n\nThis character escapes the following token, so that it does not take on special meaning. For example, if you wanted to filter for files that begin with a period, then the regular expression '^\\.' would accomplish that for you. If you had just specified '^.', you would have matched all files that began with any single character."
                    }
                ]
            },
            "3230": {
                "pageid": 3230,
                "ns": 0,
                "title": "SFTP specifications",
                "revisions": [
                    {
                        "contentformat": "text/x-wiki",
                        "contentmodel": "wikitext",
                        "*": "The ''SSH File Transfer Protocol'' (SFTP) is used to transfer files over a cryptographically protected ''Secure Shell'' (SSH) connection.\n\n== Technical Specifications ==\n\n=== SSH ===\n\n* [https://filezilla-project.org/specs/rfc4250.txt RFC 4250] The Secure Shell (SSH) Protocol Assigned Numbers\n* [https://filezilla-project.org/specs/rfc4251.txt RFC 4251] The Secure Shell (SSH) Protocol Architecture\n* [https://filezilla-project.org/specs/rfc4252.txt RFC 4252] The Secure Shell (SSH) Authentication Protocol\n* [https://filezilla-project.org/specs/rfc4253.txt RFC 4253] The Secure Shell (SSH) Transport Layer Protocol\n* [https://filezilla-project.org/specs/rfc4254.txt RFC 4254] The Secure Shell (SSH) Connection Protocol\n* [https://filezilla-project.org/specs/rfc4255.txt RFC 4255] Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints\n* [https://filezilla-project.org/specs/rfc4256.txt RFC 4256] Generic Message Exchange Authentication for the Secure Shell Protocol (SSH)\n* [https://filezilla-project.org/specs/rfc4335.txt RFC 4335] The Secure Shell (SSH) Session Channel Break Extension\n* [https://filezilla-project.org/specs/rfc4344.txt RFC 4344] The Secure Shell (SSH) Transport Layer Encryption Modes\n* [https://filezilla-project.org/specs/rfc4419.txt RFC 4419] Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer Protocol\n* [https://filezilla-project.org/specs/rfc4462.txt RFC 4462] Generic Security Service Application Program Interface (GSS-API) Authentication and Key Exchange for the Secure Shell (SSH) Protocol\n* [https://filezilla-project.org/specs/rfc4716.txt RFC 4716] The Secure Shell (SSH) Public Key File Format\n* [https://filezilla-project.org/specs/rfc4819.txt RFC 4819] Secure Shell Public Key Subsystem\n* [https://www.rfc-editor.org/rfc/rfc5647 RFC 5647] AES Galois Counter Mode for the Secure Shell Transport Layer Protocol\n* [https://datatracker.ietf.org/doc/html/rfc5656 RFC 5656] Elliptic Curve Algorithm Integration in the Secure Shell Transport Layer\n* [https://datatracker.ietf.org/doc/html/rfc8709 RFC 8709] Ed25519 and Ed448 Public Key Algorithms for the Secure Shell (SSH) Protocol\n* [https://www.rfc-editor.org/rfc/rfc8731 RFC 8731] Secure Shell (SSH) Key Exchange Method Using Curve25519 and Curve448\n\n=== SFTP ===\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-00.txt draft-ietf-secsh-filexfer-00.txt] (draft for protocol version 3)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-01.txt draft-ietf-secsh-filexfer-01.txt] (draft for protocol version 3)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-02.txt draft-ietf-secsh-filexfer-02.txt] (draft for protocol version 3) <br> Version 3 is the most commonly used version of the protocol. <br> This is the version implemented in OpenSSH since 2001-03-07 <sup>[[#ref-openbsd08|[OpenBSD08, line 32]]]</sup> and the version used by FileZilla <sup>[[#ref-filezilla17|[FileZilla17, line 56]]]</sup>.\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-03.txt draft-ietf-secsh-filexfer-03.txt] (draft for protocol version 4)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-04.txt draft-ietf-secsh-filexfer-04.txt] (draft for protocol version 4)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-05.txt draft-ietf-secsh-filexfer-05.txt] (draft for protocol version 5)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-06.txt draft-ietf-secsh-filexfer-06.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-07.txt draft-ietf-secsh-filexfer-07.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-08.txt draft-ietf-secsh-filexfer-08.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-09.txt draft-ietf-secsh-filexfer-09.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-10.txt draft-ietf-secsh-filexfer-10.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-11.txt draft-ietf-secsh-filexfer-11.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-12.txt draft-ietf-secsh-filexfer-12.txt] (draft for protocol version 6)\n* [https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-13.txt draft-ietf-secsh-filexfer-13.txt] (draft for protocol version 6)\n\n== See also ==\n\n* [[File Transfer Protocol|FTP specifications]]\n* [[Other specifications]]\n\n== References ==\n* <span id=\"ref-openbsd08\">[OpenBSD08]</span> OpenBSD: <code>/src/usr.bin/ssh/sftp.h</code>, 2008-06-13. Online: https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/sftp.h?rev=1.9&content-type=text/plain [accessed 2023-01-03]\n* <span id=\"ref-filezilla17\">[FileZilla17]</span> FileZilla: <code>/trunk/src/putty/sftp.h</code>, 2017-02-20. Online: https://svn.filezilla-project.org/filezilla/FileZilla3/trunk/src/putty/sftp.h?revision=8199&view=markup#l56 [accessed 2023-01-03]"
                    }
                ]
            }
        }
    }
}