The Sandbox

Are new pages FilteredFirst? or not and is ovPostmaster or ovPostMaster a link?

hi

Are we sanitized: here?

This is SVG inline which will probably not work since XHTML is not the set return type.

This however should since it is just an embed thing

X=\sum_{n=1}^kx_n
@prefix : <#> . 
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix todo: <http://eg.org/todo#> .
@prefix openid: <http://eg.org/openid/todo#> .

<> a foaf:PersonalProfileDocument;
   foaf:primaryTopic :juliette ;
   openid:server <https://aol.com/openid/service>; .# see The Openid Sequence Diagram .

:juliette a foaf:Person;
   foaf:name "Juliette";
   foaf:openid <>;
   foaf:blog </blog>;    
   rdfs:seeAlso <https://juliette.net/protected/location>; 
   foaf:knows <http://bblfish.net/people/henry/card#me>,
              <http://www.w3.org/People/Berners-Lee/card#i> .

<https://juliette.net/protected/location> a todo:LocationDocument .
With just an Object tag:
With an Object and embed tag:
With just an embed tag:

This is just a page to practice and learn WikiFormatting.

Go ahead, edit it freely. Macros available

wiki export <page> [file]
	-- Export wiki page to file or stdout

ibm = Company.get_by(symbol = 'IBM')
sun = Company.get_by(symbol = 'SUNW')

## add another descriptor on the fly
Company.industry = rdflibSingle(ov.yindustry,'industry')

## add an attribute (to the database)
sun.industry = 'Computer stuff'
## delete an attribute (from the database)
del ibm.industry
@prefix fresnel:    <http://www.w3.org/2004/09/fresnel#> .
@prefix rdf:        <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:       <http://www.w3.org/2000/01/rdf-schema#> .
@prefix bib:        <http://purl.org/net/biblio#>.
@prefix dc:         <http://purl.org/dc/elements/1.1/>.
@prefix foaf:       <http://xmlns.com/foaf/0.1/>.
@prefix prism:      <http://prismstandard.org/namespaces/1.2/basic/>.
@prefix vcard:      <http://nwalsh.com/rdf/vCard#>.
@prefix v:          <http://www.w3.org/2006/vcard/ns#> . 
@prefix z:          <http://www.zotero.org/namespaces/export#>.
@prefix con:        <http://www.w3.org/2000/10/swap/pim/contact#> .
@prefix iso3166:    <http://www.daml.org/2001/09/countries/iso-3166-ont#> .
@prefix ka:         <http://www.krameraerotek.com/schema/2007/12/22/>.
@prefix :           <#> .


# Basic lenses for Bibliographic types. Properties are listed in the approximate
# order they show up in a bibliography


# Book lens and format info
:bookLens a fresnel:Lens ;
        fresnel:purpose fresnel:defaultLens ;
        fresnel:classLensDomain bib:Book ;
        fresnel:classLensDomain bib:Report ;
        fresnel:showProperties(
            [fresnel:property bib:authors;
            fresnel:sublens :authorsListSubLens]
                dc:title
                [fresnel:property dc:publisher ; 
             fresnel:sublens :publisherSubLens ]
            dc:date bib:pages z:itemType 
            fresnel:allProperties);
        fresnel:hideProperties ( rdf:type rdfs:label );
        fresnel:group ka:bib .


# Article lens and format info
:articleLens a fresnel:Lens ;
        fresnel:purpose fresnel:defaultLens ;
        fresnel:classLensDomain bib:Article ;
        fresnel:showProperties(
            [fresnel:property bib:authors;
            fresnel:sublens :authorsListSubLens]
                dc:title
                [fresnel:property dc:publisher ; 
             fresnel:sublens :publisherSubLens ]
            dc:date bib:pages z:itemType 
            fresnel:allProperties);
        fresnel:hideProperties ( rdf:type rdfs:label );
        fresnel:group ka:bib .

# Proceedings lens and format info (article from a conference)
:proceedingsLens a fresnel:Lens ;
        fresnel:purpose fresnel:defaultLens ;
        fresnel:classLensDomain bib:Proceedings ;
        fresnel:showProperties(
            [fresnel:property bib:authors;
            fresnel:sublens :authorsListSubLens]
                dc:title
                bib:presentedAt     # default label lens should work???
                [fresnel:property dc:publisher ; 
             fresnel:sublens :publisherSubLens ]
            dc:date bib:pages z:itemType 
            fresnel:allProperties);
        fresnel:hideProperties ( rdf:type rdfs:label );
        fresnel:group ka:bib .



