Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/docutils/utils/urischemes.py @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
| author | guerler |
|---|---|
| date | Fri, 31 Jul 2020 00:18:57 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:d30785e31577 |
|---|---|
| 1 # $Id: urischemes.py 8376 2019-08-27 19:49:29Z milde $ | |
| 2 # Author: David Goodger <goodger@python.org> | |
| 3 # Copyright: This module has been placed in the public domain. | |
| 4 | |
| 5 """ | |
| 6 `schemes` is a dictionary with lowercase URI addressing schemes as | |
| 7 keys and descriptions as values. It was compiled from the index at | |
| 8 http://www.iana.org/assignments/uri-schemes (revised 2005-11-28) | |
| 9 and an older list at http://www.w3.org/Addressing/schemes.html. | |
| 10 """ | |
| 11 | |
| 12 # Many values are blank and should be filled in with useful descriptions. | |
| 13 | |
| 14 schemes = { | |
| 15 'about': 'provides information on Navigator', | |
| 16 'acap': 'Application Configuration Access Protocol; RFC 2244', | |
| 17 'addbook': "To add vCard entries to Communicator's Address Book", | |
| 18 'afp': 'Apple Filing Protocol', | |
| 19 'afs': 'Andrew File System global file names', | |
| 20 'aim': 'AOL Instant Messenger', | |
| 21 'callto': 'for NetMeeting links', | |
| 22 'castanet': 'Castanet Tuner URLs for Netcaster', | |
| 23 'chttp': 'cached HTTP supported by RealPlayer', | |
| 24 'cid': 'content identifier; RFC 2392', | |
| 25 'crid': 'TV-Anytime Content Reference Identifier; RFC 4078', | |
| 26 'data': ('allows inclusion of small data items as "immediate" data; ' | |
| 27 'RFC 2397'), | |
| 28 'dav': 'Distributed Authoring and Versioning Protocol; RFC 2518', | |
| 29 'dict': 'dictionary service protocol; RFC 2229', | |
| 30 'dns': 'Domain Name System resources', | |
| 31 'eid': ('External ID; non-URL data; general escape mechanism to allow ' | |
| 32 'access to information for applications that are too ' | |
| 33 'specialized to justify their own schemes'), | |
| 34 'fax': ('a connection to a terminal that can handle telefaxes ' | |
| 35 '(facsimiles); RFC 2806'), | |
| 36 'feed': 'NetNewsWire feed', | |
| 37 'file': 'Host-specific file names; RFC 1738', | |
| 38 'finger': '', | |
| 39 'freenet': '', | |
| 40 'ftp': 'File Transfer Protocol; RFC 1738', | |
| 41 'go': 'go; RFC 3368', | |
| 42 'gopher': 'The Gopher Protocol', | |
| 43 'gsm-sms': ('Global System for Mobile Communications Short Message ' | |
| 44 'Service'), | |
| 45 'h323': ('video (audiovisual) communication on local area networks; ' | |
| 46 'RFC 3508'), | |
| 47 'h324': ('video and audio communications over low bitrate connections ' | |
| 48 'such as POTS modem connections'), | |
| 49 'hdl': 'CNRI handle system', | |
| 50 'hnews': 'an HTTP-tunneling variant of the NNTP news protocol', | |
| 51 'http': 'Hypertext Transfer Protocol; RFC 2616', | |
| 52 'https': 'HTTP over SSL; RFC 2818', | |
| 53 'hydra': 'SubEthaEdit URI. See http://www.codingmonkeys.de/subethaedit.', | |
| 54 'iioploc': 'Internet Inter-ORB Protocol Location?', | |
| 55 'ilu': 'Inter-Language Unification', | |
| 56 'im': 'Instant Messaging; RFC 3860', | |
| 57 'imap': 'Internet Message Access Protocol; RFC 2192', | |
| 58 'info': 'Information Assets with Identifiers in Public Namespaces', | |
| 59 'ior': 'CORBA interoperable object reference', | |
| 60 'ipp': 'Internet Printing Protocol; RFC 3510', | |
| 61 'irc': 'Internet Relay Chat', | |
| 62 'iris.beep': 'iris.beep; RFC 3983', | |
| 63 'iseek': 'See www.ambrosiasw.com; a little util for OS X.', | |
| 64 'jar': 'Java archive', | |
| 65 'javascript': ('JavaScript code; evaluates the expression after the ' | |
| 66 'colon'), | |
| 67 'jdbc': 'JDBC connection URI.', | |
| 68 'ldap': 'Lightweight Directory Access Protocol', | |
| 69 'lifn': '', | |
| 70 'livescript': '', | |
| 71 'lrq': '', | |
| 72 'mailbox': 'Mail folder access', | |
| 73 'mailserver': 'Access to data available from mail servers', | |
| 74 'mailto': 'Electronic mail address; RFC 2368', | |
| 75 'md5': '', | |
| 76 'mid': 'message identifier; RFC 2392', | |
| 77 'mocha': '', | |
| 78 'modem': ('a connection to a terminal that can handle incoming data ' | |
| 79 'calls; RFC 2806'), | |
| 80 'mtqp': 'Message Tracking Query Protocol; RFC 3887', | |
| 81 'mupdate': 'Mailbox Update (MUPDATE) Protocol; RFC 3656', | |
| 82 'news': 'USENET news; RFC 1738', | |
| 83 'nfs': 'Network File System protocol; RFC 2224', | |
| 84 'nntp': 'USENET news using NNTP access; RFC 1738', | |
| 85 'opaquelocktoken': 'RFC 2518', | |
| 86 'phone': '', | |
| 87 'pop': 'Post Office Protocol; RFC 2384', | |
| 88 'pop3': 'Post Office Protocol v3', | |
| 89 'pres': 'Presence; RFC 3859', | |
| 90 'printer': '', | |
| 91 'prospero': 'Prospero Directory Service; RFC 4157', | |
| 92 'rdar': ('URLs found in Darwin source ' | |
| 93 '(http://www.opensource.apple.com/darwinsource/).'), | |
| 94 'res': '', | |
| 95 'rtsp': 'real time streaming protocol; RFC 2326', | |
| 96 'rvp': '', | |
| 97 'rwhois': '', | |
| 98 'rx': 'Remote Execution', | |
| 99 'sdp': '', | |
| 100 'service': 'service location; RFC 2609', | |
| 101 'shttp': 'secure hypertext transfer protocol', | |
| 102 'sip': 'Session Initiation Protocol; RFC 3261', | |
| 103 'sips': 'secure session intitiaion protocol; RFC 3261', | |
| 104 'smb': 'SAMBA filesystems.', | |
| 105 'snews': 'For NNTP postings via SSL', | |
| 106 'snmp': 'Simple Network Management Protocol; RFC 4088', | |
| 107 'soap.beep': 'RFC 3288', | |
| 108 'soap.beeps': 'RFC 3288', | |
| 109 'ssh': 'Reference to interactive sessions via ssh.', | |
| 110 't120': 'real time data conferencing (audiographics)', | |
| 111 'tag': 'RFC 4151', | |
| 112 'tcp': '', | |
| 113 'tel': ('a connection to a terminal that handles normal voice ' | |
| 114 'telephone calls, a voice mailbox or another voice messaging ' | |
| 115 'system or a service that can be operated using DTMF tones; ' | |
| 116 'RFC 3966.'), | |
| 117 'telephone': 'telephone', | |
| 118 'telnet': 'Reference to interactive sessions; RFC 4248', | |
| 119 'tftp': 'Trivial File Transfer Protocol; RFC 3617', | |
| 120 'tip': 'Transaction Internet Protocol; RFC 2371', | |
| 121 'tn3270': 'Interactive 3270 emulation sessions', | |
| 122 'tv': '', | |
| 123 'urn': 'Uniform Resource Name; RFC 2141', | |
| 124 'uuid': '', | |
| 125 'vemmi': 'versatile multimedia interface; RFC 2122', | |
| 126 'videotex': '', | |
| 127 'view-source': 'displays HTML code that was generated with JavaScript', | |
| 128 'wais': 'Wide Area Information Servers; RFC 4156', | |
| 129 'whodp': '', | |
| 130 'whois++': 'Distributed directory service.', | |
| 131 'x-man-page': ('Opens man page in Terminal.app on OS X ' | |
| 132 '(see macosxhints.com)'), | |
| 133 'xmlrpc.beep': 'RFC 3529', | |
| 134 'xmlrpc.beeps': 'RFC 3529', | |
| 135 'z39.50r': 'Z39.50 Retrieval; RFC 2056', | |
| 136 'z39.50s': 'Z39.50 Session; RFC 2056',} |
