summaryrefslogtreecommitdiff
path: root/doap.ttl
blob: 4ebfb9dbc488a929e6730e51eb052c810975e2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix :     <http://njw.me.uk/software/simplyread/#>.

:p a doap:Project;
	doap:name "SimplyRead";
	doap:shortdesc "Makes webpages more readable";
	doap:homepage <http://njw.me.uk/software/simplyread/>;
	doap:repository :repo;
	doap:programming-language "ECMAScript";
	doap:license <http://www.gnu.org/licenses/agpl.html>;
	doap:release :v0.1, :v0.2;
	doap:maintainer <http://njw.me.uk/card#i>.

<http://njw.me.uk/card#i> a foaf:Person;
	foaf:name "Nick White";
	foaf:homepage <http://njw.me.uk>.

:repo a doap:GitRepository;
	doap:location <http://git.njw.me.uk/simplyread.git>.

:v0.1 a doap:Version;
	doap:revision "0.1";
	doap:created "2010-10-23";
	doap:file-release <http://njw.me.uk/software/simplyread/simplyread-0.1.tar.bz2>.

:v0.2 a doap:Version;
	doap:revision "0.2";
	doap:created "2010-11-04";
	doap:file-release <http://njw.me.uk/software/simplyread/simplyread-0.2.tar.bz2>,
	                  <http://njw.me.uk/software/simplyread/simplyread-0.2.xpi>.