diff options
author | Nick White <git@njw.me.uk> | 2010-10-23 23:53:06 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-10-23 23:53:06 +0100 |
commit | 75645602dd70f079ccf550bb5e90dffc21693429 (patch) | |
tree | 82131524085a56fc9b8ba340c98696c80e062eae /doap.ttl | |
parent | b5fdff68dec57116a092b08a99f1f4504da8881c (diff) |
Update to run in a function, lots of doc additions
- Updated readable to run from one function, so returns work nicely
now, and things are generally cleaner.
- Added a readme
- Added a doap rdf file
- Added webpage generation to the makefile
Diffstat (limited to 'doap.ttl')
-rw-r--r-- | doap.ttl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doap.ttl b/doap.ttl new file mode 100644 index 0000000..09c1fa8 --- /dev/null +++ b/doap.ttl @@ -0,0 +1,25 @@ +@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/alacarte#>. + +: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:file-release <http://njw.me.uk/software/readable/readable-0.1.tar.bz2>. |