[librdf-rdfa-generator-perl] 30/64: update build system

Jonas Smedegaard dr at jones.dk
Sat Dec 23 12:22:53 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to annotated tag debian/0.106-1
in repository librdf-rdfa-generator-perl.

commit 99f3b63d9e4c01b5f0eed992a7d0665dec7cdca9
Author: Toby Inkster <mail at tobyinkster.co.uk>
Date:   Wed Dec 12 16:12:32 2012 +0000

    update build system
    
    --HG--
    branch : RDF-RDFa-Generator
    rename : example1-out.html => examples/example1-out.html
    rename : example1.css => examples/example1.css
    rename : example1.pl => examples/example1.pl
---
 Changes                                         |  45 ------
 Changes.ttl                                     | 148 ------------------
 Changes.xml                                     | 192 ------------------------
 MANIFEST.SKIP                                   |  10 --
 META.yml                                        |  45 ------
 Makefile.PL                                     |  44 +-----
 README                                          | 115 --------------
 example1-out.html => examples/example1-out.html |   0
 example1.css => examples/example1.css           |   0
 example1.pl => examples/example1.pl             |   0
 meta/changes.pret                               |  51 +++++++
 meta/doap.pret                                  |  26 ++++
 meta/makefile.pret                              |  14 ++
 test.html                                       |   0
 14 files changed, 92 insertions(+), 598 deletions(-)