# SubLenses for authors pubishers and such

:authorsListSubLens rdf:type fresnel:Lens ;
               fresnel:classLensDomain rdf:Seq ;
               fresnel:showProperties ([fresnel:property fresnel:member;
                                        fresnel:sublens :authorPersonSubLens]) ;
               fresnel:group ka:bib.
               
:authorPersonSubLens rdf:type fresnel:Lens ;
               fresnel:classLensDomain foaf:Person ;
               fresnel:showProperties (foaf:surname foaf:givenname) ;
               fresnel:group ka:bib.


:publisherSubLens rdf:type fresnel:Lens ;
                fresnel:classLensDomain foaf:Organization ;
                fresnel:showProperties (foaf:name [fresnel:property vcard:adr; fresnel:sublens :publisherAdrSubLens]) ;
                fresnel:group ka:bib .

:publisherAdrSubLens rdf:type fresnel:Lens ;
                fresnel:classLensDomain vcard:Address ;
                fresnel:showProperties (vcard:locality) ;
                fresnel:group ka:bib .

# The Lenses above here tell us what to display
##############################################################################
# the Formats below here tell us a little about how they should look
:addrFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain vcard:adr ;
                        fresnel:propertyStyle "v_Address"^^fresnel:styleClass ;
                        fresnel:label "Address: " ;
                        fresnel:group ka:bib .

:authorsFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain bib:authors;
                        fresnel:label "Authors:";
                        fresnel:group ka:bib .

:lnameFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain foaf:surname;
                        fresnel:label "Last Name:";
                        fresnel:group ka:bib .

:fnameFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain foaf:givenname;
                        fresnel:label "First Name:";
                        fresnel:group ka:bib .

:presentedAtFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain bib:presentedAt ;
                        fresnel:label "Presented At: " ;
                        fresnel:group ka:bib .

:pagesFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain bib:pages ;
                        fresnel:label "Pages: " ;
                        fresnel:group ka:bib .

:bibItemTypeFormat a fresnel:Format ;
                        fresnel:propertyFormatDomain z:itemType ;
                        fresnel:label "Item Type: " ;
                        fresnel:group ka:bib .

:titleFormat rdf:type fresnel:Format ;
                        fresnel:propertyFormatDomain dc:title ;
                        fresnel:label "Title: " ;
                        fresnel:group ka:bib .

:dcDateFormat rdf:type fresnel:Format ;
                        fresnel:propertyFormatDomain dc:date ;
                        fresnel:label "Published: " ;
                        fresnel:group ka:bib .

:faxFormat rdf:type fresnel:Format ;
                        fresnel:propertyFormatDomain vcard:fax ;
                        fresnel:label "Fax: " ;
                        fresnel:group ka:bib .


:companyLabelLens rdf:type fresnel:Lens ;
                fresnel:purpose fresnel:labelLens ;
                fresnel:classLensDomain ka:Company ;
                fresnel:showProperties
                 (
                        ka:companyName
                 ) ;
                fresnel:group ka:bib .

:companyNameFormat rdf:type fresnel:Format ;
                fresnel:propertyFormatDomain ka:name ;
                fresnel:propertyFormatDomain ka:companyName ;
                fresnel:propertyStyle "foaf-name" ;
                fresnel:label "Company: " ;
                fresnel:group ka:bib .

:companyDescriptionFormat rdf:type fresnel:Format ;
                fresnel:propertyFormatDomain ka:stockDescription ;
                fresnel:label "Business Description: " ;
                fresnel:group ka:bib .

:countryLabelLens rdf:type fresnel:Lens ;
                fresnel:purpose fresnel:labelLens ;
                fresnel:classLensDomain iso3166:Country ;
                fresnel:showProperties
                 (
                        iso3166:code
                 ) ;
                fresnel:group ka:bib .


:nolabel rdf:type fresnel:Format ;
        fresnel:propertyFormatDomain ka:EquityClass;
        fresnel:propertyFormatDomain fresnel:member;
        fresnel:propertyFormatDomain  vcard:street-address;
        fresnel:propertyFormatDomain  vcard:locality;
        fresnel:propertyFormatDomain  vcard:region;
        fresnel:propertyFormatDomain  vcard:postal-code;
        fresnel:label fresnel:none ;        
        fresnel:group ka:bib.