# $Id: N3GenMsgRegistryTest1.n3,v 1.11 2002/06/05 15:26:33 graham Exp $ # # RDF message header registry generator data # Content-features # #--------+---------+---------+---------+---------+---------+---------+---------+ # # Copyright (c) 2002, G. KLYNE # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. The name of the author may not be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # #--------+---------+---------+---------+---------+---------+---------+---------+ # $Source: /file/cvsdev/PythonN3/N3GenMsgRegistryTest1.n3,v $ # $Author: graham $ # $Date: 2002/06/05 15:26:33 $ # $Id: N3GenMsgRegistryTest1.n3,v 1.11 2002/06/05 15:26:33 graham Exp $ #--------+---------+---------+---------+---------+---------+---------+---------+ # 1 2 3 4 5 6 7 8 @prefix rdf: . @prefix rdfs: . @prefix wn: . @prefix foaf: . @prefix hdr: . a hdr:HeaderField ; hdr:fieldName "Content-features" ; hdr:label "Indicates content features of a MIME body part" ; hdr:protocol [ hdr:protocolName "mail" ; hdr:specification [ = ; hdr:document ] ] ; hdr:status "standards-track" ; hdr:author [ foaf:name "Graham Klyne" ; foaf:mbox ; foaf:organization "Clearswift Corporation" ; foaf:workplacePostal [ foaf:building "1310 Waterside" ; foaf:street1 "Arlington Business Park" ; foaf:street2 "Theale" ; foaf:city "Reading" ; foaf:area "Berks" ; foaf:postcode "RG7 4SA" ; foaf:country "UK" ] ; foaf:workplaceTel "011 8903 8903" ; foaf:workplaceFax "011 8903 9000" ; foaf:workplaceHomepage ] ; hdr:specification [ = ; hdr:document ; hdr:section "section 3" ] ; hdr:comment """The 'Content-features:' header can be used to annotate a MIME body part with a media feature expression, to indicate features of the body part content. See also: RFC 2533, RFC 2506, RFC 2045.""" . a hdr:HeaderField ; hdr:fieldName "A-very-very-very-long-header-field-name" ; # hdr:label "Utterly useless header field" ; hdr:protocol [ hdr:protocolName "mail" ; hdr:specification [ = ; hdr:document ] ] ; hdr:status "useless" ; hdr:author hdr:Author_Unknown ; hdr:author [ foaf:name "Graham Klyne" ; foaf:mbox ; foaf:organization "Clearswift Corporation" ; foaf:workplacePostal [ foaf:building "1310 Waterside " ; foaf:street1 "Arlington Business Park " ; foaf:street2 "Theale " ; foaf:city "Reading " ; foaf:area "Berks " ; foaf:postcode "RG7 4SA " ; foaf:country "UK " ] ; foaf:workplaceTel "011 8903 8903" ; foaf:workplaceFax "011 8903 9000" ; foaf:workplaceHomepage ] ; hdr:specification [ = ; hdr:document ; hdr:section "section 3" ] . # hdr:comment """Serves no conceivably useful purpose.""" . a hdr:HeaderField ; hdr:fieldName "Apparently-To" ; hdr:label "Envelope recipients inserted my MTA" ; hdr:protocol hdr:Protocol_mail ; hdr:status "Non-standard" ; hdr:author hdr:Author_Unknown ; hdr:specification hdr:Spec_Palme_Mailext ; hdr:comment """Inserted by Sendmail when there is no 'To:' recipient in the original message, listing recipients derived from the envelope into the message heading. This behavior is not quite proper, MTAs should not modify headings (except inserting Received lines), and it can in some cases cause Bcc recipients to be wrongly divulged to non-Bcc recipients. Discouraged, mentioned in RFC 1211.""" . hdr:Protocol_mail hdr:protocolName "mail" ; hdr:specification hdr:RFC2821 . hdr:RFC2821 a hdr:Specification_doc ; = ; hdr:document . hdr:Spec_Palme_Mailext a hdr:Specification_doc ; hdr:document ; hdr:author hdr:Author_JP ; hdr:comment "Specification document unknown" . hdr:Author_Unknown foaf:name "Unknown" ; foaf:homepage . hdr:Author_JP a wn:Person ; foaf:name "Jacob Palme" ; foaf:mbox ; foaf:organization "Stockholm University/KTH" ; foaf:workplacePostal [ foaf:building "1310 Waterside" ; foaf:street1 "Electrum 230" ; foaf:city "Kista" ; foaf:postcode "S-164 40" ; foaf:country "Sweden" ] ; foaf:workplaceTel "+46-8-16 16 67" ; foaf:workplaceFax "+46-8-783 08 29" . #--------+---------+---------+---------+---------+---------+---------+---------+ # # $Log: N3GenMsgRegistryTest1.n3,v $ # Revision 1.11 2002/06/05 15:26:33 graham # Option to trim spaces from formatted values # # Revision 1.10 2002/05/21 20:50:37 graham # Fix error in XML output when comments missing # Allow multiple authors for header field # # Revision 1.9 2002/05/13 08:26:29 graham # Allow homepage in place of mailbox # Label and comments fields now optional # # Revision 1.8 2002/05/10 11:49:19 graham # Cleaned up registry formatting # # Revision 1.7 2002/05/09 16:15:07 graham # Update registry data handling # # Revision 1.6 2002/05/07 10:54:16 graham # Fixes to accept N3 output: options to control default prefix table, accept 'this' as node name (treated as <#>), allow '-' in qnames (not strictly valid N3?) # # Revision 1.5 2002/05/01 11:16:11 graham # Changed use of rdfs:label, rdfs:comment to hdr:label, hdr:comment # # Revision 1.4 2002/04/25 19:00:13 graham # Update CVS keyword fields # # Revision 1.3 2002/04/25 18:53:26 graham # Add copyright and disclaimer notices # # Revision 1.2 2002/04/24 14:36:33 graham # Save edits # # Revision 1.1 2002/04/24 13:02:42 graham # Initial version of N3GenMsgRegistry # #