diff --git a/Changes b/Changes
deleted file mode 100644
index fc86fd5..0000000
--- a/Changes
+++ /dev/null
@@ -1,45 +0,0 @@
-############################################################################
-## Changes #################################################################
-############################################################################
-
-RDF-RDFa-Generator
-==================
-
-Created:      2010-05-05
-Home page:    <http://search.cpan.org/dist/RDF-RDFa-Generator/>
-Bug tracker:  <http://rt.cpan.org/Dist/Display.html?Queue=RDF-RDFa-Generator>
-Maintainer:   Toby Inkster <mailto:tobyink at cpan.org>
-
-0.102 [2011-07-06]
- - (Bugfix) <meta> element should name @name, not @nane.
- - (Bugfix) Namespaces in HTML::Head and HTML::Hidden.
-
-0.101 [2010-09-06]
- - (Addition) Support 'namespaces' option for the constructor, for
-   compatibility with other Trine serialisers.
- - (Addition) use RDF::Prefixes.
- - (Addition) Icons for a few extra classes.
-
-0.100 [2010-07-25]
- - (Addition) HTML::Pretty now includes cross-links to other resources.
-
-0.05 [2010-05-27]
- - (Bugfix) UTF-8 fixes.
-
-0.04 [2010-05-21]
- - HTML::Hidden and HTML::Pretty now use @about instead of @src to set the
-   subject URI.
- - HTML::Pretty no longer makes 'javascript:' URLs into links.
-
-0.03 [2010-05-19]
- - (Bugfix) HTML::Pretty Fallback to sorting by object now works.
- - (Addition) HTML::Pretty can now force safe HTML (prevents injection
-   attacks).
-
-0.02 [2010-05-18]
- - Using FamFamFam Silk icons.
- - (Addition) HTML::Pretty can now include additional textual notes in the
-   output. This functionality added for RDF::RDFa::Linter.
-
-0.01 [2010-05-09]
-
diff --git a/Changes.ttl b/Changes.ttl
deleted file mode 100644
index 7d2c4a3..0000000
--- a/Changes.ttl
+++ /dev/null
@@ -1,148 +0,0 @@
-#############################################################
-
- at prefix :        <http://usefulinc.com/ns/doap#> .
- at prefix author:  <http://purl.org/NET/cpan-uri/person/> .
- at prefix dbug:    <http://ontologi.es/doap-bugs#> .
- at prefix dcs:     <http://ontologi.es/doap-changeset#> .
- at prefix dc:      <http://purl.org/dc/terms/> .
- at prefix foaf:    <http://xmlns.com/foaf/0.1/> .
- at prefix my:      <http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/> .
- at prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
- at prefix toby:    <http://tobyinkster.co.uk/#> .
- at prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
-
-#############################################################
-
-<>
-
-	dc:title         "Changes" ;
-	dc:description   "Revision history for Perl extension RDF::RDFa::Generator."@en ;
-	dc:subject       my:project ;
-	dc:creator       toby:i .
-
-#############################################################
-
-my:v_0-01
-
-	a               :Version ;
-	dc:issued       "2010-05-09"^^xsd:date ;
-	:revision       "0.01"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.01.tar.gz> ;
-	rdfs:comment    "Original version"@en .
-
-my:v_0-02
-
-	a               :Version ;
-	dc:issued       "2010-05-18"^^xsd:date ;
-	:revision       "0.02"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.02.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-01 ;
-			dcs:item [ rdfs:label "Using FamFamFam Silk icons."@en ] ;
-			dcs:item [ rdfs:label "HTML::Pretty can now include additional textual notes in the output. This functionality added for RDF::RDFa::Linter."@en ; a dcs:Addition ]
-		] .
-
-my:v_0-03
-
-	a               :Version ;
-	dc:issued       "2010-05-19"^^xsd:date ;
-	:revision       "0.03"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.03.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-02 ;
-			dcs:item [ rdfs:label "HTML::Pretty Fallback to sorting by object now works."@en ; a dcs:Bugfix ] ;
-			dcs:item [ rdfs:label "HTML::Pretty can now force safe HTML (prevents injection attacks)."@en ; a dcs:Addition ]
-		] .
-
-my:v_0-04
-
-	a               :Version ;
-	dc:issued       "2010-05-21"^^xsd:date ;
-	:revision       "0.04"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.04.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-03 ;
-			dcs:item [ rdfs:label "HTML::Hidden and HTML::Pretty now use @about instead of @src to set the subject URI."@en ] ;
-			dcs:item [ rdfs:label "HTML::Pretty no longer makes 'javascript:' URLs into links."@en ]
-		] .
-
-my:v_0-05
-
-	a               :Version ;
-	dc:issued       "2010-05-27"^^xsd:date ;
-	:revision       "0.05"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.05.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-04 ;
-			dcs:item [ rdfs:label "UTF-8 fixes."@en ; a dcs:Bugfix ]
-		] .
-
-my:v_0-100
-
-	a               :Version ;
-	dc:issued       "2010-07-25"^^xsd:date ;
-	:revision       "0.100"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.100.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-05 ;
-			dcs:item [ rdfs:label "HTML::Pretty now includes cross-links to other resources."@en ; a dcs:Addition ]
-		] .
-
-my:v_0-101
-
-	a               :Version ;
-	dc:issued       "2010-09-06"^^xsd:date ;
-	:revision       "0.101"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.101.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-100 ;
-			dcs:item [ rdfs:label "use RDF::Prefixes."@en ; a dcs:Addition ] ;
-			dcs:item [ rdfs:label "Support 'namespaces' option for the constructor, for compatibility with other Trine serialisers."@en ; a dcs:Addition ] ;
-			dcs:item [ rdfs:label "Icons for a few extra classes."@en ; a dcs:Addition ] 
-		] .
-
-my:v_0-102
-
-	a               :Version ;
-	dc:issued       "2011-07-06"^^xsd:date ;
-	:revision       "0.102"^^xsd:string ;
-	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.102.tar.gz> ;
-	dcs:changeset [
-			dcs:versus my:v_0-101 ;
-			dcs:item [ rdfs:label "<meta> element should name @name, not @nane."@en ; a dcs:Bugfix ; dcs:fixes [dbug:reporter author:kjetilk] ] ;
-			dcs:item [ rdfs:label "Namespaces in HTML::Head and HTML::Hidden."@en ; a dcs:Bugfix ; dcs:fixes [dbug:reporter author:kjetilk] ] 
-		] .
-
-#############################################################
-
-my:project
-
-	a               :Project ;
-	:name           "RDF-RDFa-Generator" ;
-	:shortdesc      "generate some data in RDFa"@en ;
-	:programming-language  "Perl" ;
-	:homepage       <https://metacpan.org/release/RDF-RDFa-Generator> ;
-	:download-page  <https://metacpan.org/release/RDF-RDFa-Generator> ;
-	:bug-database   <http://rt.cpan.org/Dist/Display.html?Queue=RDF-RDFa-Generator> ;
-	:repository     [ a :SVNRepository ; :browse <http://goddamn.co.uk/svn-web/perlmods/browse/RDF-RDFa-Generator/> ] ;
-	:maintainer     toby:i ;
-	:developer      toby:i ;
-	:documenter     toby:i ;
-	:tester         toby:i ;
-	:created        "2010-05-05"^^xsd:date ;
-	:license        <http://dev.perl.org/licenses/> ;
-	:release        my:v_0-01 , my:v_0-02 , my:v_0-03 , my:v_0-04 , my:v_0-05 ,
-	                my:v_0-100 , my:v_0-101 , my:v_0-102 .
-
-#############################################################
-
-toby:i
-
-	a               foaf:Person ;
-	foaf:name       "Toby Inkster" ;
-	foaf:homepage   <http://tobyinkster.co.uk/> ;
-	foaf:page       <https://metacpan.org/author/TOBYINK> ;
-	foaf:mbox       <mailto:tobyink at cpan.org> ;
-	<http://www.w3.org/2002/07/owl#sameAs> author:tobyink .
-
-#############################################################
diff --git a/Changes.xml b/Changes.xml
deleted file mode 100644
index 24eaa8f..0000000
--- a/Changes.xml
+++ /dev/null
@@ -1,192 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF xmlns:dbug="http://ontologi.es/doap-bugs#" xmlns:dc="http://purl.org/dc/terms/" xmlns:dcs="http://ontologi.es/doap-changeset#" xmlns:doap="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r0">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r1"/>
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r2"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-01"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r1">
-	<rdfs:label xml:lang="en">Using FamFamFam Silk icons.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r10">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Bugfix"/>
-	<rdfs:label xml:lang="en">UTF-8 fixes.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r11">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r12"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-05"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r12">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Addition"/>
-	<rdfs:label xml:lang="en">HTML::Pretty now includes cross-links to other resources.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r13">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r14"/>
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r15"/>
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r16"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-100"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r14">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Addition"/>
-	<rdfs:label xml:lang="en">use RDF::Prefixes.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r15">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Addition"/>
-	<rdfs:label xml:lang="en">Support 'namespaces' option for the constructor, for compatibility with other Trine serialisers.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r16">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Addition"/>
-	<rdfs:label xml:lang="en">Icons for a few extra classes.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r17">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r18"/>
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r20"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-101"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r18">
-	<dcs:fixes rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r19"/>
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Bugfix"/>
-	<rdfs:label xml:lang="en"><meta> element should name @name, not @nane.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r19">
-	<dbug:reporter rdf:resource="http://purl.org/NET/cpan-uri/person/kjetilk"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r2">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Addition"/>
-	<rdfs:label xml:lang="en">HTML::Pretty can now include additional textual notes in the output. This functionality added for RDF::RDFa::Linter.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r20">
-	<dcs:fixes rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r21"/>
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Bugfix"/>
-	<rdfs:label xml:lang="en">Namespaces in HTML::Head and HTML::Hidden.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r21">
-	<dbug:reporter rdf:resource="http://purl.org/NET/cpan-uri/person/kjetilk"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r22">
-	<doap:browse rdf:resource="http://goddamn.co.uk/viewvc/perlmods/RDF-RDFa-Generator/"/>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#SVNRepository"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r3">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r4"/>
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r5"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-02"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r4">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Bugfix"/>
-	<rdfs:label xml:lang="en">HTML::Pretty Fallback to sorting by object now works.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r5">
-	<rdf:type rdf:resource="http://ontologi.es/doap-changeset#Addition"/>
-	<rdfs:label xml:lang="en">HTML::Pretty can now force safe HTML (prevents injection attacks).</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r6">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r7"/>
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r8"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-03"/>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r7">
-	<rdfs:label xml:lang="en">HTML::Hidden and HTML::Pretty now use @about instead of @src to set the subject URI.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r8">
-	<rdfs:label xml:lang="en">HTML::Pretty no longer makes 'javascript:' URLs into links.</rdfs:label>
-</rdf:Description>
-<rdf:Description rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r9">
-	<dcs:item rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r10"/>
-	<dcs:versus rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-04"/>
-</rdf:Description>
-<rdf:Description rdf:about="file:///home/tai/src/perlmods/RDF-RDFa-Generator/Changes.ttl">
-	<dc:creator rdf:resource="http://tobyinkster.co.uk/#i"/>
-	<dc:description xml:lang="en">Revision history for Perl extension RDF::RDFa::Generator.</dc:description>
-	<dc:subject rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/project"/>
-	<dc:title>Changes</dc:title>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/project">
-	<doap:bug-database rdf:resource="http://rt.cpan.org/Dist/Display.html?Queue=RDF-RDFa-Generator"/>
-	<doap:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-05-05</doap:created>
-	<doap:developer rdf:resource="http://tobyinkster.co.uk/#i"/>
-	<doap:documenter rdf:resource="http://tobyinkster.co.uk/#i"/>
-	<doap:download-page rdf:resource="http://search.cpan.org/dist/RDF-RDFa-Generator/"/>
-	<doap:homepage rdf:resource="http://search.cpan.org/dist/RDF-RDFa-Generator/"/>
-	<doap:license rdf:resource="http://dev.perl.org/licenses/"/>
-	<doap:maintainer rdf:resource="http://tobyinkster.co.uk/#i"/>
-	<doap:name>RDF-RDFa-Generator</doap:name>
-	<doap:programming-language>Perl</doap:programming-language>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-01"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-02"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-03"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-04"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-05"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-100"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-101"/>
-	<doap:release rdf:resource="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-102"/>
-	<doap:repository rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r22"/>
-	<doap:shortdesc xml:lang="en">generate some data in RDFa</doap:shortdesc>
-	<doap:tester rdf:resource="http://tobyinkster.co.uk/#i"/>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Project"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-01">
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-05-09</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.01.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-	<rdfs:comment xml:lang="en">Original version</rdfs:comment>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-02">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r0"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-05-18</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.02.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-03">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r3"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-05-19</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.03.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-04">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r6"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-05-21</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.04.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.04</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-05">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r9"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-05-27</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.05.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.05</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-100">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r11"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-07-25</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.100.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.100</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-101">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r13"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-09-06</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.101.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.101</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description rdf:about="http://purl.org/NET/cpan-uri/dist/RDF-RDFa-Generator/v_0-102">
-	<dcs:changeset rdf:nodeID="r7A884604A7F611E0BD1AEA32E2081E58r17"/>
-	<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2011-07-06</dc:issued>
-	<doap:file-release rdf:resource="http://backpan.cpan.org/authors/id/T/TO/TOBYINK/RDF-RDFa-Generator-0.102.tar.gz"/>
-	<doap:revision rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.102</doap:revision>
-	<rdf:type rdf:resource="http://usefulinc.com/ns/doap#Version"/>
-</rdf:Description>
-<rdf:Description xmlns:ns1="http://www.w3.org/2002/07/owl#" rdf:about="http://tobyinkster.co.uk/#i">
-	<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
-	<ns1:sameAs rdf:resource="http://purl.org/NET/cpan-uri/person/tobyink"/>
-	<foaf:homepage rdf:resource="http://tobyinkster.co.uk/"/>
-	<foaf:mbox rdf:resource="mailto:tobyink at cpan.org"/>
-	<foaf:name>Toby Inkster</foaf:name>
-	<foaf:page rdf:resource="http://search.cpan.org/~tobyink/"/>
-</rdf:Description>
-</rdf:RDF>
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
deleted file mode 100644
index 1f3724c..0000000
--- a/MANIFEST.SKIP
+++ /dev/null
@@ -1,10 +0,0 @@
-^MANIFEST.bak$
-^Makefile.old$
-^Makefile$
-^blib/
-^pm_to_blib
-^blibdirs
-\.svn
-^example.*\.pl$
-^[^/]+\.(tar\.gz|tar\.bz2|tgz|tbz2|tbz|zip|tar)$
-^MYMETA.yml
diff --git a/META.yml b/META.yml
deleted file mode 100644
index ee2261c..0000000
--- a/META.yml
+++ /dev/null
@@ -1,45 +0,0 @@
----
-abstract: 'generate some data in RDFa'
-author:
-  - 'Toby Inkster <tobyink at cpan.org>'
-build_requires:
-  ExtUtils::MakeMaker: 6.42
-  Test::More: 0.61
-configure_requires:
-  ExtUtils::MakeMaker: 6.42
-distribution_type: module
-generated_by: 'Module::Install version 1.00'
-keywords:
-  - RDF
-  - RDFa
-  - 'Semantic Web'
-  - Generator
-  - Serializer
-  - Serialiser
-  - Output
-  - Writer
-  - HTML
-  - XHTML
-license: perl
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
-name: RDF-RDFa-Generator
-no_index:
-  directory:
-    - inc
-    - t
-requires:
-  Data::Dumper: 0
-  Icon::FamFamFam::Silk: 0
-  RDF::Prefixes: 0
-  RDF::Trine: 0.112
-  XML::LibXML: 1.60
-  common::sense: 0
-  perl: 5.8.0
-resources:
-  bugtracker: http://rt.cpan.org/Dist/Display.html?Queue=RDF-RDFa-Generator
-  homepage: http://search.cpan.org/dist/RDF-RDFa-Generator/
-  license: http://dev.perl.org/licenses/
-  repository: http://goddamn.co.uk/viewvc/perlmods/RDF-RDFa-Generator/
-version: 0.102
diff --git a/Makefile.PL b/Makefile.PL
index df0c7eb..2e535f2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,43 +1 @@
-use strict;
-use warnings;
-
-use inc::Module::Install;
-
-my $dist = 'RDF-RDFa-Generator';
-my $fn   = "lib/$dist.pm"; $fn =~ s#-#/#g;
-
-name                $dist;
-perl_version_from   $fn;
-version_from        $fn;
-abstract_from       $fn;
-readme_from         $fn;
-author              'Toby Inkster <tobyink at cpan.org>';
-license             'perl';
-
-test_requires       'Test::More' => '0.61';
-
-requires            'common::sense'      => 0;
-requires            'Data::Dumper'       => 0; # don't ask...
-requires            'Icon::FamFamFam::Silk' => 0;
-requires            'RDF::Trine'         => '0.112';
-requires            'RDF::Prefixes'      => 0;
-requires            'XML::LibXML'        => '1.60';
-
-resources(
-	'homepage'   => "https://metacpan.org/release/$dist",
-	'repository' => "http://goddamn.co.uk/svn-web/perlmods/browse/$dist/",
-	'bugtracker' => "http://rt.cpan.org/Dist/Display.html?Queue=$dist",
-	);
-
-keywords 'RDF', 'RDFa', 'Semantic Web', 'Generator', 'Serializer', 'Serialiser', 'Output', 'Writer', 'HTML', 'XHTML';
-	
-write_doap_changes;
-write_doap_changes_xml;
-auto_license;
-auto_manifest;
-
-auto_install;
-WriteAll(
-	'meta' => 1,
-	'sign' => 1,
-	);
+use inc::Module::Package 'RDF:tobyink 0.009';
diff --git a/README b/README
deleted file mode 100644
index ed1aee1..0000000
--- a/README
+++ /dev/null
@@ -1,115 +0,0 @@
-NAME
-    RDF::RDFa::Generator - generate some data in RDFa
-
-DESCRIPTION
-  Constructor
-    "$gen = RDF::RDFa::Generator->new(style => $style, %options)"
-        Creates a new generator object. $style is one of the following
-        case-sensitive strings: 'HTML::Head' (the default), 'HTML::Hidden'
-        or 'HTML::Pretty'. You can also construct an object like this:
-
-          $gen = RDF::RDFa::Generator::HTML::Head->new(%options);
-
-        Options include:
-
-        *   base - the base URL where the output data will be published.
-            This allows in some cases for the generated RDFa to include
-            relative URIs.
-
-        *   data_context - if non-null, a URI (string) which indicates the
-            context (named graph) containing the data to generate RDFa for.
-
-        *   namespaces - a {prefix=>uri} hashref of preferred CURIE
-            prefixes.
-
-        *   ns - a {uri=>prefix} hashref of preferred CURIE prefixes.
-            DEPRECATED - use namespaces instead.
-
-        *   prefix_attr - use the @prefix attribute for CURIE prefixes (RDFa
-            1.1 only). Boolean, defaults to false.
-
-        *   safe_xml_literals - prevents XML literals from injecting
-            arbitrary XHTML into the output. Boolean, defaults to FALSE.
-
-        *   title - assign a <title> element for generated XHTML documents.
-
-        *   version - set generated RDFa version. Valid values are '1.0'
-            (the default) or '1.1'.
-
-  Public Methods
-    "$gen->create_document($model)"
-        Creates a new RDFa file containing triples. $model is an
-        RDF::Trine::Model object providing the triples. Returns an
-        XML::LibXML::Document object suitable for serialising using its
-        "toString" method.
-
-        If you're planning on serving the RDFa with the text/html media
-        type, then it is recommended that you use HTML::HTML5::Writer to
-        serialise the document rather than "toString".
-
-        Can also be called as a class method:
-
-         $document = RDF::RDFa::Generator->create_document($model)
-         # Same as:
-         # $document = RDF::RDFa::Generator->new->create_document($model)
-
-    "$gen->inject_document($document, $model)"
-        Injects an existing document with triples. $document is an
-        XML::LibXML::Document to inject, or a well-formed XML string. $model
-        is an RDF::Trine::Model object providing the triples. Returns an
-        XML::LibXML::Document object suitable for serialising using its
-        "toString" method.
-
-        See "create_document" for information about serving the RDFa with
-        the text/html media type.
-
-        Can also be called as a class method. See "create_document" for
-        details.
-
-    "$gen->nodes($model)"
-        Provides triple-laden XML::LibXML::Elements to be added to a
-        document. $model is an RDF::Trine::Model object providing the
-        triples. If called in list context, returns a list of
-        XML::LibXML::Element objects which can be added to a document;
-        otherwise returns an XML::LibXML::NodeList containing a list of such
-        elements.
-
-        Can also be called as a class method. See "create_document" for
-        details.
-
-        The HTML::Pretty generator can be passed a couple of additional
-        options:
-
-          $gen->nodes($model, notes_heading=>'Additional Info', notes=>\@notes);
-
-        The notes are a list of RDF::RDFa::Generator::HTML::Pretty::Note
-        objects which are added as notes to the end of each subject's data.
-
-    Additionally the methods "serialize_model_to_file",
-    "serialize_model_to_string", "serialize_iterator_to_file" and
-    "serialize_iterator_to_string" are provided for compatibility with the
-    RDF::Trine::Serializer interface.
-
-BUGS
-    Please report any bugs to <http://rt.cpan.org/>.
-
-SEE ALSO
-    HTML::HTML5::Writer, XML::LibXML, RDF::RDFa::Parser, RDF::Trine,
-    RDF::Prefixes.
-
-    <http://www.perlrdf.org/>.
-
-AUTHOR
-    Toby Inkster <tobyink at cpan.org>.
-
-COPYRIGHT AND LICENCE
-    Copyright (C) 2010 by Toby Inkster
-
-    This library is free software; you can redistribute it and/or modify it
-    under the same terms as Perl itself, either Perl version 5.8 or, at your
-    option, any later version of Perl 5 you may have available.
-
-  Icons
-    RDF::RDFa::Generator::HTML::Pretty uses the FamFamFam Silk icons; see
-    <http://famfamfam.com/lab/icons/silk/>.
-
diff --git a/example1-out.html b/examples/example1-out.html
similarity index 100%
rename from example1-out.html
rename to examples/example1-out.html
diff --git a/example1.css b/examples/example1.css
similarity index 100%
rename from example1.css
rename to examples/example1.css
diff --git a/example1.pl b/examples/example1.pl
similarity index 100%
rename from example1.pl
rename to examples/example1.pl
diff --git a/meta/changes.pret b/meta/changes.pret
new file mode 100644
index 0000000..edb5ca6
--- /dev/null
+++ b/meta/changes.pret
@@ -0,0 +1,51 @@
+`RDF-RDFa-Generator 0.01 cpan:TOBYINK`
+	issued   2010-05-09 ;
+	label    "Original version"@en .
+
+`RDF-RDFa-Generator 0.02 cpan:TOBYINK`
+	issued   2010-05-18 ;
+	changeset [
+		item [ label "Using FamFamFam Silk icons."@en ] ;
+		item [ label "HTML::Pretty can now include additional textual notes in the output. This functionality added for RDF::RDFa::Linter."@en ; a dcs:Addition ] ;
+	] .
+
+`RDF-RDFa-Generator 0.03 cpan:TOBYINK`
+	issued   2010-05-19 ;
+	changeset [
+		item [ label "HTML::Pretty Fallback to sorting by object now works."@en ; a dcs:Bugfix ] ;
+		item [ label "HTML::Pretty can now force safe HTML (prevents injection attacks)."@en ; a dcs:Addition ] ;
+	] .
+
+`RDF-RDFa-Generator 0.04 cpan:TOBYINK`
+	issued   2010-05-21 ;
+	changeset [
+		item [ label "HTML::Hidden and HTML::Pretty now use @about instead of @src to set the subject URI."@en ] ;
+		item [ label "HTML::Pretty no longer makes 'javascript:' URLs into links."@en ] ;
+	] .
+
+`RDF-RDFa-Generator 0.05 cpan:TOBYINK`
+	issued   2010-05-27 ;
+	changeset [
+		item [ label "UTF-8 fixes."@en ; a dcs:Bugfix ] ;
+	] .
+
+`RDF-RDFa-Generator 0.100 cpan:TOBYINK`
+	issued   2010-07-25 ;
+	changeset [
+		item [ label "HTML::Pretty now includes cross-links to other resources."@en ; a dcs:Addition ] ;
+	] .
+
+`RDF-RDFa-Generator 0.101 cpan:TOBYINK`
+	issued   2010-09-06 ;
+	changeset [
+		item [ label "use RDF::Prefixes."@en ; a dcs:Addition ] ;
+		item [ label "Support 'namespaces' option for the constructor, for compatibility with other Trine serialisers."@en ; a dcs:Addition ] ;
+		item [ label "Icons for a few extra classes."@en ; a dcs:Addition ] ;
+	] .
+
+`RDF-RDFa-Generator 0.102 cpan:TOBYINK`
+	issued   2011-07-06 ;
+	changeset [
+		item [ label "<meta> element should name @name, not @nane."@en ; a dcs:Bugfix ; dcs:fixes [dbug:reporter cpan:kjetilk] ] ;
+		item [ label "Namespaces in HTML::Head and HTML::Hidden."@en ; a dcs:Bugfix ; dcs:fixes [dbug:reporter cpan:kjetilk] ] ;
+	] .
diff --git a/meta/doap.pret b/meta/doap.pret
new file mode 100644
index 0000000..832a1ac
--- /dev/null
+++ b/meta/doap.pret
@@ -0,0 +1,26 @@
+ at prefix : <http://usefulinc.com/ns/doap#> .
+
+`RDF-RDFa-Generator`
+	:shortdesc      "generate some data in RDFa"@en ;
+	:programming-language  "Perl" ;
+	:homepage       <https://metacpan.org/release/RDF-RDFa-Generator> ;
+	:download-page  <https://metacpan.org/release/RDF-RDFa-Generator> ;
+	:bug-database   <http://rt.cpan.org/Dist/Display.html?Queue=RDF-RDFa-Generator> ;
+	:repository     [ a :HgRepository; :browse <https://bitbucket.org/tobyink/p5-rdf-rdfa-generator> ] ;
+	:maintainer     cpan:TOBYINK ;
+	:developer      cpan:TOBYINK ;
+	:documenter     cpan:TOBYINK ;
+	:tester         cpan:TOBYINK ;
+	:created        2010-05-05 ;
+	:license        <http://dev.perl.org/licenses/> ;
+	:category
+		[ label "RDF" ],
+		[ label "RDFa" ],
+		[ label "Semantic Web" ],
+		[ label "Generator" ],
+		[ label "Serializer" ],
+		[ label "Serialiser" ],
+		[ label "Output" ],
+		[ label "Writer" ],
+		[ label "HTML" ],
+		[ label "XHTML" ] .
diff --git a/meta/makefile.pret b/meta/makefile.pret
new file mode 100644
index 0000000..3f79d40
--- /dev/null
+++ b/meta/makefile.pret
@@ -0,0 +1,14 @@
+# This file provides instructions for packaging.
+
+`RDF-RDFa-Generator`
+	perl_version_from m`RDF::RDFa::Generator`;
+	version_from      m`RDF::RDFa::Generator`;
+	readme_from       m`RDF::RDFa::Generator`;
+	test_requires     p`Test::More 0.61`;
+	requires          p`common::sense`;
+	requires          p`Data::Dumper`;
+	requires          p`Icon::FamFamFam::Silk`;
+	requires          p`RDF::Trine 0.112`;
+	requires          p`RDF::Prefixes`;
+	requires          p`XML::LibXML 1.60`;
+.
diff --git a/test.html b/test.html
deleted file mode 100644
index e69de29..0000000

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/librdf-rdfa-generator-perl.git



More information about the Pkg-perl-cvs-commits mailing list