#############################################################

@prefix :        <http://usefulinc.com/ns/doap#> .
@prefix author:  <http://purl.org/NET/cpan-uri/person/> .
@prefix dbug:    <http://ontologi.es/doap-bugs#> .
@prefix dcs:     <http://ontologi.es/doap-changeset#> .
@prefix dc:      <http://purl.org/dc/terms/> .
@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
@prefix my:      <http://purl.org/NET/cpan-uri/dist/HTML-HTML5-Parser/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix toby:    <http://tobyinkster.co.uk/#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

#############################################################

<>

	dc:title         "Changes for HTML::HTML5::Parser" ;
	dc:description   "Revision history for Perl extension HTML::HTML5::Parser."@en ;
	dc:subject       my:project ;
	dc:creator       toby:i .

#############################################################

my:v_0-00_01

	a               :Version ;
	dc:issued       "2009-12-01"^^xsd:date ;
	:revision       "0.00_01"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.00_01.tar.gz> ;
	rdfs:label      "Developer preview"@en  .
	
my:v_0-01

	a               :Version ;
	dc:issued       "2009-12-03"^^xsd:date ;
	:revision       "0.01"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.01.tar.gz> ;
	rdfs:label      "Original version"@en .

my:v_0-02

	a               :Version ;
	dc:issued       "2009-12-16"^^xsd:date ;
	:revision       "0.02"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.02.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-01 ;
		dcs:item
			[ rdfs:label "Replace Inline::Python encoding detection with weaker, but native Perl HTML::Encoding package."@en ] ,
			[ rdfs:label "Bundle the html2xhtml tool."@en ; a dcs:Addition , dcs:Packaging ]
		] .

my:v_0-03

	a               :Version ;
	dc:issued       "2010-01-15"^^xsd:date ;
	:revision       "0.03"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.03.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-02 ;
		dcs:item
			[ rdfs:label "Module didn't use URI::file properly."@en ; a dcs:Bugfix ; rdfs:comment "Thanks shellac" ] ,
			[ rdfs:label "Upgrade distribution to my new packaging regime (auto-generated changelogs, etc)"@en ; a dcs:Update , dcs:Packaging ] ,
			[ rdfs:label "Copyright 2010."@en ; a dcs:Update , dcs:Documentation ]
		] .

my:v_0-04

	a               :Version ;
	dc:issued       "2010-04-21"^^xsd:date ;
	:revision       "0.04"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.04.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-03 ;
		dcs:item
			[ rdfs:label "Catch up to revision cf2c0df8a6dfb50fee923dfb21b14c83f282ccdc (2010-02-28) upstream."@en ; a dcs:Update ]
		] .

my:v_0-100

	a               :Version ;
	dc:issued       "2010-06-23"^^xsd:date ;
	:revision       "0.100"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.100.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-04 ;
		dcs:item
			[ rdfs:label "Minor bugfixes."@en ; a dcs:Bugfix ]
		] .

my:v_0-101

	a               :Version ;
	dc:issued       "2010-06-30"^^xsd:date ;
	:revision       "0.101"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.101.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-100 ;
		dcs:item
			[ rdfs:label "UTF-8 fix."@en ; a dcs:Bugfix ; dcs:fixes [ rdfs:label "Wide characters in DOM tree."@en ; dbug:reporter author:gwilliams ] ]
		] .

my:v_0-102

	a               :Version ;
	dc:issued       "2011-01-19"^^xsd:date ;
	:revision       "0.102"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.102.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-101 ;
		dcs:item
			[ rdfs:label "Fix source_line method."@en ; a dcs:Bugfix ] ,
			[ rdfs:label "Catch up to revision f2c921a886ab0b3dfb8d21b82525e98a4a921ad4 (2010-10-11) upstream."@en ; a dcs:Update ] ,
			[ rdfs:label "Allow <object> element to appear in <head> if document has an HTML4 doctype. This is a willful violation of the HTML5 parsing algorithm. (The <object> may have <param> elements as children, as well as any children that would normally be allowed in the <head> of the document, such as <meta>; any other content is treated as the beginning of the <body>, and thus closes <object> and <head>. That's slightly looser than the HTML 4 spec which says only <param> should be used, but stricter than the HTML 4 DTD which allows pretty much anything in there!)"@en ; a dcs:Addition ] ,
			[ rdfs:label "Support <figcaption> element."@en ; a dcs:Addition ] ,
			[ rdfs:label "Support <summary> element."@en ; a dcs:Addition ]
		] .

my:v_0-103

	a               :Version ;
	dc:issued       "2011-02-09"^^xsd:date ;
	:revision       "0.103"^^xsd:string ;
	:file-release   <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/HTML-HTML5-Parser-0.103.tar.gz> ;
	dcs:changeset [
		dcs:versus my:v_0-101 ;
		dcs:item
			[ rdfs:label "Copyright 2011."@en ; a dcs:Update , dcs:Documentation ] ,
			[ rdfs:label "TagSoupParser.pm called a method that is renamed between this distribution and upstream using its upstream name."@en ; a dcs:Bugfix ]
		] .

#############################################################

my:project

	a               :Project ;
	:name           "HTML-HTML5-Parser" ;
	:shortdesc      "parse HTML reliably"@en ;
	:programming-language  "Perl" ;
	:homepage       <http://search.cpan.org/dist/HTML-HTML5-Parser/> ;
	:download-page  <http://search.cpan.org/dist/HTML-HTML5-Parser/> ;
	:bug-database   <http://rt.cpan.org/Dist/Display.html?Queue=HTML-HTML5-Parser> ;
	:repository     [ a :SVNRepository ; :browse <http://goddamn.co.uk/viewvc/perlmods/HTML-HTML5-Parser/> ] ;
	:maintainer     toby:i ;
	:developer      toby:i , my:dev-wakaba ;
	:documenter     toby:i ;
	:tester         toby:i ;
	:created        "2009-11-26"^^xsd:date ;
	:license        <http://dev.perl.org/licenses/> ;
	:release        my:v_0-00_01 , my:v_0-01 , my:v_0-02 , my:v_0-03 , my:v_0-04 ,
	                my:v_0-100 , my:v_0-101 , my:v_0-102 , my:v_0-103 .

#############################################################

toby:i

	a               foaf:Person ;
	foaf:name       "Toby Inkster" ;
	foaf:homepage   <http://tobyinkster.co.uk/> ;
	foaf:page       <http://search.cpan.org/~tobyink/> ;
	foaf:mbox       <mailto:tobyink@cpan.org> ;
	<http://www.w3.org/2002/07/owl#sameAs> author:tobyink .

my:dev-wakaba

	a               foaf:Person ;
	foaf:name       "Wakaba" ;
	foaf:page       <http://suika.fam.cx/>.

#############################################################