├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── ChangeLog.1 ├── ChangeLog.10 ├── ChangeLog.11 ├── ChangeLog.12 ├── ChangeLog.2 ├── ChangeLog.3 ├── ChangeLog.4 ├── ChangeLog.5 ├── ChangeLog.6 ├── ChangeLog.7 ├── ChangeLog.8 ├── ChangeLog.9 ├── FAQS.html ├── HACKING.md ├── INSTALL.html ├── LICENSE-2.0.txt ├── LICENSE.html ├── Makefile.am ├── NEWS.html ├── NOTICE ├── README.html ├── RELEASE.html ├── Redland.i ├── TODO.html ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am ├── dc.nt ├── dc.rdf └── dc.ttl ├── demos ├── .gitignore ├── Makefile.am ├── demo.pl ├── ntriples.pl ├── parser-tests.pl └── rss-show.pl ├── docs ├── .gitignore ├── Makefile.am ├── README.html ├── overview.xfig ├── redland-changes.tsv ├── redland-chapter-intro.xml ├── redland-chapter-objects.xml ├── redland-chapter-storage-modules.xml ├── redland-docs.xml ├── redland-overrides.txt ├── redland-sections.txt ├── redland.pod ├── redland.types ├── storage.html ├── stylesheet.css ├── tmpl │ ├── .gitignore │ ├── concepts.sgml │ ├── digest.sgml │ ├── files.sgml │ ├── general.sgml │ ├── hash.sgml │ ├── heuristics.sgml │ ├── iterator.sgml │ ├── list.sgml │ ├── log.sgml │ ├── model.sgml │ ├── node.sgml │ ├── parser.sgml │ ├── query.sgml │ ├── query_results.sgml │ ├── redland-unused.sgml │ ├── serializer.sgml │ ├── statement.sgml │ ├── storage.sgml │ ├── stream.sgml │ ├── unicode.sgml │ ├── unused.sgml │ ├── uri.sgml │ └── world.sgml └── version.xml.in ├── examples ├── .gitignore ├── Makefile.am ├── example1.c ├── example2.c ├── example3.c ├── example4.c ├── example5.c ├── example6.c ├── example7.c ├── example8.c ├── redland_dbus.c ├── rss2atom.c └── rss2ical.c ├── redland-config.1 ├── redland-config.in ├── redland-src-config.in ├── redland.pc.in ├── redland.rdf.in ├── redland.sln ├── scripts ├── Makefile.am ├── fix-gtkdoc-header.pl ├── install-raptor.sh ├── install-rasqal.sh ├── markdown-to-html.pl ├── process-changes.pl └── touch-mtime.pl ├── src ├── .gitignore ├── Makefile.am ├── librdf.h.in ├── memcmp.c ├── mysql-v1.ttl ├── mysql-v2.ttl ├── rdf_concepts.c ├── rdf_concepts.h ├── rdf_concepts_internal.h ├── rdf_digest.c ├── rdf_digest.h ├── rdf_digest_internal.h ├── rdf_digest_md5.c ├── rdf_digest_sha1.c ├── rdf_files.c ├── rdf_files.h ├── rdf_hash.c ├── rdf_hash.h ├── rdf_hash_bdb.c ├── rdf_hash_cursor.c ├── rdf_hash_internal.h ├── rdf_hash_memory.c ├── rdf_heuristics.c ├── rdf_heuristics.h ├── rdf_init.c ├── rdf_init.h ├── rdf_init_internal.h ├── rdf_internal.h ├── rdf_iterator.c ├── rdf_iterator.h ├── rdf_iterator_internal.h ├── rdf_list.c ├── rdf_list.h ├── rdf_list_internal.h ├── rdf_log.c ├── rdf_log.h ├── rdf_log_internal.h ├── rdf_model.c ├── rdf_model.h ├── rdf_model_internal.h ├── rdf_model_storage.c ├── rdf_node.c ├── rdf_node.h ├── rdf_node_common.c ├── rdf_node_internal.h ├── rdf_parser.c ├── rdf_parser.h ├── rdf_parser_internal.h ├── rdf_parser_raptor.c ├── rdf_query.c ├── rdf_query.h ├── rdf_query_internal.h ├── rdf_query_rasqal.c ├── rdf_query_results.c ├── rdf_query_virtuoso.c ├── rdf_raptor.c ├── rdf_raptor.h ├── rdf_raptor_internal.h ├── rdf_serializer.c ├── rdf_serializer.h ├── rdf_serializer_internal.h ├── rdf_serializer_raptor.c ├── rdf_statement.c ├── rdf_statement.h ├── rdf_statement_common.c ├── rdf_statement_internal.h ├── rdf_storage.c ├── rdf_storage.h ├── rdf_storage_file.c ├── rdf_storage_hashes.c ├── rdf_storage_internal.h ├── rdf_storage_list.c ├── rdf_storage_module.h ├── rdf_storage_mysql.c ├── rdf_storage_postgresql.c ├── rdf_storage_sql.c ├── rdf_storage_sql_test.c ├── rdf_storage_sqlite.c ├── rdf_storage_trees.c ├── rdf_storage_tstore.c ├── rdf_storage_virtuoso.c ├── rdf_storage_virtuoso_internal.h ├── rdf_stream.c ├── rdf_stream.h ├── rdf_stream_internal.h ├── rdf_types.h ├── rdf_uri.c ├── rdf_uri.h ├── rdf_uri_internal.h ├── rdf_utf8.c ├── rdf_utf8.h ├── redland.h ├── redland.spec.in ├── win32 │ ├── Makefile.am │ ├── README.txt │ ├── librdf.vcproj │ └── msvc.def └── win32_rdf_config.h.in └── utils ├── .gitignore ├── Makefile.am ├── db_upgrade.c ├── fix-groff-xhtml ├── getopt.c ├── rdf-tree.c ├── rdfproc.1 ├── rdfproc.c ├── rdfproc_getopt.h ├── redland-db-upgrade.1 └── redland-virtuoso-test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.1 -------------------------------------------------------------------------------- /ChangeLog.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.10 -------------------------------------------------------------------------------- /ChangeLog.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.11 -------------------------------------------------------------------------------- /ChangeLog.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.12 -------------------------------------------------------------------------------- /ChangeLog.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.2 -------------------------------------------------------------------------------- /ChangeLog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.3 -------------------------------------------------------------------------------- /ChangeLog.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.4 -------------------------------------------------------------------------------- /ChangeLog.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.5 -------------------------------------------------------------------------------- /ChangeLog.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.6 -------------------------------------------------------------------------------- /ChangeLog.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.7 -------------------------------------------------------------------------------- /ChangeLog.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.8 -------------------------------------------------------------------------------- /ChangeLog.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/ChangeLog.9 -------------------------------------------------------------------------------- /FAQS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/FAQS.html -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/HACKING.md -------------------------------------------------------------------------------- /INSTALL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/INSTALL.html -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/LICENSE.html -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/NEWS.html -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/NOTICE -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/README.html -------------------------------------------------------------------------------- /RELEASE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/RELEASE.html -------------------------------------------------------------------------------- /Redland.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/Redland.i -------------------------------------------------------------------------------- /TODO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/TODO.html -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- 1 | dnl empty 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/dc.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/data/dc.nt -------------------------------------------------------------------------------- /data/dc.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/data/dc.rdf -------------------------------------------------------------------------------- /data/dc.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/data/dc.ttl -------------------------------------------------------------------------------- /demos/.gitignore: -------------------------------------------------------------------------------- 1 | TAGS 2 | db 3 | run* 4 | -------------------------------------------------------------------------------- /demos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/demos/Makefile.am -------------------------------------------------------------------------------- /demos/demo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/demos/demo.pl -------------------------------------------------------------------------------- /demos/ntriples.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/demos/ntriples.pl -------------------------------------------------------------------------------- /demos/parser-tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/demos/parser-tests.pl -------------------------------------------------------------------------------- /demos/rss-show.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/demos/rss-show.pl -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/README.html -------------------------------------------------------------------------------- /docs/overview.xfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/overview.xfig -------------------------------------------------------------------------------- /docs/redland-changes.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-changes.tsv -------------------------------------------------------------------------------- /docs/redland-chapter-intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-chapter-intro.xml -------------------------------------------------------------------------------- /docs/redland-chapter-objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-chapter-objects.xml -------------------------------------------------------------------------------- /docs/redland-chapter-storage-modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-chapter-storage-modules.xml -------------------------------------------------------------------------------- /docs/redland-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-docs.xml -------------------------------------------------------------------------------- /docs/redland-overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-overrides.txt -------------------------------------------------------------------------------- /docs/redland-sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland-sections.txt -------------------------------------------------------------------------------- /docs/redland.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/redland.pod -------------------------------------------------------------------------------- /docs/redland.types: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/storage.html -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/tmpl/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | -------------------------------------------------------------------------------- /docs/tmpl/concepts.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/concepts.sgml -------------------------------------------------------------------------------- /docs/tmpl/digest.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/digest.sgml -------------------------------------------------------------------------------- /docs/tmpl/files.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/files.sgml -------------------------------------------------------------------------------- /docs/tmpl/general.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/general.sgml -------------------------------------------------------------------------------- /docs/tmpl/hash.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/hash.sgml -------------------------------------------------------------------------------- /docs/tmpl/heuristics.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/heuristics.sgml -------------------------------------------------------------------------------- /docs/tmpl/iterator.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/iterator.sgml -------------------------------------------------------------------------------- /docs/tmpl/list.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/list.sgml -------------------------------------------------------------------------------- /docs/tmpl/log.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/log.sgml -------------------------------------------------------------------------------- /docs/tmpl/model.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/model.sgml -------------------------------------------------------------------------------- /docs/tmpl/node.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/node.sgml -------------------------------------------------------------------------------- /docs/tmpl/parser.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/parser.sgml -------------------------------------------------------------------------------- /docs/tmpl/query.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/query.sgml -------------------------------------------------------------------------------- /docs/tmpl/query_results.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/query_results.sgml -------------------------------------------------------------------------------- /docs/tmpl/redland-unused.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/redland-unused.sgml -------------------------------------------------------------------------------- /docs/tmpl/serializer.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/serializer.sgml -------------------------------------------------------------------------------- /docs/tmpl/statement.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/statement.sgml -------------------------------------------------------------------------------- /docs/tmpl/storage.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/storage.sgml -------------------------------------------------------------------------------- /docs/tmpl/stream.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/stream.sgml -------------------------------------------------------------------------------- /docs/tmpl/unicode.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/unicode.sgml -------------------------------------------------------------------------------- /docs/tmpl/unused.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/unused.sgml -------------------------------------------------------------------------------- /docs/tmpl/uri.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/uri.sgml -------------------------------------------------------------------------------- /docs/tmpl/world.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/docs/tmpl/world.sgml -------------------------------------------------------------------------------- /docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | *.lo 2 | *.o 3 | .deps 4 | .libs 5 | TAGS 6 | example? 7 | run* 8 | -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example1.c -------------------------------------------------------------------------------- /examples/example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example2.c -------------------------------------------------------------------------------- /examples/example3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example3.c -------------------------------------------------------------------------------- /examples/example4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example4.c -------------------------------------------------------------------------------- /examples/example5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example5.c -------------------------------------------------------------------------------- /examples/example6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example6.c -------------------------------------------------------------------------------- /examples/example7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example7.c -------------------------------------------------------------------------------- /examples/example8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/example8.c -------------------------------------------------------------------------------- /examples/redland_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/redland_dbus.c -------------------------------------------------------------------------------- /examples/rss2atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/rss2atom.c -------------------------------------------------------------------------------- /examples/rss2ical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/examples/rss2ical.c -------------------------------------------------------------------------------- /redland-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/redland-config.1 -------------------------------------------------------------------------------- /redland-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/redland-config.in -------------------------------------------------------------------------------- /redland-src-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/redland-src-config.in -------------------------------------------------------------------------------- /redland.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/redland.pc.in -------------------------------------------------------------------------------- /redland.rdf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/redland.rdf.in -------------------------------------------------------------------------------- /redland.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/redland.sln -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/fix-gtkdoc-header.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/fix-gtkdoc-header.pl -------------------------------------------------------------------------------- /scripts/install-raptor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/install-raptor.sh -------------------------------------------------------------------------------- /scripts/install-rasqal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/install-rasqal.sh -------------------------------------------------------------------------------- /scripts/markdown-to-html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/markdown-to-html.pl -------------------------------------------------------------------------------- /scripts/process-changes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/process-changes.pl -------------------------------------------------------------------------------- /scripts/touch-mtime.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/scripts/touch-mtime.pl -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/librdf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/librdf.h.in -------------------------------------------------------------------------------- /src/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/memcmp.c -------------------------------------------------------------------------------- /src/mysql-v1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/mysql-v1.ttl -------------------------------------------------------------------------------- /src/mysql-v2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/mysql-v2.ttl -------------------------------------------------------------------------------- /src/rdf_concepts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_concepts.c -------------------------------------------------------------------------------- /src/rdf_concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_concepts.h -------------------------------------------------------------------------------- /src/rdf_concepts_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_concepts_internal.h -------------------------------------------------------------------------------- /src/rdf_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_digest.c -------------------------------------------------------------------------------- /src/rdf_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_digest.h -------------------------------------------------------------------------------- /src/rdf_digest_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_digest_internal.h -------------------------------------------------------------------------------- /src/rdf_digest_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_digest_md5.c -------------------------------------------------------------------------------- /src/rdf_digest_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_digest_sha1.c -------------------------------------------------------------------------------- /src/rdf_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_files.c -------------------------------------------------------------------------------- /src/rdf_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_files.h -------------------------------------------------------------------------------- /src/rdf_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_hash.c -------------------------------------------------------------------------------- /src/rdf_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_hash.h -------------------------------------------------------------------------------- /src/rdf_hash_bdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_hash_bdb.c -------------------------------------------------------------------------------- /src/rdf_hash_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_hash_cursor.c -------------------------------------------------------------------------------- /src/rdf_hash_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_hash_internal.h -------------------------------------------------------------------------------- /src/rdf_hash_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_hash_memory.c -------------------------------------------------------------------------------- /src/rdf_heuristics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_heuristics.c -------------------------------------------------------------------------------- /src/rdf_heuristics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_heuristics.h -------------------------------------------------------------------------------- /src/rdf_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_init.c -------------------------------------------------------------------------------- /src/rdf_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_init.h -------------------------------------------------------------------------------- /src/rdf_init_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_init_internal.h -------------------------------------------------------------------------------- /src/rdf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_internal.h -------------------------------------------------------------------------------- /src/rdf_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_iterator.c -------------------------------------------------------------------------------- /src/rdf_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_iterator.h -------------------------------------------------------------------------------- /src/rdf_iterator_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_iterator_internal.h -------------------------------------------------------------------------------- /src/rdf_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_list.c -------------------------------------------------------------------------------- /src/rdf_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_list.h -------------------------------------------------------------------------------- /src/rdf_list_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_list_internal.h -------------------------------------------------------------------------------- /src/rdf_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_log.c -------------------------------------------------------------------------------- /src/rdf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_log.h -------------------------------------------------------------------------------- /src/rdf_log_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_log_internal.h -------------------------------------------------------------------------------- /src/rdf_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_model.c -------------------------------------------------------------------------------- /src/rdf_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_model.h -------------------------------------------------------------------------------- /src/rdf_model_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_model_internal.h -------------------------------------------------------------------------------- /src/rdf_model_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_model_storage.c -------------------------------------------------------------------------------- /src/rdf_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_node.c -------------------------------------------------------------------------------- /src/rdf_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_node.h -------------------------------------------------------------------------------- /src/rdf_node_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_node_common.c -------------------------------------------------------------------------------- /src/rdf_node_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_node_internal.h -------------------------------------------------------------------------------- /src/rdf_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_parser.c -------------------------------------------------------------------------------- /src/rdf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_parser.h -------------------------------------------------------------------------------- /src/rdf_parser_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_parser_internal.h -------------------------------------------------------------------------------- /src/rdf_parser_raptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_parser_raptor.c -------------------------------------------------------------------------------- /src/rdf_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_query.c -------------------------------------------------------------------------------- /src/rdf_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_query.h -------------------------------------------------------------------------------- /src/rdf_query_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_query_internal.h -------------------------------------------------------------------------------- /src/rdf_query_rasqal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_query_rasqal.c -------------------------------------------------------------------------------- /src/rdf_query_results.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_query_results.c -------------------------------------------------------------------------------- /src/rdf_query_virtuoso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_query_virtuoso.c -------------------------------------------------------------------------------- /src/rdf_raptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_raptor.c -------------------------------------------------------------------------------- /src/rdf_raptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_raptor.h -------------------------------------------------------------------------------- /src/rdf_raptor_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_raptor_internal.h -------------------------------------------------------------------------------- /src/rdf_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_serializer.c -------------------------------------------------------------------------------- /src/rdf_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_serializer.h -------------------------------------------------------------------------------- /src/rdf_serializer_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_serializer_internal.h -------------------------------------------------------------------------------- /src/rdf_serializer_raptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_serializer_raptor.c -------------------------------------------------------------------------------- /src/rdf_statement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_statement.c -------------------------------------------------------------------------------- /src/rdf_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_statement.h -------------------------------------------------------------------------------- /src/rdf_statement_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_statement_common.c -------------------------------------------------------------------------------- /src/rdf_statement_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_statement_internal.h -------------------------------------------------------------------------------- /src/rdf_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage.c -------------------------------------------------------------------------------- /src/rdf_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage.h -------------------------------------------------------------------------------- /src/rdf_storage_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_file.c -------------------------------------------------------------------------------- /src/rdf_storage_hashes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_hashes.c -------------------------------------------------------------------------------- /src/rdf_storage_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_internal.h -------------------------------------------------------------------------------- /src/rdf_storage_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_list.c -------------------------------------------------------------------------------- /src/rdf_storage_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_module.h -------------------------------------------------------------------------------- /src/rdf_storage_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_mysql.c -------------------------------------------------------------------------------- /src/rdf_storage_postgresql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_postgresql.c -------------------------------------------------------------------------------- /src/rdf_storage_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_sql.c -------------------------------------------------------------------------------- /src/rdf_storage_sql_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_sql_test.c -------------------------------------------------------------------------------- /src/rdf_storage_sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_sqlite.c -------------------------------------------------------------------------------- /src/rdf_storage_trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_trees.c -------------------------------------------------------------------------------- /src/rdf_storage_tstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_tstore.c -------------------------------------------------------------------------------- /src/rdf_storage_virtuoso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_virtuoso.c -------------------------------------------------------------------------------- /src/rdf_storage_virtuoso_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_storage_virtuoso_internal.h -------------------------------------------------------------------------------- /src/rdf_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_stream.c -------------------------------------------------------------------------------- /src/rdf_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_stream.h -------------------------------------------------------------------------------- /src/rdf_stream_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_stream_internal.h -------------------------------------------------------------------------------- /src/rdf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_types.h -------------------------------------------------------------------------------- /src/rdf_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_uri.c -------------------------------------------------------------------------------- /src/rdf_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_uri.h -------------------------------------------------------------------------------- /src/rdf_uri_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_uri_internal.h -------------------------------------------------------------------------------- /src/rdf_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_utf8.c -------------------------------------------------------------------------------- /src/rdf_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/rdf_utf8.h -------------------------------------------------------------------------------- /src/redland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/redland.h -------------------------------------------------------------------------------- /src/redland.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/redland.spec.in -------------------------------------------------------------------------------- /src/win32/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=\ 2 | README.txt \ 3 | librdf.vcproj msvc.def 4 | -------------------------------------------------------------------------------- /src/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/win32/README.txt -------------------------------------------------------------------------------- /src/win32/librdf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/win32/librdf.vcproj -------------------------------------------------------------------------------- /src/win32/msvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/win32/msvc.def -------------------------------------------------------------------------------- /src/win32_rdf_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/src/win32_rdf_config.h.in -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/.gitignore -------------------------------------------------------------------------------- /utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/Makefile.am -------------------------------------------------------------------------------- /utils/db_upgrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/db_upgrade.c -------------------------------------------------------------------------------- /utils/fix-groff-xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/fix-groff-xhtml -------------------------------------------------------------------------------- /utils/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/getopt.c -------------------------------------------------------------------------------- /utils/rdf-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/rdf-tree.c -------------------------------------------------------------------------------- /utils/rdfproc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/rdfproc.1 -------------------------------------------------------------------------------- /utils/rdfproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/rdfproc.c -------------------------------------------------------------------------------- /utils/rdfproc_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/rdfproc_getopt.h -------------------------------------------------------------------------------- /utils/redland-db-upgrade.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/redland-db-upgrade.1 -------------------------------------------------------------------------------- /utils/redland-virtuoso-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/librdf/HEAD/utils/redland-virtuoso-test.c --------------------------------------------------------------------------------