• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version='1.0' encoding='utf-8'?>
2
3<Project xmlns='http://usefulinc.com/ns/doap#'
4         xmlns:foaf='http://xmlns.com/foaf/0.1/'
5         xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
6         xmlns:gnome='http://api.gnome.org/doap-extensions#'>
7
8  <name xml:lang='en'>gvdb</name>
9  <shortdesc xml:lang='en'>GVariant Database file</shortdesc>
10  <description xml:lang='en'>
11    A simple database file format that stores a mapping from strings to
12    GVariant values in a way that is extremely efficient for lookups.
13
14    The database is written once and can not be modified.
15
16    Included here is reader code and a first-pass implementation of a
17    writer (that does not currently produce particularly optimised
18    output).
19
20    It is intended that this code be used by copy-pasting into your
21    project or by making use of git-merge(1).
22  </description>
23
24  <maintainer>
25    <foaf:Person>
26      <foaf:name>Matthias Clasen</foaf:name>
27      <foaf:mbox rdf:resource="mailto:mclasen@redhat.com"/>
28      <gnome:userid>matthiasc</gnome:userid>
29    </foaf:Person>
30  </maintainer>
31
32  <maintainer>
33    <foaf:Person>
34      <foaf:name>Allison Ryan Lortie</foaf:name>
35      <foaf:mbox rdf:resource="mailto:desrt@desrt.ca"/>
36      <gnome:userid>desrt</gnome:userid>
37    </foaf:Person>
38  </maintainer>
39
40  <maintainer>
41    <foaf:Person>
42      <foaf:name>Philip Withnall</foaf:name>
43      <foaf:mbox rdf:resource="mailto:philip@tecnocode.co.uk"/>
44      <foaf:mbox rdf:resource="mailto:withnall@endlessm.com"/>
45      <gnome:userid>pwithnall</gnome:userid>
46    </foaf:Person>
47  </maintainer>
48
49  <maintainer>
50    <foaf:Person>
51      <foaf:name>Emmanuele Bassi</foaf:name>
52      <foaf:mbox rdf:resource="mailto:ebassi@gnome.org"/>
53      <gnome:userid>ebassi</gnome:userid>
54    </foaf:Person>
55  </maintainer>
56
57</Project>
58