blob: f01a3ce39796dca27f3891a5fcb8d9207fd0149d (
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
|
@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/readable/#>.
:p a doap:Project;
doap:name "Readable";
doap:shortdesc "Makes webpages more readable";
doap:homepage <http://njw.me.uk/software/readable/>;
doap:repository :repo;
doap:programming-language "ECMAScript";
doap:license <http://www.gnu.org/licenses/agpl.html>;
doap:release :v0.1;
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/readable.git>.
:v0.1 a doap:Version;
doap:revision "0.1";
doap:created "2010-10-23";
doap:file-release <http://njw.me.uk/software/readable/readable-0.1.tar.bz2>.
|