Documentation for stylesheet usage.
[docutils.git] / docutils / urischemes.py
blob6eb45820ae3c8571f35a7827645a80e30dfc7562
1 """
2 `schemes` is a dictionary with lowercase URI addressing schemes as
3 keys and descriptions as values. It was compiled from the index at
4 http://www.w3.org/Addressing/schemes.html (revised 2001-08-20).
5 """
7 # Many values are blank and should be filled in with useful descriptions.
9 schemes = {
10 'about': 'provides information on Navigator',
11 'acap': 'Application Configuration Access Protocol',
12 'addbook': "To add vCard entries to Communicator's Address Book",
13 'afp': 'Apple Filing Protocol',
14 'afs': 'Andrew File System global file names',
15 'aim': 'AOL Instant Messenger',
16 'callto': 'for NetMeeting links',
17 'castanet': 'Castanet Tuner URLs for Netcaster',
18 'chttp': 'cached HTTP supported by RealPlayer',
19 'cid': 'content identifier',
20 'data': ('allows inclusion of small data items as "immediate" data; '
21 'RFC 2397'),
22 'dav': 'Distributed Authoring and Versioning Protocol; RFC 2518',
23 'dns': 'Domain Name System resources',
24 'eid': ('External ID; non-URL data; general escape mechanism to allow '
25 'access to information for applications that are too '
26 'specialized to justify their own schemes'),
27 'fax': ('a connection to a terminal that can handle telefaxes '
28 '(facsimiles); RFC 2806'),
29 'file': 'Host-specific file names',
30 'finger': '',
31 'freenet': '',
32 'ftp': 'File Transfer Protocol',
33 'gopher': 'The Gopher Protocol',
34 'gsm-sms': ('Global System for Mobile Communications Short Message '
35 'Service'),
36 'h323': 'video (audiovisual) communication on local area networks',
37 'h324': ('video and audio communications over low bitrate connections '
38 'such as POTS modem connections'),
39 'hdl': 'CNRI handle system',
40 'hnews': 'an HTTP-tunneling variant of the NNTP news protocol',
41 'http': 'Hypertext Transfer Protocol',
42 'https': 'HTTP over SSL',
43 'iioploc': 'Internet Inter-ORB Protocol Location?',
44 'ilu': 'Inter-Language Unification',
45 'imap': 'Internet Message Access Protocol',
46 'ior': 'CORBA interoperable object reference',
47 'ipp': 'Internet Printing Protocol',
48 'irc': 'Internet Relay Chat',
49 'jar': 'Java archive',
50 'javascript': ('JavaScript code; evaluates the expression after the '
51 'colon'),
52 'jdbc': '',
53 'ldap': 'Lightweight Directory Access Protocol',
54 'lifn': '',
55 'livescript': '',
56 'lrq': '',
57 'mailbox': 'Mail folder access',
58 'mailserver': 'Access to data available from mail servers',
59 'mailto': 'Electronic mail address',
60 'md5': '',
61 'mid': 'message identifier',
62 'mocha': '',
63 'modem': ('a connection to a terminal that can handle incoming data '
64 'calls; RFC 2806'),
65 'news': 'USENET news',
66 'nfs': 'Network File System protocol',
67 'nntp': 'USENET news using NNTP access',
68 'opaquelocktoken': '',
69 'phone': '',
70 'pop': 'Post Office Protocol',
71 'pop3': 'Post Office Protocol v3',
72 'printer': '',
73 'prospero': 'Prospero Directory Service',
74 'res': '',
75 'rtsp': 'real time streaming protocol',
76 'rvp': '',
77 'rwhois': '',
78 'rx': 'Remote Execution',
79 'sdp': '',
80 'service': 'service location',
81 'shttp': 'secure hypertext transfer protocol',
82 'sip': 'Session Initiation Protocol',
83 'smb': '',
84 'snews': 'For NNTP postings via SSL',
85 't120': 'real time data conferencing (audiographics)',
86 'tcp': '',
87 'tel': ('a connection to a terminal that handles normal voice '
88 'telephone calls, a voice mailbox or another voice messaging '
89 'system or a service that can be operated using DTMF tones; '
90 'RFC 2806.'),
91 'telephone': 'telephone',
92 'telnet': 'Reference to interactive sessions',
93 'tip': 'Transaction Internet Protocol',
94 'tn3270': 'Interactive 3270 emulation sessions',
95 'tv': '',
96 'urn': 'Uniform Resource Name',
97 'uuid': '',
98 'vemmi': 'versatile multimedia interface',
99 'videotex': '',
100 'view-source': 'displays HTML code that was generated with JavaScript',
101 'wais': 'Wide Area Information Servers',
102 'whodp': '',
103 'whois++': 'Distributed directory service.',
104 'z39.50r': 'Z39.50 Retrieval',
105 'z39.50s': 'Z39.50 Session',}