[Docstring-checkins] CVS: dps/dps urischemes.py,NONE,1.1
Status: Pre-Alpha
Brought to you by:
goodger
From: David G. <go...@us...> - 2001-10-27 05:29:33
|
Update of /cvsroot/docstring/dps/dps In directory usw-pr-cvs1:/tmp/cvs-serv11038/dps/dps Added Files: urischemes.py Log Message: known URI schemes --- NEW FILE: urischemes.py --- """ `schemes` is a dictionary with lowercase URI addressing schemes as keys and descriptions as values. It was compiled from the index at http://www.w3.org/Addressing/schemes.html, revised 2001-08-20. Many values are blank and should be filled in with useful descriptions. """ schemes = { 'about': '', 'acap': 'application configuration access protocol', 'addbook': "To add vCard entries to Communicator's Address Book", 'afp': '', 'afs': 'Andrew File System global file names', 'aim': '', 'callto': '', 'castanet': 'Castanet Tuner URLs for Netcaster', 'chttp': '', 'cid': 'content identifier', 'data': '', 'dav': '', 'dns': '', 'eid': '', 'fax': '', 'file': 'Host-specific file names', 'finger': '', 'freenet': '', 'ftp': 'File Transfer Protocol', 'gopher': 'The Gopher Protocol', 'gsm-sms': '', 'h323': '', 'h324': '', 'hdl': '', 'hnews': '', 'http': 'Hypertext Transfer Protocol', 'https': '', 'iioploc': '', 'ilu': '', 'imap': 'internet message access protocol', 'ior': '', 'ipp': '', 'irc': 'Internet Relay Chat', 'jar': '', 'javascript': '', 'jdbc': '', 'ldap': 'Lightweight Directory Access Protocol', 'lifn': '', 'livescript': '', 'lrq': '', 'mailbox': 'Mail folder access', 'mailserver': 'Access to data available from mail servers', 'mailto': 'Electronic mail address', 'md5': '', 'mid': 'message identifier', 'mocha': '', 'modem': '', 'news': 'USENET news', 'nfs': 'network file system protocol', 'nntp': 'USENET news using NNTP access', 'opaquelocktoken': '', 'phone': '', 'pop': 'Post Office Protocol', 'pop3': 'Post Office Protocol v3', 'printer': '', 'prospero': 'Prospero Directory Service', 'res': '', 'rtsp': 'real time streaming protocol', 'rvp': '', 'rwhois': '', 'rx': 'Remote Execution', 'sdp': '', 'service': 'service location', 'sip': 'session initiation protocol', 'smb': '', 'snews': 'For NNTP postings via SSL', 't120': '', 'tcp': '', 'tel': 'telephone', 'telephone': 'telephone', 'telnet': 'Reference to interactive sessions', 'tip': 'Transaction Internet Protocol', 'tn3270': 'Interactive 3270 emulation sessions', 'tv': '', 'urn': 'Uniform Resource Name', 'uuid': '', 'vemmi': 'versatile multimedia interface', 'videotex': '', 'view-source': '', 'wais': 'Wide Area Information Servers', 'whodp': '', 'whois++': 'Distributed directory service.', 'z39.50r': 'Z39.50 Retrieval', 'z39.50s': 'Z39.50 Session',} |