root/trunk/doap/examples/redland-doap.rdf

Revision trunk,1, 3.7 kB (checked in by edmundd, 4 years ago)
Line 
1<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2        xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
3        xmlns:foaf="http://xmlns.com/foaf/0.1/"
4        xmlns="http://usefulinc.com/ns/doap#">
5
6<!--
7    Though it is recommended DOAP files start with Project as the document
8    element, they can be full fledged RDF files like this one is.  Just
9    don't expect the validator to work on them.  You are assumed to know
10    what you're doing if you do it like this :)
11-->
12
13<Project>
14        <name>Redland RDF Application Framework</name>
15        <homepage rdf:resource="http://www.redland.opensource.ac.uk/" />
16        <created>2000-06-21</created>
17        <shortdesc xml:lang="en">
18                A library for the Resource Description Framework (RDF) allowing
19                it parsed from XML, stored, queried and
20                manipulated.
21        </shortdesc>
22
23        <description xml:lang="en">
24                Redland is a library that provides a high-level interface for
25                the Resource Description Framework (RDF) allowing the RDF graph
26                to be parsed from XML, stored, queried and manipulated. Redland
27                implements each of the RDF concepts in its own class via an
28                object based API, reflected into the language APIs, currently
29                Java, Perl, PHP, Python, Ruby and Tcl. Several classes
30                providing functionality such as for parsers, storage are built
31                as modules that can be loaded at compile or run-time as
32                required.
33        </description>
34
35        <release>
36                <Version>
37                        <name>stable</name>
38                        <created>2004-02-24</created>
39                        <revision>0.9.16</revision>
40                </Version>
41        </release>
42
43        <mailing-list rdf:resource="http://lists.usefulinc.com/mailman/listinfo/redland-dev" />
44        <mailing-list rdf:resource="http://lists.usefulinc.com/mailman/listinfo/redland-announce" />
45        <mailing-list rdf:resource="http://lists.usefulinc.com/mailman/listinfo/redland-commits" />
46
47        <download-page rdf:resource="http://www.redland.opensource.ac.uk/dist/" />
48        <download-mirror rdf:resource="http://sourceforge.net/projects/librdf/" />
49
50        <maintainer>
51                <foaf:Person>
52                        <foaf:name>Dave Beckett</foaf:name>
53                        <foaf:mbox_sha1sum>970987f991961f2553a1bf2574166fa29befbccb</foaf:mbox_sha1sum>
54                        <rdfs:seeAlso rdf:resource="http://www.ilrt.bris.ac.uk/people/cmdjb/webwho.xrdf" />
55                </foaf:Person>
56        </maintainer>
57
58        <!-- Freshmeat category: Database Engines/Servers -->
59        <category rdf:resource="http://software.freshmeat.net/browse/67/" />
60        <!--   Internet :: WWW/HTTP :: Indexing/Search -->
61        <category rdf:resource="http://software.freshmeat.net/browse/93/" />
62        <!--  Software Development :: Libraries -->
63        <category rdf:resource="http://software.freshmeat.net/browse/809/" />
64        <!--  Software Development :: Libraries ::  Application Frameworks -->
65        <category rdf:resource="http://software.freshmeat.net/browse/810/" />
66        <!--  Text Processing :: Markup :: XML -->
67        <category rdf:resource="http://software.freshmeat.net/browse/868/" />
68
69        <!-- Sourceforge category: -->
70        <category rdf:resource="http://sourceforge.net/softwaremap/trove_list.php?form_cat=237" />
71
72        <!-- Licensing details -->
73        <license rdf:resource="http://usefulinc.com/doap/licenses/gpl" />
74        <license rdf:resource="http://usefulinc.com/doap/licenses/lgpl" />
75        <license rdf:resource="http://usefulinc.com/doap/licenses/mpl" />
76
77        <!-- source repository -->
78        <repository>
79                <CVSRepository>
80                        <anon-root>:pserver:anonymous@cvs.ilrt.org:2401/cvsroot</anon-root>
81                        <module>redland</module>
82                        <browse rdf:resource="http://cvs.ilrt.org/cvsweb/redland/librdf/" />
83                </CVSRepository>
84        </repository>
85
86</Project>
87
88<!--
89     optional administravia:
90     authoring tools can add more here if they'd like.
91 -->
92<rdf:Description rdf:about="">
93        <foaf:maker>
94                <foaf:Person>
95                        <foaf:name>Edd Dumbill</foaf:name>
96                        <foaf:mbox rdf:resource="mailto:edd@usefulinc.com" />
97                </foaf:Person>
98        </foaf:maker>
99</rdf:Description>
100
101
102</rdf:RDF>
Note: See TracBrowser for help on using the browser.