Binary files /tmp/tmpTFUsYv/p6jsvC2XU4/r-cran-redland-1.0.17-11/build/vignette.rds and /tmp/tmpTFUsYv/7WX6lxRvq_/r-cran-redland-1.0.17-14/build/vignette.rds differ diff -Nru r-cran-redland-1.0.17-11/configure r-cran-redland-1.0.17-14/configure --- r-cran-redland-1.0.17-11/configure 2019-10-07 03:59:24.000000000 +0000 +++ r-cran-redland-1.0.17-14/configure 2020-10-21 18:42:03.000000000 +0000 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Anticonf (tm) script by Jeroen Ooms (2017) # This script will query 'pkg-config' for the required cflags and ldflags. # If pkg-config is unavailable or does not find the library, try setting @@ -15,9 +15,14 @@ PKG_CFLAGS="" # Use pkg-config if available -if [ $(command -v pkg-config) ]; then - PKGCONFIG_CFLAGS=$(pkg-config --cflags --silence-errors ${PKG_CONFIG_NAME}) - PKGCONFIG_LIBS=$(pkg-config --libs ${PKG_CONFIG_NAME}) +pkg-config --exists ${PKG_CONFIG_NAME} >/dev/null 2>&1 && R_HAS_PKG_CONFIG=1; + +platform=`uname` +# Use pkg-config if available +if [ $R_HAS_PKG_CONFIG ]; then + echo "Found pkg-config ${PKG_CONFIG_NAME}" + PKGCONFIG_CFLAGS=`pkg-config --cflags --silence-errors ${PKG_CONFIG_NAME}` + PKGCONFIG_LIBS=`pkg-config --libs ${PKG_CONFIG_NAME}` fi # Note that cflags may be empty in case of success @@ -29,15 +34,19 @@ echo "Found pkg-config cflags and libs!" PKG_CFLAGS=${PKGCONFIG_CFLAGS} PKG_LIBS=${PKGCONFIG_LIBS} -elif [[ "$OSTYPE" == "darwin"* ]]; then - if [ $(command -v brew) ]; then - BREWDIR=$(brew --prefix) +elif [ "$platform" = "Darwin" ]; then + brew list ${PKG_BREW_NAME} >/dev/null 2>&1 + if [ $? -eq 0 ]; then + echo "Configuring with brew." + BREWDIR=`brew --prefix` else - curl -sfL "https://jeroen.github.io/autobrew/$PKG_BREW_NAME" > autobrew - source autobrew + echo "Configuring with autobrew." + curl -sfL "https://autobrew.github.io/scripts/${PKG_BREW_NAME}" > autobrew + . autobrew fi - PKG_CFLAGS=$($BREWDIR/opt/pkg-config/bin/pkg-config --cflags ${PKG_CONFIG_NAME}) - PKG_LIBS=$($BREWDIR/opt/pkg-config/bin/pkg-config --libs --static ${PKG_CONFIG_NAME}) + + PKG_CFLAGS=`$BREWDIR/opt/pkg-config/bin/pkg-config --cflags ${PKG_CONFIG_NAME}` + PKG_LIBS=`$BREWDIR/opt/pkg-config/bin/pkg-config --libs --static ${PKG_CONFIG_NAME}` fi # For debugging @@ -45,9 +54,9 @@ echo "Using PKG_LIBS=$PKG_LIBS" # Find compiler -CC=$(${R_HOME}/bin/R CMD config CC) -CFLAGS=$(${R_HOME}/bin/R CMD config CFLAGS) -CPPFLAGS=$(${R_HOME}/bin/R CMD config CPPFLAGS) +CC=`${R_HOME}/bin/R CMD config CC` +CFLAGS=`${R_HOME}/bin/R CMD config CFLAGS` +CPPFLAGS=`${R_HOME}/bin/R CMD config CPPFLAGS` # Test configuration echo "#include $PKG_TEST_HEADER" | ${CC} ${CPPFLAGS} ${PKG_CFLAGS} ${CFLAGS} -E -xc - >/dev/null 2>&1 || R_CONFIG_ERROR=1; diff -Nru r-cran-redland-1.0.17-11/debian/changelog r-cran-redland-1.0.17-14/debian/changelog --- r-cran-redland-1.0.17-11/debian/changelog 2020-05-31 06:23:04.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/changelog 2020-10-30 10:32:21.000000000 +0000 @@ -1,8 +1,27 @@ -r-cran-redland (1.0.17-11-1build1) groovy; urgency=medium +r-cran-redland (1.0.17-14-1) unstable; urgency=medium - * No-change rebuild against r-api-4.0 + * New upstream version + * Add autopkgtest - -- Steve Langasek Sun, 31 May 2020 06:23:04 +0000 + -- Andreas Tille Fri, 30 Oct 2020 11:32:21 +0100 + +r-cran-redland (1.0.17-13-1) unstable; urgency=medium + + * New upstream version + + -- Andreas Tille Tue, 13 Oct 2020 11:24:19 +0200 + +r-cran-redland (1.0.17-12-1) unstable; urgency=medium + + * New upstream version + * Standards-Version: 4.5.0 (routine-update) + * debhelper-compat 13 (routine-update) + * Add salsa-ci file (routine-update) + * Rules-Requires-Root: no (routine-update) + * Set upstream metadata fields: Archive, Bug-Database, Bug-Submit, Repository, + Repository-Browse. + + -- Andreas Tille Tue, 29 Sep 2020 11:29:04 +0200 r-cran-redland (1.0.17-11-1) unstable; urgency=medium diff -Nru r-cran-redland-1.0.17-11/debian/control r-cran-redland-1.0.17-14/debian/control --- r-cran-redland-1.0.17-11/debian/control 2020-05-31 06:23:04.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/control 2020-10-30 10:32:21.000000000 +0000 @@ -1,19 +1,19 @@ Source: r-cran-redland -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Debian R Packages Maintainers +Maintainer: Debian R Packages Maintainers Uploaders: Andreas Tille Section: gnu-r Testsuite: autopkgtest-pkg-r Priority: optional -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper-compat (= 13), dh-r, r-base-dev, r-cran-roxygen2, librdf0-dev -Standards-Version: 4.4.1 +Standards-Version: 4.5.0 Vcs-Browser: https://salsa.debian.org/r-pkg-team/r-cran-redland Vcs-Git: https://salsa.debian.org/r-pkg-team/r-cran-redland.git Homepage: https://cran.r-project.org/package=redland +Rules-Requires-Root: no Package: r-cran-redland Architecture: any diff -Nru r-cran-redland-1.0.17-11/debian/docs r-cran-redland-1.0.17-14/debian/docs --- r-cran-redland-1.0.17-11/debian/docs 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/docs 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,2 @@ +debian/tests/run-unit-test +tests diff -Nru r-cran-redland-1.0.17-11/debian/salsa-ci.yml r-cran-redland-1.0.17-14/debian/salsa-ci.yml --- r-cran-redland-1.0.17-11/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/salsa-ci.yml 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,4 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml diff -Nru r-cran-redland-1.0.17-11/debian/tests/control r-cran-redland-1.0.17-14/debian/tests/control --- r-cran-redland-1.0.17-11/debian/tests/control 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/tests/control 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,5 @@ +Tests: run-unit-test +Depends: @, r-cran-testthat, +Restrictions: allow-stderr + + diff -Nru r-cran-redland-1.0.17-11/debian/tests/run-unit-test r-cran-redland-1.0.17-14/debian/tests/run-unit-test --- r-cran-redland-1.0.17-11/debian/tests/run-unit-test 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/tests/run-unit-test 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/sh -e + +debname=r-cran-redland + +if [ "$AUTOPKGTEST_TMP" = "" ] ; then + AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX` + trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM +fi +cd $AUTOPKGTEST_TMP +cp -a /usr/share/doc/$debname/tests $AUTOPKGTEST_TMP +gunzip -r * +cd tests +for testfile in *.R; do + echo "BEGIN TEST $testfile" + LC_ALL=C.UTF-8 R --no-save < $testfile +done + diff -Nru r-cran-redland-1.0.17-11/debian/upstream/metadata r-cran-redland-1.0.17-14/debian/upstream/metadata --- r-cran-redland-1.0.17-11/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ r-cran-redland-1.0.17-14/debian/upstream/metadata 2020-10-30 10:32:21.000000000 +0000 @@ -0,0 +1,6 @@ +--- +Archive: CRAN +Bug-Database: https://github.com/ropensci/redland-bindings/issues +Bug-Submit: https://github.com/ropensci/redland-bindings/issues/new +Repository: https://github.com/ropensci/redland-bindings.git +Repository-Browse: https://github.com/ropensci/redland-bindings diff -Nru r-cran-redland-1.0.17-11/DESCRIPTION r-cran-redland-1.0.17-14/DESCRIPTION --- r-cran-redland-1.0.17-11/DESCRIPTION 2019-10-13 14:10:03.000000000 +0000 +++ r-cran-redland-1.0.17-14/DESCRIPTION 2020-10-21 19:10:02.000000000 +0000 @@ -1,5 +1,5 @@ Package: redland -Version: 1.0.17-11 +Version: 1.0.17-14 Title: RDF Library Bindings in R Authors@R: c( person("Matthew B.", "Jones", role = c("aut", "cre"), email="jones@nceas.ucsb.edu"), @@ -11,10 +11,10 @@ person("University of Bristol", role = c("cph")), person("Regents of the University of California", role = c("cph")) ) -Date: 2019-10-06 +Date: 2020-10-21 VignetteBuilder: knitr Description: Provides methods to parse, query and serialize information - stored in the Resource Description Framework (RDF). RDF is described at . + stored in the Resource Description Framework (RDF). RDF is described at . This package supports RDF by implementing an R interface to the Redland RDF C library, described at . In brief, RDF provides a structured graph consisting of Statements composed of Subject, Predicate, and Object Nodes. @@ -29,13 +29,13 @@ License: Apache License 2.0 Copyright: See file (inst/)COPYRIGHTS. BugReports: https://github.com/ropensci/redland-bindings/issues -RoxygenNote: 6.1.1 +RoxygenNote: 7.1.1 URL: https://github.com/ropensci/redland-bindings/tree/master/R/redland https://github.com/ropensci/redland-bindings/tree/master/R Encoding: UTF-8 Language: en-US NeedsCompilation: yes -Packaged: 2019-10-07 03:59:24 UTC; slaughter +Packaged: 2020-10-21 18:42:03 UTC; slaughter Author: Matthew B. Jones [aut, cre], Peter Slaughter [aut], Jeroen Ooms [aut], @@ -46,4 +46,4 @@ Regents of the University of California [cph] Maintainer: Matthew B. Jones Repository: CRAN -Date/Publication: 2019-10-13 14:10:03 UTC +Date/Publication: 2020-10-21 19:10:02 UTC diff -Nru r-cran-redland-1.0.17-11/inst/doc/redland_overview.html r-cran-redland-1.0.17-14/inst/doc/redland_overview.html --- r-cran-redland-1.0.17-11/inst/doc/redland_overview.html 2019-10-07 03:59:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/inst/doc/redland_overview.html 2020-10-21 18:42:03.000000000 +0000 @@ -1,29 +1,116 @@ - + - - + - + redland: create, query and write RDF graphs + + + @@ -306,31 +391,31 @@

redland: create, query and write RDF graphs

Peter Slaughter

-

2019-10-06

+

2020-10-21

Introduction

The redland R package provides methods to create, query and write to disk data stored in the Resource Description Framework (RDF). RDF provides a standardized way to make statements about resources and the relationships between them. Typical resources include datasets that are available via URLs. Resources don’t have to be available online, for example a resource could also be the name of the person that created a dataset. A collection of RDF statements comprise an RDF graph, which can be read and interpreted by an RDF capable software application that uses the resources described in the graph.

-

An introduction to RDF can be found at http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624.

+

An introduction to RDF can be found at http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/.

Examples

The following example reads an RDF graph from a disk file that was previously saved in the RDF/XML format:

- -

Next the RDF graph is queried for statements of interest, using the SPARQL query syntax

- +
library(redland)
+world <- new("World")
+storage <- new("Storage", world, "hashes", name="", options="hash-type='memory'")
+model <- new("Model", world=world, storage, options="")
+parser <- new("Parser", world)
+parseFileIntoModel(parser, world, system.file("extdata", "dc.rdf", package="redland"), model)
+

Next the RDF graph is queried for statements of interest, using the SPARQL query syntax

+
queryString <- 'PREFIX dc: <http://purl.org/dc/elements/1.1/> SELECT ?a ?c WHERE { ?a dc:creator ?c . }'
+query <- new("Query", world, queryString, base_uri=NULL, query_language="sparql", query_uri=NULL)
+queryResult <- executeQuery(query, model)
+results <- getResults(query, model, "rdfxml")
+
+cat(sprintf("Results from query: %s\n", results))
## Results from query: <?xml version="1.0" encoding="utf-8"?>
 ## <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 ##    xmlns:rs="http://www.w3.org/2001/sw/DataAccess/tests/result-set#">
@@ -356,17 +441,17 @@
 ##   </rs:ResultSet>
 ## </rdf:RDF>

Next, additional statements can be added to the RDF graph:

- +
stmt <- new("Statement", world=world, 
+        subject="http://www.dajobe.org/",
+        predicate="http://purl.org/dc/elements/1.1/language",
+        object="en")
+addStatement(model, stmt)
## [1] 0

Now the RDF graph can be written to disk:

- +
serializer <- new("Serializer", world, mimeType="application/rdf+xml")
+status <- setNameSpace(serializer, world, namespace="http://purl.org/dc/elements/1.1/", prefix="dc")  
+filePath <- tempfile(pattern = "file", tmpdir = tempdir(), fileext = ".rdf")
+status <- serializeToFile(serializer, world, model, filePath)
diff -Nru r-cran-redland-1.0.17-11/inst/doc/redland_overview.R r-cran-redland-1.0.17-14/inst/doc/redland_overview.R --- r-cran-redland-1.0.17-11/inst/doc/redland_overview.R 2019-10-07 03:59:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/inst/doc/redland_overview.R 2020-10-21 18:42:02.000000000 +0000 @@ -1,4 +1,4 @@ -## ------------------------------------------------------------------------ +## ----------------------------------------------------------------------------- library(redland) world <- new("World") storage <- new("Storage", world, "hashes", name="", options="hash-type='memory'") @@ -7,7 +7,7 @@ parseFileIntoModel(parser, world, system.file("extdata", "dc.rdf", package="redland"), model) -## ------------------------------------------------------------------------ +## ----------------------------------------------------------------------------- queryString <- 'PREFIX dc: SELECT ?a ?c WHERE { ?a dc:creator ?c . }' query <- new("Query", world, queryString, base_uri=NULL, query_language="sparql", query_uri=NULL) queryResult <- executeQuery(query, model) @@ -15,14 +15,14 @@ cat(sprintf("Results from query: %s\n", results)) -## ------------------------------------------------------------------------ +## ----------------------------------------------------------------------------- stmt <- new("Statement", world=world, subject="http://www.dajobe.org/", predicate="http://purl.org/dc/elements/1.1/language", object="en") addStatement(model, stmt) -## ------------------------------------------------------------------------ +## ----------------------------------------------------------------------------- serializer <- new("Serializer", world, mimeType="application/rdf+xml") status <- setNameSpace(serializer, world, namespace="http://purl.org/dc/elements/1.1/", prefix="dc") filePath <- tempfile(pattern = "file", tmpdir = tempdir(), fileext = ".rdf") diff -Nru r-cran-redland-1.0.17-11/inst/doc/redland_overview.Rmd r-cran-redland-1.0.17-14/inst/doc/redland_overview.Rmd --- r-cran-redland-1.0.17-11/inst/doc/redland_overview.Rmd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/inst/doc/redland_overview.Rmd 2020-10-12 17:18:54.000000000 +0000 @@ -13,7 +13,7 @@ The `redland` R package provides methods to create, query and write to disk data stored in the Resource Description Framework (RDF). RDF provides a standardized way to make statements about resources and the relationships between them. Typical resources include datasets that are available via URLs. Resources don't have to be available online, for example a resource could also be the name of the person that created a dataset. A collection of RDF statements comprise an RDF graph, which can be read and interpreted by an RDF capable software application that uses the resources described in the graph. -An introduction to RDF can be found at http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624. +An introduction to RDF can be found at http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/. ## Examples @@ -28,7 +28,7 @@ parseFileIntoModel(parser, world, system.file("extdata", "dc.rdf", package="redland"), model) ``` -Next the RDF graph is queried for statements of interest, using the [SPARQL query syntax](http://www.w3.org/TR/rdf-sparql-query) +Next the RDF graph is queried for statements of interest, using the [SPARQL query syntax](http://www.w3.org/TR/rdf-sparql-query/) ```{r} queryString <- 'PREFIX dc: SELECT ?a ?c WHERE { ?a dc:creator ?c . }' diff -Nru r-cran-redland-1.0.17-11/man/addStatement.Rd r-cran-redland-1.0.17-14/man/addStatement.Rd --- r-cran-redland-1.0.17-11/man/addStatement.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/addStatement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Model.R -\docType{methods} \name{addStatement} \alias{addStatement} \alias{addStatement,Model,Statement-method} diff -Nru r-cran-redland-1.0.17-11/man/executeQuery.Rd r-cran-redland-1.0.17-14/man/executeQuery.Rd --- r-cran-redland-1.0.17-11/man/executeQuery.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/executeQuery.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{executeQuery} \alias{executeQuery} \alias{executeQuery,Query-method} diff -Nru r-cran-redland-1.0.17-11/man/freeModel.Rd r-cran-redland-1.0.17-14/man/freeModel.Rd --- r-cran-redland-1.0.17-11/man/freeModel.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeModel.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Model.R -\docType{methods} \name{freeModel} \alias{freeModel} \alias{freeModel,Model-method} diff -Nru r-cran-redland-1.0.17-11/man/freeParser.Rd r-cran-redland-1.0.17-14/man/freeParser.Rd --- r-cran-redland-1.0.17-11/man/freeParser.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeParser.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Parser.R -\docType{methods} \name{freeParser} \alias{freeParser} \alias{freeParser,Parser-method} diff -Nru r-cran-redland-1.0.17-11/man/freeQuery.Rd r-cran-redland-1.0.17-14/man/freeQuery.Rd --- r-cran-redland-1.0.17-11/man/freeQuery.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeQuery.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{freeQuery} \alias{freeQuery} \alias{freeQuery,Query-method} diff -Nru r-cran-redland-1.0.17-11/man/freeQueryResults.Rd r-cran-redland-1.0.17-14/man/freeQueryResults.Rd --- r-cran-redland-1.0.17-11/man/freeQueryResults.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeQueryResults.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/QueryResults.R -\docType{methods} \name{freeQueryResults} \alias{freeQueryResults} \alias{freeQueryResults,QueryResults-method} diff -Nru r-cran-redland-1.0.17-11/man/freeSerializer.Rd r-cran-redland-1.0.17-14/man/freeSerializer.Rd --- r-cran-redland-1.0.17-11/man/freeSerializer.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeSerializer.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Serializer.R -\docType{methods} \name{freeSerializer} \alias{freeSerializer} \alias{freeSerializer,Serializer-method} diff -Nru r-cran-redland-1.0.17-11/man/freeStatement.Rd r-cran-redland-1.0.17-14/man/freeStatement.Rd --- r-cran-redland-1.0.17-11/man/freeStatement.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeStatement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Statement.R -\docType{methods} \name{freeStatement} \alias{freeStatement} \alias{freeStatement,Statement-method} diff -Nru r-cran-redland-1.0.17-11/man/freeStorage.Rd r-cran-redland-1.0.17-14/man/freeStorage.Rd --- r-cran-redland-1.0.17-11/man/freeStorage.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeStorage.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Storage.R -\docType{methods} \name{freeStorage} \alias{freeStorage} \alias{freeStorage,Storage-method} diff -Nru r-cran-redland-1.0.17-11/man/freeWorld.Rd r-cran-redland-1.0.17-14/man/freeWorld.Rd --- r-cran-redland-1.0.17-11/man/freeWorld.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/freeWorld.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/World.R -\docType{methods} \name{freeWorld} \alias{freeWorld} \alias{freeWorld,World-method} diff -Nru r-cran-redland-1.0.17-11/man/getBlankNodeId.Rd r-cran-redland-1.0.17-14/man/getBlankNodeId.Rd --- r-cran-redland-1.0.17-11/man/getBlankNodeId.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/getBlankNodeId.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Node.R -\docType{methods} \name{getBlankNodeId} \alias{getBlankNodeId} \alias{getBlankNodeId,Node-method} diff -Nru r-cran-redland-1.0.17-11/man/getNodeType.Rd r-cran-redland-1.0.17-14/man/getNodeType.Rd --- r-cran-redland-1.0.17-11/man/getNodeType.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/getNodeType.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Node.R -\docType{methods} \name{getNodeType} \alias{getNodeType} \alias{getNodeType,Node-method} diff -Nru r-cran-redland-1.0.17-11/man/getNodeValue.Rd r-cran-redland-1.0.17-14/man/getNodeValue.Rd --- r-cran-redland-1.0.17-11/man/getNodeValue.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/getNodeValue.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Node.R -\docType{methods} \encoding{UTF-8} \name{getNodeValue} \alias{getNodeValue} @@ -23,7 +22,7 @@ \details{ The value of the node is returned as a string. If the node type is 'blank', then the blank node identifier is returned. If the node type is -'literal', then the literal value is returned with the form ""@, +'literal', then the literal value is returned with the form "string@language, e.g. "¡Hola, amigo! ¿Cómo estás?"@es". If the node type is 'uri' then the value is returned as a string. } diff -Nru r-cran-redland-1.0.17-11/man/getQueryResultsLimit.Rd r-cran-redland-1.0.17-14/man/getQueryResultsLimit.Rd --- r-cran-redland-1.0.17-11/man/getQueryResultsLimit.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/getQueryResultsLimit.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{getQueryResultLimit} \alias{getQueryResultLimit} \alias{getQueryResultLimit,Query-method} diff -Nru r-cran-redland-1.0.17-11/man/getResults.Rd r-cran-redland-1.0.17-14/man/getResults.Rd --- r-cran-redland-1.0.17-11/man/getResults.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/getResults.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{getResults} \alias{getResults} \alias{getResults,Query-method} diff -Nru r-cran-redland-1.0.17-11/man/getTermType.Rd r-cran-redland-1.0.17-14/man/getTermType.Rd --- r-cran-redland-1.0.17-11/man/getTermType.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/getTermType.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Statement.R -\docType{methods} \name{getTermType} \alias{getTermType} \alias{getTermType,Statement,character-method} diff -Nru r-cran-redland-1.0.17-11/man/librdf_copyright_string_get.Rd r-cran-redland-1.0.17-14/man/librdf_copyright_string_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_copyright_string_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_copyright_string_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return the Redland RDF copyright } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_copyright_string.Rd r-cran-redland-1.0.17-14/man/librdf_copyright_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_copyright_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_copyright_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Copyright string (multiple lines). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_digest_final.Rd r-cran-redland-1.0.17-14/man/librdf_digest_final.Rd --- r-cran-redland-1.0.17-11/man/librdf_digest_final.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_digest_final.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Finish the digesting of data. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_digest_init.Rd r-cran-redland-1.0.17-14/man/librdf_digest_init.Rd --- r-cran-redland-1.0.17-11/man/librdf_digest_init.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_digest_init.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ (Re)initialise the librdf_digest object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_digest_to_string.Rd r-cran-redland-1.0.17-14/man/librdf_digest_to_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_digest_to_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_digest_to_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get a string representation of the digest object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_digest_update.Rd r-cran-redland-1.0.17-14/man/librdf_digest_update.Rd --- r-cran-redland-1.0.17-11/man/librdf_digest_update.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_digest_update.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Add more data to the librdf_digest object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_digest_update_string.Rd r-cran-redland-1.0.17-14/man/librdf_digest_update_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_digest_update_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_digest_update_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Add a string to the librdf_digest object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_digest.Rd r-cran-redland-1.0.17-14/man/librdf_free_digest.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_digest.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_digest.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_digest object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_hash.Rd r-cran-redland-1.0.17-14/man/librdf_free_hash.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_hash.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_hash.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_hash object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_iterator.Rd r-cran-redland-1.0.17-14/man/librdf_free_iterator.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_iterator.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_iterator.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_iterator object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_model.Rd r-cran-redland-1.0.17-14/man/librdf_free_model.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_model.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_model.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - Destroy a librdf_model object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_node.Rd r-cran-redland-1.0.17-14/man/librdf_free_node.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_node.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_node.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy an librdf_node object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_parser.Rd r-cran-redland-1.0.17-14/man/librdf_free_parser.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_parser.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_parser.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroys a librdf_parser object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_query.Rd r-cran-redland-1.0.17-14/man/librdf_free_query.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_query.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_query.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_query object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_query_results.Rd r-cran-redland-1.0.17-14/man/librdf_free_query_results.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_query_results.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_query_results.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_query_results object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_serializer.Rd r-cran-redland-1.0.17-14/man/librdf_free_serializer.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_serializer.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_serializer.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroys a librdf_serializer object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_statement.Rd r-cran-redland-1.0.17-14/man/librdf_free_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_statement. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_storage.Rd r-cran-redland-1.0.17-14/man/librdf_free_storage.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_storage.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_storage.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_storage object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_stream.Rd r-cran-redland-1.0.17-14/man/librdf_free_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy an libdf_stream object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_uri.Rd r-cran-redland-1.0.17-14/man/librdf_free_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Destructor - destroy a librdf_uri object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_free_world.Rd r-cran-redland-1.0.17-14/man/librdf_free_world.Rd --- r-cran-redland-1.0.17-11/man/librdf_free_world.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_free_world.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Terminate the library and frees all allocated resources. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_hash_to_string.Rd r-cran-redland-1.0.17-14/man/librdf_hash_to_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_hash_to_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_hash_to_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Format the hash as a string, suitable for parsing by librdf_hash_from_string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_internal_test_error.Rd r-cran-redland-1.0.17-14/man/librdf_internal_test_error.Rd --- r-cran-redland-1.0.17-11/man/librdf_internal_test_error.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_internal_test_error.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ This funciton is for internal testing of the Redland software and is not part of the public API. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_internal_test_warning.Rd r-cran-redland-1.0.17-14/man/librdf_internal_test_warning.Rd --- r-cran-redland-1.0.17-11/man/librdf_internal_test_warning.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_internal_test_warning.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ This funciton is for internal testing of the Redland software and is not part of the public API. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_iterator_end.Rd r-cran-redland-1.0.17-14/man/librdf_iterator_end.Rd --- r-cran-redland-1.0.17-11/man/librdf_iterator_end.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_iterator_end.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Test if the iterator has finished. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_iterator_get_context.Rd r-cran-redland-1.0.17-14/man/librdf_iterator_get_context.Rd --- r-cran-redland-1.0.17-11/man/librdf_iterator_get_context.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_iterator_get_context.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the context of the current object on the iterator. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_iterator_get_object.Rd r-cran-redland-1.0.17-14/man/librdf_iterator_get_object.Rd --- r-cran-redland-1.0.17-11/man/librdf_iterator_get_object.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_iterator_get_object.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the current object from the iterator. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_iterator_next.Rd r-cran-redland-1.0.17-14/man/librdf_iterator_next.Rd --- r-cran-redland-1.0.17-11/man/librdf_iterator_next.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_iterator_next.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Move to the next iterator element. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_log_message_code.Rd r-cran-redland-1.0.17-14/man/librdf_log_message_code.Rd --- r-cran-redland-1.0.17-11/man/librdf_log_message_code.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_log_message_code.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Retrieve error code from log message. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_log_message_facility.Rd r-cran-redland-1.0.17-14/man/librdf_log_message_facility.Rd --- r-cran-redland-1.0.17-11/man/librdf_log_message_facility.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_log_message_facility.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Retrieve facility that generated the message. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_log_message_level.Rd r-cran-redland-1.0.17-14/man/librdf_log_message_level.Rd --- r-cran-redland-1.0.17-11/man/librdf_log_message_level.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_log_message_level.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Retrieve severity of log message. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_log_message_locator.Rd r-cran-redland-1.0.17-14/man/librdf_log_message_locator.Rd --- r-cran-redland-1.0.17-11/man/librdf_log_message_locator.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_log_message_locator.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Retrieve locator of log entry. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_log_message_message.Rd r-cran-redland-1.0.17-14/man/librdf_log_message_message.Rd --- r-cran-redland-1.0.17-11/man/librdf_log_message_message.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_log_message_message.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Retrieve text message from log entry. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_add.Rd r-cran-redland-1.0.17-14/man/librdf_model_add.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_add.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_add.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Create and add a new statement about a resource to the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_add_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_add_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_add_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_add_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Add a statement to the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_add_statements.Rd r-cran-redland-1.0.17-14/man/librdf_model_add_statements.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_add_statements.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_add_statements.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Add a stream of statements to the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_add_string_literal_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_add_string_literal_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_add_string_literal_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_add_string_literal_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -35,7 +35,7 @@ Create and add a new statement about a literal to the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_add_typed_literal_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_add_typed_literal_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_add_typed_literal_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_add_typed_literal_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -35,7 +35,7 @@ Create and add a new statement about a typed literal to the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_as_stream.Rd r-cran-redland-1.0.17-14/man/librdf_model_as_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_as_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_as_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ List the model contents as a stream of statements. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_contains_context.Rd r-cran-redland-1.0.17-14/man/librdf_model_contains_context.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_contains_context.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_contains_context.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Check for a context in the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_contains_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_contains_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_contains_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_contains_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Check for a statement in the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_context_add_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_context_add_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_context_add_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_context_add_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Add a statement to a model with a context. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_context_add_statements.Rd r-cran-redland-1.0.17-14/man/librdf_model_context_add_statements.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_context_add_statements.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_context_add_statements.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Add statements to a model with a context. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_context_as_stream.Rd r-cran-redland-1.0.17-14/man/librdf_model_context_as_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_context_as_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_context_as_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ List all statements in a model context. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_context_remove_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_context_remove_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_context_remove_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_context_remove_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Remove a statement from a model in a context. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_context_remove_statements.Rd r-cran-redland-1.0.17-14/man/librdf_model_context_remove_statements.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_context_remove_statements.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_context_remove_statements.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Remove statements from a model with the given context. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_find_statements_in_context.Rd r-cran-redland-1.0.17-14/man/librdf_model_find_statements_in_context.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_find_statements_in_context.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_find_statements_in_context.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Search the model for matching statements in a given context. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_find_statements.Rd r-cran-redland-1.0.17-14/man/librdf_model_find_statements.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_find_statements.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_find_statements.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Find matching statements in the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_arc.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_arc.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_arc.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_arc.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Return one arc (predicate) of an arc in an RDF graph given source (subject) and target (object). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_arcs_in.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_arcs_in.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_arcs_in.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_arcs_in.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Return the properties pointing to the given resource. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_arcs_out.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_arcs_out.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_arcs_out.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_arcs_out.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Return the properties pointing from the given resource. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_arcs.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_arcs.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_arcs.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_arcs.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Return the arcs (predicates) of an arc in an RDF graph given source (subject) and target (object). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_contexts.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_contexts.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_contexts.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_contexts.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Return the list of contexts in the graph. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_feature.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the value of a graph feature . } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_source.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_source.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_source.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_source.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Return one source (subject) of arc in an RDF graph given arc (predicate) and target (object). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_sources.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_sources.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_sources.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_sources.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Return the sources (subjects) of arc in an RDF graph given arc (predicate) and target (object). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_target.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_target.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_target.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_target.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Return one target (object) of an arc in an RDF graph given source (subject) and arc (predicate). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_get_targets.Rd r-cran-redland-1.0.17-14/man/librdf_model_get_targets.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_get_targets.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_get_targets.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Return the targets (objects) of an arc in an RDF graph given source (subject) and arc (predicate). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_has_arc_in.Rd r-cran-redland-1.0.17-14/man/librdf_model_has_arc_in.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_has_arc_in.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_has_arc_in.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Check if a node has a given property pointing to it. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_has_arc_out.Rd r-cran-redland-1.0.17-14/man/librdf_model_has_arc_out.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_has_arc_out.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_has_arc_out.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Check if a node has a given property pointing from it. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_load.Rd r-cran-redland-1.0.17-14/man/librdf_model_load.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_load.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_load.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -32,7 +32,7 @@ Load content from a URI into the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_query_execute.Rd r-cran-redland-1.0.17-14/man/librdf_model_query_execute.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_query_execute.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_query_execute.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Execute a query against the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_remove_statement.Rd r-cran-redland-1.0.17-14/man/librdf_model_remove_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_remove_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_remove_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Remove a known statement from the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_set_feature.Rd r-cran-redland-1.0.17-14/man/librdf_model_set_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_set_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_set_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Set the value of a graph feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_size.Rd r-cran-redland-1.0.17-14/man/librdf_model_size.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_size.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_size.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the number of statements in the model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_sync.Rd r-cran-redland-1.0.17-14/man/librdf_model_sync.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_sync.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_sync.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Synchronise the model to the model implementation. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_to_string.Rd r-cran-redland-1.0.17-14/man/librdf_model_to_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_to_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_to_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Write serialized model to a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_transaction_commit.Rd r-cran-redland-1.0.17-14/man/librdf_model_transaction_commit.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_transaction_commit.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_transaction_commit.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Commit a transaction. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_transaction_rollback.Rd r-cran-redland-1.0.17-14/man/librdf_model_transaction_rollback.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_transaction_rollback.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_transaction_rollback.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Rollback a transaction. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_model_transaction_start.Rd r-cran-redland-1.0.17-14/man/librdf_model_transaction_start.Rd --- r-cran-redland-1.0.17-11/man/librdf_model_transaction_start.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_model_transaction_start.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Start a transaction } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_digest.Rd r-cran-redland-1.0.17-14/man/librdf_new_digest.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_digest.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_digest.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new librdf_digest object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_hash_from_array_of_strings.Rd r-cran-redland-1.0.17-14/man/librdf_new_hash_from_array_of_strings.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_hash_from_array_of_strings.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_hash_from_array_of_strings.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Constructor - create a new librdf_hash object from an array of strings. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_hash_from_string.Rd r-cran-redland-1.0.17-14/man/librdf_new_hash_from_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_hash_from_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_hash_from_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Constructor - create a new librdf_hash object from a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_hash.Rd r-cran-redland-1.0.17-14/man/librdf_new_hash.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_hash.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_hash.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new librdf_hash object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_model_from_model.Rd r-cran-redland-1.0.17-14/man/librdf_new_model_from_model.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_model_from_model.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_model_from_model.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Copy constructor - create a new librdf_model from an existing one. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_model.Rd r-cran-redland-1.0.17-14/man/librdf_new_model.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_model.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_model.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Constructor - create a new storage librdf_model object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_model_with_options.Rd r-cran-redland-1.0.17-14/man/librdf_new_model_with_options.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_model_with_options.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_model_with_options.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Constructor - Create a new librdf_model with storage. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_blank_identifier.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_blank_identifier.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_blank_identifier.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_blank_identifier.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new blank node librdf_node object from a blank node identifier. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_literal.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_literal.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_literal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_literal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new literal librdf_node object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_node.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_node.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_node.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_node.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Copy constructor - create a new librdf_node object from an existing librdf_node object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_normalised_uri_string.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_normalised_uri_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_normalised_uri_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_normalised_uri_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new librdf_node object from a UTF-8 encoded URI string normalised to a new base URI. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_typed_literal.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_typed_literal.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_typed_literal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_typed_literal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new typed literal librdf_node object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_uri_local_name.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_uri_local_name.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_uri_local_name.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_uri_local_name.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Constructor - create a new resource librdf_node object with a given URI and local name. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_uri.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new resource librdf_node object with a given URI. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node_from_uri_string.Rd r-cran-redland-1.0.17-14/man/librdf_new_node_from_uri_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node_from_uri_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node_from_uri_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new librdf_node object from a URI string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_node.Rd r-cran-redland-1.0.17-14/man/librdf_new_node.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_node.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_node.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Constructor - create a new librdf_node object with a private identifier. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_parser.Rd r-cran-redland-1.0.17-14/man/librdf_new_parser.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_parser.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_parser.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new librdf_parser object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_query_from_query.Rd r-cran-redland-1.0.17-14/man/librdf_new_query_from_query.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_query_from_query.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_query_from_query.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Copy constructor - create a new librdf_query object from an existing one } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_query.Rd r-cran-redland-1.0.17-14/man/librdf_new_query.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_query.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_query.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Constructor - create a new librdf_query object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_serializer.Rd r-cran-redland-1.0.17-14/man/librdf_new_serializer.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_serializer.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_serializer.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new librdf_serializer object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_statement_from_nodes.Rd r-cran-redland-1.0.17-14/man/librdf_new_statement_from_nodes.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_statement_from_nodes.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_statement_from_nodes.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new librdf_statement from existing librdf_node objects. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_statement_from_statement.Rd r-cran-redland-1.0.17-14/man/librdf_new_statement_from_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_statement_from_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_statement_from_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -19,7 +19,7 @@ Creates a deep copy - changes to original statement nodes are not reflected in the copy. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_statement.Rd r-cran-redland-1.0.17-14/man/librdf_new_statement.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_statement.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_statement.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Constructor - create a new empty librdf_statement. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_storage_from_storage.Rd r-cran-redland-1.0.17-14/man/librdf_new_storage_from_storage.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_storage_from_storage.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_storage_from_storage.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Copy constructor - create a new librdf_storage object from an existing one } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_storage.Rd r-cran-redland-1.0.17-14/man/librdf_new_storage.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_storage.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_storage.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Constructor - create a new librdf_storage object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_uri_from_filename.Rd r-cran-redland-1.0.17-14/man/librdf_new_uri_from_filename.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_uri_from_filename.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_uri_from_filename.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new librdf_uri object from a filename. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_uri_from_uri.Rd r-cran-redland-1.0.17-14/man/librdf_new_uri_from_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_uri_from_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_uri_from_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Copy constructor - create a new librdf_uri object from an existing librdf_uri object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_uri.Rd r-cran-redland-1.0.17-14/man/librdf_new_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Constructor - create a new librdf_uri object from a URI string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_new_world.Rd r-cran-redland-1.0.17-14/man/librdf_new_world.Rd --- r-cran-redland-1.0.17-11/man/librdf_new_world.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_new_world.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -12,7 +12,7 @@ Create a new Redland execution environment. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_equals.Rd r-cran-redland-1.0.17-14/man/librdf_node_equals.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_equals.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_equals.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Compare two librdf_node objects for equality. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_blank_identifier.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_blank_identifier.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_blank_identifier.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_blank_identifier.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the blank node identifier as a UTF-8 encoded string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_li_ordinal.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_li_ordinal.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_li_ordinal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_li_ordinal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the node li object ordinal value. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_as_latin1.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_as_latin1.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_as_latin1.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_as_latin1.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the string literal value of the node as ISO Latin-1. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_datatype_uri.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_datatype_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_datatype_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_datatype_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the typed literal datatype URI of the literal node. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_is_wf_xml.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_is_wf_xml.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_is_wf_xml.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_is_wf_xml.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the XML well-formness property of the node. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_language.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_language.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value_language.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value_language.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the XML language of the node. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_literal_value.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_literal_value.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the literal value of the node as a UTF-8 encoded string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_type.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_type.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_type.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_type.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the type of the node. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_get_uri.Rd r-cran-redland-1.0.17-14/man/librdf_node_get_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_get_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_get_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the URI for a node object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_is_blank.Rd r-cran-redland-1.0.17-14/man/librdf_node_is_blank.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_is_blank.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_is_blank.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Check node is a blank nodeID. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_is_literal.Rd r-cran-redland-1.0.17-14/man/librdf_node_is_literal.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_is_literal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_is_literal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Check node is a literal. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_node_is_resource.Rd r-cran-redland-1.0.17-14/man/librdf_node_is_resource.Rd --- r-cran-redland-1.0.17-11/man/librdf_node_is_resource.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_node_is_resource.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Check node is a resource. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_check_name.Rd r-cran-redland-1.0.17-14/man/librdf_parser_check_name.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_check_name.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_check_name.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Check if a parser name is known } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_get_accept_header.Rd r-cran-redland-1.0.17-14/man/librdf_parser_get_accept_header.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_get_accept_header.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_get_accept_header.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get an HTTP Accept value for the parser. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_get_feature.Rd r-cran-redland-1.0.17-14/man/librdf_parser_get_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_get_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_get_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the value of a parser feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_get_namespaces_seen_count.Rd r-cran-redland-1.0.17-14/man/librdf_parser_get_namespaces_seen_count.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_get_namespaces_seen_count.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_get_namespaces_seen_count.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the number of namespaces seen during parsing } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_get_namespaces_seen_prefix.Rd r-cran-redland-1.0.17-14/man/librdf_parser_get_namespaces_seen_prefix.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_get_namespaces_seen_prefix.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_get_namespaces_seen_prefix.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the prefix of namespaces seen during parsing } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_get_namespaces_seen_uri.Rd r-cran-redland-1.0.17-14/man/librdf_parser_get_namespaces_seen_uri.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_get_namespaces_seen_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_get_namespaces_seen_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the uri of namespaces seen during parsing } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_guess_name2.Rd r-cran-redland-1.0.17-14/man/librdf_parser_guess_name2.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_guess_name2.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_guess_name2.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Get a parser name for content with type or identifier } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_parse_as_stream.Rd r-cran-redland-1.0.17-14/man/librdf_parser_parse_as_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_parse_as_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_parse_as_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Parse a URI to a librdf_stream of statements. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_parse_counted_string_as_stream.Rd r-cran-redland-1.0.17-14/man/librdf_parser_parse_counted_string_as_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_parse_counted_string_as_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_parse_counted_string_as_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Parse a counted string of content to a librdf_stream of statements. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_parse_counted_string_into_model.Rd r-cran-redland-1.0.17-14/man/librdf_parser_parse_counted_string_into_model.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_parse_counted_string_into_model.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_parse_counted_string_into_model.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -32,7 +32,7 @@ Parse a counted string of content into an librdf_model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_parse_into_model.Rd r-cran-redland-1.0.17-14/man/librdf_parser_parse_into_model.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_parse_into_model.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_parse_into_model.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Parse a URI of content into an librdf_model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_parse_string_as_stream.Rd r-cran-redland-1.0.17-14/man/librdf_parser_parse_string_as_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_parse_string_as_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_parse_string_as_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Parse a string of content to a librdf_stream of statements. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_parse_string_into_model.Rd r-cran-redland-1.0.17-14/man/librdf_parser_parse_string_into_model.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_parse_string_into_model.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_parse_string_into_model.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Parse a string of content into an librdf_model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_parser_set_feature.Rd r-cran-redland-1.0.17-14/man/librdf_parser_set_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_parser_set_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_parser_set_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Set the value of a parser feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_execute.Rd r-cran-redland-1.0.17-14/man/librdf_query_execute.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_execute.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_execute.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Run the query on a model. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_get_limit.Rd r-cran-redland-1.0.17-14/man/librdf_query_get_limit.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_get_limit.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_get_limit.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the query-specified limit on results. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_get_offset.Rd r-cran-redland-1.0.17-14/man/librdf_query_get_offset.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_get_offset.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_get_offset.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the query-specified offset on results. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_as_stream.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_as_stream.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_as_stream.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_as_stream.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get a query result as an RDF graph in librdf_stream form } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_finished.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_finished.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_finished.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_finished.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Find out if binding results are exhausted. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_get_binding_name.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_get_binding_name.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_get_binding_name.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_get_binding_name.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get binding name for the current result. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_get_bindings_count.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_get_bindings_count.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_get_bindings_count.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_get_bindings_count.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the number of bound variables in the result. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_get_binding_value_by_name.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_get_binding_value_by_name.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_get_binding_value_by_name.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_get_binding_value_by_name.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get one binding value for a given name in the current result. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_get_binding_value.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_get_binding_value.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_get_binding_value.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_get_binding_value.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get one binding value for the current result. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_get_boolean.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_get_boolean.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_get_boolean.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_get_boolean.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get boolean query result. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_get_count.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_get_count.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_get_count.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_get_count.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get number of bindings so far. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_is_bindings.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_is_bindings.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_is_bindings.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_is_bindings.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Test if librdf_query_results is variable bindings format. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_is_boolean.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_is_boolean.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_is_boolean.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_is_boolean.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Test if librdf_query_results is boolean format. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_is_graph.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_is_graph.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_is_graph.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_is_graph.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Test if librdf_query_results is RDF graph format. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_is_syntax.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_is_syntax.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_is_syntax.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_is_syntax.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Test if librdf_query_results is a syntax. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_next.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_next.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_next.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_next.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Move to the next result. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_to_file2.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_to_file2.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_to_file2.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_to_file2.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -32,7 +32,7 @@ Write a query results to a file. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_results_to_string2.Rd r-cran-redland-1.0.17-14/man/librdf_query_results_to_string2.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_results_to_string2.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_results_to_string2.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Turn a query results into a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_set_limit.Rd r-cran-redland-1.0.17-14/man/librdf_query_set_limit.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_set_limit.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_set_limit.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Set the query-specified limit on results. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_query_set_offset.Rd r-cran-redland-1.0.17-14/man/librdf_query_set_offset.Rd --- r-cran-redland-1.0.17-11/man/librdf_query_set_offset.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_query_set_offset.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Set the query-specified offset on results. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_check_name.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_check_name.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_check_name.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_check_name.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Check if a serializer name is known } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_get_feature.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_get_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_get_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_get_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the value of a serializer feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_model_to_file.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_model_to_file.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_model_to_file.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_model_to_file.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Write a serialized librdf_model to a file. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_model_to_string.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_model_to_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_model_to_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_model_to_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -25,7 +25,7 @@ The returned string must be freed by the caller using librdf_free_memory(). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_stream_to_file.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_stream_to_file.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_stream_to_file.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_stream_to_file.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -29,7 +29,7 @@ Write a librdf_stream to a file. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_stream_to_string.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_stream_to_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_serialize_stream_to_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_serialize_stream_to_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Write a librdf_stream to a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_set_feature.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_set_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_set_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_set_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Set the value of a serializer feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_serializer_set_namespace.Rd r-cran-redland-1.0.17-14/man/librdf_serializer_set_namespace.Rd --- r-cran-redland-1.0.17-11/man/librdf_serializer_set_namespace.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_serializer_set_namespace.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Set a namespace URI/prefix mapping. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_short_copyright_string_get.Rd r-cran-redland-1.0.17-14/man/librdf_short_copyright_string_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_short_copyright_string_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_short_copyright_string_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return Redland librdf copyright string } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_short_copyright_string.Rd r-cran-redland-1.0.17-14/man/librdf_short_copyright_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_short_copyright_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_short_copyright_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Short copyright string (one line). } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_equals.Rd r-cran-redland-1.0.17-14/man/librdf_statement_equals.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_equals.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_equals.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Check if two statements are equal. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_get_object.Rd r-cran-redland-1.0.17-14/man/librdf_statement_get_object.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_get_object.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_get_object.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the statement object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_get_predicate.Rd r-cran-redland-1.0.17-14/man/librdf_statement_get_predicate.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_get_predicate.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_get_predicate.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the statement predicate. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_get_subject.Rd r-cran-redland-1.0.17-14/man/librdf_statement_get_subject.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_get_subject.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_get_subject.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the statement subject. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_is_complete.Rd r-cran-redland-1.0.17-14/man/librdf_statement_is_complete.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_is_complete.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_is_complete.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Check if statement is a complete and legal RDF triple. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_match.Rd r-cran-redland-1.0.17-14/man/librdf_statement_match.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_match.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_match.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Match a statement against a 'partial' statement. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_set_object.Rd r-cran-redland-1.0.17-14/man/librdf_statement_set_object.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_set_object.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_set_object.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Set the statement object. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_set_predicate.Rd r-cran-redland-1.0.17-14/man/librdf_statement_set_predicate.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_set_predicate.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_set_predicate.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Set the statement predicate. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_statement_set_subject.Rd r-cran-redland-1.0.17-14/man/librdf_statement_set_subject.Rd --- r-cran-redland-1.0.17-11/man/librdf_statement_set_subject.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_statement_set_subject.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Set the statement subject. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_stream_end.Rd r-cran-redland-1.0.17-14/man/librdf_stream_end.Rd --- r-cran-redland-1.0.17-11/man/librdf_stream_end.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_stream_end.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Test if the stream has ended. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_stream_get_object.Rd r-cran-redland-1.0.17-14/man/librdf_stream_get_object.Rd --- r-cran-redland-1.0.17-11/man/librdf_stream_get_object.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_stream_get_object.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Get the current librdf_statement in the stream. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_stream_next.Rd r-cran-redland-1.0.17-14/man/librdf_stream_next.Rd --- r-cran-redland-1.0.17-11/man/librdf_stream_next.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_stream_next.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Move to the next librdf_statement in the stream. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_uri_compare.Rd r-cran-redland-1.0.17-14/man/librdf_uri_compare.Rd --- r-cran-redland-1.0.17-11/man/librdf_uri_compare.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_uri_compare.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Compare two librdf_uri objects lexicographically. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_uri_equals.Rd r-cran-redland-1.0.17-14/man/librdf_uri_equals.Rd --- r-cran-redland-1.0.17-11/man/librdf_uri_equals.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_uri_equals.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Compare two librdf_uri objects for equality. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_uri_to_string.Rd r-cran-redland-1.0.17-14/man/librdf_uri_to_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_uri_to_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_uri_to_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Format the URI as a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_decimal_get.Rd r-cran-redland-1.0.17-14/man/librdf_version_decimal_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_decimal_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_decimal_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return Redland librdf copyright } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_decimal.Rd r-cran-redland-1.0.17-14/man/librdf_version_decimal.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_decimal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_decimal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Library full version as a decimal integer. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_major_get.Rd r-cran-redland-1.0.17-14/man/librdf_version_major_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_major_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_major_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return the Redland librdf major version number } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_major.Rd r-cran-redland-1.0.17-14/man/librdf_version_major.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_major.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_major.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Library major version number as a decimal integer. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_minor_get.Rd r-cran-redland-1.0.17-14/man/librdf_version_minor_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_minor_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_minor_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return the Redland librdf minor version number } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_minor.Rd r-cran-redland-1.0.17-14/man/librdf_version_minor.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_minor.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_minor.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Library minor version number as a decimal integer. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_release_get.Rd r-cran-redland-1.0.17-14/man/librdf_version_release_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_release_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_release_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return the Redland librdf release version number } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_release.Rd r-cran-redland-1.0.17-14/man/librdf_version_release.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_release.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_release.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Library release version number as a decimal integer. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_string_get.Rd r-cran-redland-1.0.17-14/man/librdf_version_string_get.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_string_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_string_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Return the Redland librdf version as a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_version_string.Rd r-cran-redland-1.0.17-14/man/librdf_version_string.Rd --- r-cran-redland-1.0.17-11/man/librdf_version_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_version_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Library full version as a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_world_get_feature.Rd r-cran-redland-1.0.17-14/man/librdf_world_get_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_world_get_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_world_get_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -20,7 +20,7 @@ Get the value of a world feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_world_open.Rd r-cran-redland-1.0.17-14/man/librdf_world_open.Rd --- r-cran-redland-1.0.17-11/man/librdf_world_open.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_world_open.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -17,7 +17,7 @@ Open a created redland world environment. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_world_set_feature.Rd r-cran-redland-1.0.17-14/man/librdf_world_set_feature.Rd --- r-cran-redland-1.0.17-11/man/librdf_world_set_feature.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_world_set_feature.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -26,7 +26,7 @@ Set the value of a world feature. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/librdf_world_set_logger.Rd r-cran-redland-1.0.17-14/man/librdf_world_set_logger.Rd --- r-cran-redland-1.0.17-11/man/librdf_world_set_logger.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/librdf_world_set_logger.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -23,7 +23,7 @@ Set the world log handling function. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/Model-initialize.Rd r-cran-redland-1.0.17-14/man/Model-initialize.Rd --- r-cran-redland-1.0.17-11/man/Model-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Model-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Model.R -\docType{methods} \name{initialize,Model-method} \alias{initialize,Model-method} \alias{Model-initialize} diff -Nru r-cran-redland-1.0.17-11/man/Node-initialize.Rd r-cran-redland-1.0.17-14/man/Node-initialize.Rd --- r-cran-redland-1.0.17-11/man/Node-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Node-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,13 +1,11 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Node.R -\docType{methods} \name{initialize,Node-method} \alias{initialize,Node-method} \alias{Node-initialize} \title{Initialize a Node object.} \usage{ -\S4method{initialize}{Node}(.Object, world, literal, uri, blank, - datatype_uri, language) +\S4method{initialize}{Node}(.Object, world, literal, uri, blank, datatype_uri, language) } \arguments{ \item{.Object}{the Node object to be initialized} diff -Nru r-cran-redland-1.0.17-11/man/parseFileIntoModel.Rd r-cran-redland-1.0.17-14/man/parseFileIntoModel.Rd --- r-cran-redland-1.0.17-11/man/parseFileIntoModel.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/parseFileIntoModel.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Parser.R -\docType{methods} \name{parseFileIntoModel} \alias{parseFileIntoModel} \alias{parseFileIntoModel,Parser,World,character,Model-method} @@ -8,8 +7,7 @@ \usage{ parseFileIntoModel(.Object, world, filePath, model, ...) -\S4method{parseFileIntoModel}{Parser,World,character,Model}(.Object, world, - filePath, model, baseUri = as.character(NA)) +\S4method{parseFileIntoModel}{Parser,World,character,Model}(.Object, world, filePath, model, baseUri = as.character(NA)) } \arguments{ \item{.Object}{a Parser object} diff -Nru r-cran-redland-1.0.17-11/man/Parser-initialize.Rd r-cran-redland-1.0.17-14/man/Parser-initialize.Rd --- r-cran-redland-1.0.17-11/man/Parser-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Parser-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,13 +1,17 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Parser.R -\docType{methods} \name{initialize,Parser-method} \alias{initialize,Parser-method} \alias{Parser-initialize} \title{Initialize a Parser object.} \usage{ -\S4method{initialize}{Parser}(.Object, world, name = "rdfxml", - mimeType = "application/rdf+xml", typeUri = as.character(NA)) +\S4method{initialize}{Parser}( + .Object, + world, + name = "rdfxml", + mimeType = "application/rdf+xml", + typeUri = as.character(NA) +) } \arguments{ \item{.Object}{the Parser object} diff -Nru r-cran-redland-1.0.17-11/man/Query-initialize.Rd r-cran-redland-1.0.17-14/man/Query-initialize.Rd --- r-cran-redland-1.0.17-11/man/Query-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Query-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,13 +1,18 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{initialize,Query-method} \alias{initialize,Query-method} \alias{Query-initialize} \title{Initialize the Query object.} \usage{ -\S4method{initialize}{Query}(.Object, world, querystring, - base_uri = NULL, query_language = "sparql", query_uri = NULL) +\S4method{initialize}{Query}( + .Object, + world, + querystring, + base_uri = NULL, + query_language = "sparql", + query_uri = NULL +) } \arguments{ \item{.Object}{the Query object} diff -Nru r-cran-redland-1.0.17-11/man/QueryResults-initialize.Rd r-cran-redland-1.0.17-14/man/QueryResults-initialize.Rd --- r-cran-redland-1.0.17-11/man/QueryResults-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/QueryResults-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/QueryResults.R -\docType{methods} \name{initialize,QueryResults-method} \alias{initialize,QueryResults-method} \alias{QueryResults-initialize} diff -Nru r-cran-redland-1.0.17-11/man/raptor_locator_byte.Rd r-cran-redland-1.0.17-14/man/raptor_locator_byte.Rd --- r-cran-redland-1.0.17-11/man/raptor_locator_byte.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_locator_byte.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -18,7 +18,7 @@ Get the locator byte offset from locator } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_locator_column.Rd r-cran-redland-1.0.17-14/man/raptor_locator_column.Rd --- r-cran-redland-1.0.17-11/man/raptor_locator_column.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_locator_column.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -19,7 +19,7 @@ Get column number from locator } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_locator_file.Rd r-cran-redland-1.0.17-14/man/raptor_locator_file.Rd --- r-cran-redland-1.0.17-11/man/raptor_locator_file.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_locator_file.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get file name from locator. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_locator_line.Rd r-cran-redland-1.0.17-14/man/raptor_locator_line.Rd --- r-cran-redland-1.0.17-11/man/raptor_locator_line.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_locator_line.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -18,7 +18,7 @@ Get line number from locator. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_locator_uri.Rd r-cran-redland-1.0.17-14/man/raptor_locator_uri.Rd --- r-cran-redland-1.0.17-11/man/raptor_locator_uri.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_locator_uri.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get URI from locator. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_decimal_get.Rd r-cran-redland-1.0.17-14/man/raptor_version_decimal_get.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_decimal_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_decimal_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Raptor version as a decimal number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_decimal.Rd r-cran-redland-1.0.17-14/man/raptor_version_decimal.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_decimal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_decimal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Raptor version as a decimal number } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_major_get.Rd r-cran-redland-1.0.17-14/man/raptor_version_major_get.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_major_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_major_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get Raptor library major version. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_major.Rd r-cran-redland-1.0.17-14/man/raptor_version_major.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_major.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_major.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Raptor library major version. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_minor_get.Rd r-cran-redland-1.0.17-14/man/raptor_version_minor_get.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_minor_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_minor_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get Raptor library minor version. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_minor.Rd r-cran-redland-1.0.17-14/man/raptor_version_minor.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_minor.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_minor.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Raptor library minor version. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_release_get.Rd r-cran-redland-1.0.17-14/man/raptor_version_release_get.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_release_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_release_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get Raptor library release. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_release.Rd r-cran-redland-1.0.17-14/man/raptor_version_release.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_release.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_release.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Raptor library release. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_string_get.Rd r-cran-redland-1.0.17-14/man/raptor_version_string_get.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_string_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_string_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get Raptor library version string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/raptor_version_string.Rd r-cran-redland-1.0.17-14/man/raptor_version_string.Rd --- r-cran-redland-1.0.17-11/man/raptor_version_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/raptor_version_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Raptor library version string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_decimal_get.Rd r-cran-redland-1.0.17-14/man/rasqal_version_decimal_get.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_decimal_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_decimal_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get the Rasqal version as a decimal number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_decimal.Rd r-cran-redland-1.0.17-14/man/rasqal_version_decimal.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_decimal.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_decimal.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Rasqal version as a decimal number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_major_get.Rd r-cran-redland-1.0.17-14/man/rasqal_version_major_get.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_major_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_major_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get Rasqal major version number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_major.Rd r-cran-redland-1.0.17-14/man/rasqal_version_major.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_major.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_major.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Rasqal major version number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_minor_get.Rd r-cran-redland-1.0.17-14/man/rasqal_version_minor_get.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_minor_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_minor_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get the Rasqal minor version number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_minor.Rd r-cran-redland-1.0.17-14/man/rasqal_version_minor.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_minor.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_minor.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Rasqal minor version number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_release_get.Rd r-cran-redland-1.0.17-14/man/rasqal_version_release_get.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_release_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_release_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get the Rasqal release version number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_release.Rd r-cran-redland-1.0.17-14/man/rasqal_version_release.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_release.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_release.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Rasqal release version number. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_string_get.Rd r-cran-redland-1.0.17-14/man/rasqal_version_string_get.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_string_get.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_string_get.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Get the Rasqal version as a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/rasqal_version_string.Rd r-cran-redland-1.0.17-14/man/rasqal_version_string.Rd --- r-cran-redland-1.0.17-11/man/rasqal_version_string.Rd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/rasqal_version_string.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -16,7 +16,7 @@ Rasqal version as a string. } \references{ -\url{http://librdf.org/docs} +\url{http://librdf.org/docs/} } \seealso{ This R function is a wrapper function that directly calls the the Redland RDF C libraries. diff -Nru r-cran-redland-1.0.17-11/man/redland.Rd r-cran-redland-1.0.17-14/man/redland.Rd --- r-cran-redland-1.0.17-11/man/redland.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/redland.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -3,7 +3,6 @@ \docType{package} \name{redland} \alias{redland} -\alias{redland-package} \title{Create, query and write RDF graphs.} \description{ The R package \emph{redland} provides methods to create, query and write information stored in the @@ -15,7 +14,7 @@ The Redland C library functions are described at \url{http://librdf.org/docs/api/index.html}. -An introduction to RDF can be found at \url{http://www.w3.org/TR/rdf-primer}. +An introduction to RDF can be found at \url{http://www.w3.org/TR/rdf-primer/}. } \details{ The redland R package classes and the corresponding Redland C library types are shown in the following table: diff -Nru r-cran-redland-1.0.17-11/man/roclet_process.roclet_mergeNamespace.Rd r-cran-redland-1.0.17-14/man/roclet_process.roclet_mergeNamespace.Rd --- r-cran-redland-1.0.17-11/man/roclet_process.roclet_mergeNamespace.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/roclet_process.roclet_mergeNamespace.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -4,8 +4,7 @@ \alias{roclet_process.roclet_mergeNamespace} \title{Roxygen process function for the 'mergeNamespace' roclet} \usage{ -\method{roclet_process}{roclet_mergeNamespace}(x, blocks, env, base_path, - global_options = list()) +\method{roclet_process}{roclet_mergeNamespace}(x, blocks, env, base_path, global_options = list()) } \arguments{ \item{x}{the currently running roclet} diff -Nru r-cran-redland-1.0.17-11/man/Serializer-initialize.Rd r-cran-redland-1.0.17-14/man/Serializer-initialize.Rd --- r-cran-redland-1.0.17-11/man/Serializer-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Serializer-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,13 +1,17 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Serializer.R -\docType{methods} \name{initialize,Serializer-method} \alias{initialize,Serializer-method} \alias{Serializer-initialize} \title{Construct a Serializer object.} \usage{ -\S4method{initialize}{Serializer}(.Object, world, name = "rdfxml", - mimeType = "application/rdf+xml", typeUri = as.character(NA)) +\S4method{initialize}{Serializer}( + .Object, + world, + name = "rdfxml", + mimeType = "application/rdf+xml", + typeUri = as.character(NA) +) } \arguments{ \item{.Object}{the Serializer object} diff -Nru r-cran-redland-1.0.17-11/man/serializeToCharacter.Rd r-cran-redland-1.0.17-14/man/serializeToCharacter.Rd --- r-cran-redland-1.0.17-11/man/serializeToCharacter.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/serializeToCharacter.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Serializer.R -\docType{methods} \name{serializeToCharacter} \alias{serializeToCharacter} \alias{serializeToCharacter,Serializer,World,Model-method} @@ -8,8 +7,7 @@ \usage{ serializeToCharacter(.Object, world, model, ...) -\S4method{serializeToCharacter}{Serializer,World,Model}(.Object, world, - model, baseUri = as.character(NA)) +\S4method{serializeToCharacter}{Serializer,World,Model}(.Object, world, model, baseUri = as.character(NA)) } \arguments{ \item{.Object}{a Serializer object} diff -Nru r-cran-redland-1.0.17-11/man/serializeToFile.Rd r-cran-redland-1.0.17-14/man/serializeToFile.Rd --- r-cran-redland-1.0.17-11/man/serializeToFile.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/serializeToFile.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Serializer.R -\docType{methods} \name{serializeToFile} \alias{serializeToFile} \alias{serializeToFile,Serializer,World,Model,character-method} @@ -8,8 +7,7 @@ \usage{ serializeToFile(.Object, world, model, filePath, ...) -\S4method{serializeToFile}{Serializer,World,Model,character}(.Object, - world, model, filePath, baseUri = as.character(NA)) +\S4method{serializeToFile}{Serializer,World,Model,character}(.Object, world, model, filePath, baseUri = as.character(NA)) } \arguments{ \item{.Object}{a Serializer object} diff -Nru r-cran-redland-1.0.17-11/man/setNameSpace.Rd r-cran-redland-1.0.17-14/man/setNameSpace.Rd --- r-cran-redland-1.0.17-11/man/setNameSpace.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/setNameSpace.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Serializer.R -\docType{methods} \name{setNameSpace} \alias{setNameSpace} \alias{setNameSpace,Serializer,World,character,character-method} @@ -8,8 +7,7 @@ \usage{ setNameSpace(.Object, world, namespace, prefix) -\S4method{setNameSpace}{Serializer,World,character,character}(.Object, - world, namespace, prefix) +\S4method{setNameSpace}{Serializer,World,character,character}(.Object, world, namespace, prefix) } \arguments{ \item{.Object}{a Serializer object} diff -Nru r-cran-redland-1.0.17-11/man/setQueryResultsLimit.Rd r-cran-redland-1.0.17-14/man/setQueryResultsLimit.Rd --- r-cran-redland-1.0.17-11/man/setQueryResultsLimit.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/setQueryResultsLimit.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{setQueryResultLimit} \alias{setQueryResultLimit} \alias{setQueryResultsLimit} diff -Nru r-cran-redland-1.0.17-11/man/Statement-initialize.Rd r-cran-redland-1.0.17-14/man/Statement-initialize.Rd --- r-cran-redland-1.0.17-11/man/Statement-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Statement-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,15 +1,21 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Statement.R -\docType{methods} \name{initialize,Statement-method} \alias{initialize,Statement-method} \alias{Statement-initialize} \title{Construct a Statement object.} \usage{ -\S4method{initialize}{Statement}(.Object, world, subject, predicate, - object, subjectType = as.character(NA), - objectType = as.character(NA), datatype_uri = as.character(NA), - language = as.character(NA)) +\S4method{initialize}{Statement}( + .Object, + world, + subject, + predicate, + object, + subjectType = as.character(NA), + objectType = as.character(NA), + datatype_uri = as.character(NA), + language = as.character(NA) +) } \arguments{ \item{.Object}{the Statement object} diff -Nru r-cran-redland-1.0.17-11/man/Storage-initialize.Rd r-cran-redland-1.0.17-14/man/Storage-initialize.Rd --- r-cran-redland-1.0.17-11/man/Storage-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/Storage-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,13 +1,17 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Storage.R -\docType{methods} \name{initialize,Storage-method} \alias{initialize,Storage-method} \alias{Storage-initialize} \title{Initialize a Storage object} \usage{ -\S4method{initialize}{Storage}(.Object, world, type = "hashes", - name = "", options = "hash-type='memory'") +\S4method{initialize}{Storage}( + .Object, + world, + type = "hashes", + name = "", + options = "hash-type='memory'" +) } \arguments{ \item{.Object}{the Storage object} diff -Nru r-cran-redland-1.0.17-11/man/World-initialize.Rd r-cran-redland-1.0.17-14/man/World-initialize.Rd --- r-cran-redland-1.0.17-11/man/World-initialize.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/World-initialize.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/World.R -\docType{methods} \name{initialize,World-method} \alias{initialize,World-method} \alias{World-initialize} diff -Nru r-cran-redland-1.0.17-11/man/writeResults.Rd r-cran-redland-1.0.17-14/man/writeResults.Rd --- r-cran-redland-1.0.17-11/man/writeResults.Rd 2019-10-06 23:56:08.000000000 +0000 +++ r-cran-redland-1.0.17-14/man/writeResults.Rd 2020-10-12 17:18:54.000000000 +0000 @@ -1,6 +1,5 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/Query.R -\docType{methods} \name{writeResults} \alias{writeResults} \alias{writeResults,Query-method} @@ -8,9 +7,14 @@ \usage{ writeResults(.Object, model, ...) -\S4method{writeResults}{Query}(.Object, model, file, - mimeType = "application/x-turtle", format_uri = NULL, - base_uri = NULL) +\S4method{writeResults}{Query}( + .Object, + model, + file, + mimeType = "application/x-turtle", + format_uri = NULL, + base_uri = NULL +) } \arguments{ \item{.Object}{a Query object} diff -Nru r-cran-redland-1.0.17-11/MD5 r-cran-redland-1.0.17-14/MD5 --- r-cran-redland-1.0.17-11/MD5 2019-10-13 14:10:03.000000000 +0000 +++ r-cran-redland-1.0.17-14/MD5 2020-10-21 19:10:02.000000000 +0000 @@ -1,8 +1,8 @@ -dc320ed66caad31aeb01c44b4c38d49f *DESCRIPTION +9996a0aba5d4060a6212e93054b9f365 *DESCRIPTION e85bd917375ce513a2510c922344a4dd *NAMESPACE -76bb24ba5c567d828d2b60e53b2a62bc *NEWS +09aa3b03eded8402cd0e5e3f6d87b223 *NEWS 830a83252828aa818699e1c9df805452 *R/Model.R -f829d7e4f29de643b42c145a93040e95 *R/Node.R +b95c78857cd38dd27073e6dac73f7f34 *R/Node.R 545c3ce03b2de8aff87ff289bde4db5b *R/Parser.R a9fbc2b6945fa8b640ee2eccc5c5ed38 *R/Query.R 0876f0a428c068e7392ff6b4d8c18ee7 *R/QueryResults.R @@ -11,295 +11,295 @@ 246c04a234124f9a0b773dff9435f898 *R/Storage.R b03bdae3a55fbff808e6011cf2630da1 *R/World.R 4dc5e3968f356c8c1e8f97ae073e3b86 *R/mergeNamespace_roclet.R -00f8bbbc5541af015ce2fda2960617e3 *R/redland-package.R +822b79de9f5d1342a9e3be5a9bdda568 *R/redland-package.R 9699fadf9faf5ac1a06d16a333bcc28e *R/redland.R e2dd1cf7d9d827f8e6833814a2754aaf *R/util.R -79e9ee275b49a630e3904ab2345fc730 *README.md -487cf9b5a3df69f9e7cbcb1fb7091fdb *build/vignette.rds +5f47afd41b5968848f90ca7a576e5dbd *README.md +081ba426af0d625054fdeaaeda00c2b4 *build/vignette.rds 6071edd604dbeb75308cfbedc7790398 *cleanup -2927621f7e992a495b5fd2946d1c7651 *configure +1c76627ac00e2f9b46a37534ac55243e *configure d41d8cd98f00b204e9800998ecf8427e *configure.win d3855d3fbaac2d0a20d1e51d67e1eee3 *inst/CITATION b07a9afd8482086dfb02c2a15cee36cd *inst/COPYRIGHTS 0cdeb67a708b9ea50f172e121fb24855 *inst/NOTICE f6e936158b460297c7f6c207b24e558c *inst/WORDLIST -5e2b83c8e326012cd983294bbc5f670d *inst/doc/redland_overview.R -f86668254d1fec2e8f04314af6e7a2c9 *inst/doc/redland_overview.Rmd -f0783d46aa5dde1fb698b7cde7fec0b3 *inst/doc/redland_overview.html +6fece89ee8533c8ce26c5f911020357d *inst/doc/redland_overview.R +fb49a2101f6a29a88b69da4c5d3362c4 *inst/doc/redland_overview.Rmd +6631dc2c935cfc150586c49b031e9d71 *inst/doc/redland_overview.html 67f3001bf4fce8f92ff0b4ebea9927dc *inst/extdata/dc.rdf 59940b488bb6ae076454faefbc439528 *inst/extdata/example.rdf 7e0f88c1a1d08e1c79daaf28dbcdbddb *man/Model-class.Rd -03dd22e2f9017a3a76718d0f15e15af7 *man/Model-initialize.Rd +84047071fb6f3f0e10366e4f462b3904 *man/Model-initialize.Rd 7baaf2bc6468323ae04cbd0e136e86b4 *man/Node-class.Rd -94138a7e71c1b2f04864f6bd375f14e6 *man/Node-initialize.Rd +65686adb65fd71717b7d53c89061eea8 *man/Node-initialize.Rd 5357d00b0e21538dffa66aae2db16740 *man/Parser-class.Rd -0fc6c400d7c16cc27cb54af3969ec0db *man/Parser-initialize.Rd +d5b43a8a417496311344e36ee07191e6 *man/Parser-initialize.Rd 6c7ed6042ae56604d1ee0f6b7f0075a7 *man/Query-class.Rd -7d06c01393dc3c8ddd3db71be9b59912 *man/Query-initialize.Rd +acfdde407ff3bcc99143d13c8f12173f *man/Query-initialize.Rd 36c8ccab9ccfe31728a173bae05bb39e *man/QueryResults-class.Rd -1cf771a175654bb5afeecd3dc6ac1a5a *man/QueryResults-initialize.Rd +fd8efd117a08c4f246fc9ac92de7a7d3 *man/QueryResults-initialize.Rd bbfb1343291f92d696185857858309d6 *man/Serializer-class.Rd -4b19509fb1e0ab9c439f81678ca88f33 *man/Serializer-initialize.Rd +dbdbed489254ef7a30c323ae149a4c57 *man/Serializer-initialize.Rd 7b371136b4da2ee83027dd62c550a0c6 *man/Statement-class.Rd -bf44371c5a58ae2c59d7010b613b439e *man/Statement-initialize.Rd +3b0fe3fa25d0668b77f07be526d51c28 *man/Statement-initialize.Rd 54be2ec1183d7d29cda0b0661ad8c76c *man/Storage-class.Rd -d92656843b88447b65f155aa27d894ef *man/Storage-initialize.Rd +7fe20afd517d819ddf8143d52bf5b195 *man/Storage-initialize.Rd 32d941848883cbf9deebea1a3b1bcb9b *man/World-class.Rd -41a49e36a2a3b47639417b826e0eee3b *man/World-initialize.Rd -612d6297aed1e67f345ed9ef69ef4890 *man/addStatement.Rd -60e394a0bd5bad8dbb9cdac1d1da2867 *man/executeQuery.Rd -78dc10f1984c4eeae7d8f6453732c027 *man/freeModel.Rd -2b6506249b05f2d1ffd5edce2e305fb1 *man/freeParser.Rd -08af1301eb43ae33013b65478f7de910 *man/freeQuery.Rd -c6758df15340acd58b1e826b3c4c273b *man/freeQueryResults.Rd -7cdc742941979621cd7d2363b24add17 *man/freeSerializer.Rd -90d32aae5317e835e50060d835bc9fb4 *man/freeStatement.Rd -5fd93fadc3fd72a88467bd0558d7e852 *man/freeStorage.Rd -82a24988e54583cf0a975dbd3c84d429 *man/freeWorld.Rd -4261b26312f883a3ade69d88191b98cc *man/getBlankNodeId.Rd -38c1cf5255f40a5f7022a23cd59ea647 *man/getNodeType.Rd -2a2a55c7c921566da8b7a9917d284ddc *man/getNodeValue.Rd -da12d4e0ccca9a59323831cbdc0df235 *man/getQueryResultsLimit.Rd -e0760e1a1e960f74364a0d6186182f6c *man/getResults.Rd -f48b62e597bd4567d8b6a4d0950820ca *man/getTermType.Rd +83492e6e58ac8b47cdc6649dcd820a69 *man/World-initialize.Rd +8097164cde5a1fd1954cfe54dcd25504 *man/addStatement.Rd +b2c0c6a26c5d7f162ab2cdb1f5700725 *man/executeQuery.Rd +6258377906e32f6d7be31230aa5613f0 *man/freeModel.Rd +f785780a98dba71aa3e6021628ea9a3e *man/freeParser.Rd +14df2fefafc3d9ba043d73a2b4fa862d *man/freeQuery.Rd +8b00937b0757bdabf5fad9688e3611ed *man/freeQueryResults.Rd +50a34e06f246261b6a78e80e82f7de17 *man/freeSerializer.Rd +3ed2c87908d90ba4c552b99134603a22 *man/freeStatement.Rd +0f252ffb8443a92ea315fb929cf7b33c *man/freeStorage.Rd +2f9fa2a945c6514b68937ae72c557cba *man/freeWorld.Rd +c78b5e8ce5ef429708e404fcab1240ab *man/getBlankNodeId.Rd +68635c6ce58f27c828e4f0904283c9ec *man/getNodeType.Rd +55f8658dfb195d877b4c437af0453df0 *man/getNodeValue.Rd +23809531aee79253d1d8e821f1a63350 *man/getQueryResultsLimit.Rd +b9cfaae833f04b638e88d67a32964f8f *man/getResults.Rd +4ce9d5cc84c539b324cf4776b98c7015 *man/getTermType.Rd cef20d1c35c357463d68a8daea4834d8 *man/is.null.externalptr.Rd dda71d868c919ca7e1067703978c3972 *man/length-SWIGArray-method.Rd -99aefce0fe4c52d4bf7e5cc2a07e1227 *man/librdf_copyright_string.Rd -b255f56448561d800141a72674c602c6 *man/librdf_copyright_string_get.Rd -b76ef25e2e1d840fca09351be3ff3fe6 *man/librdf_digest_final.Rd -5a1104b92c33bd701f74a9b5b457fb26 *man/librdf_digest_init.Rd -4dc6f6af9ac83c0e2fbc438b28b474a0 *man/librdf_digest_to_string.Rd -63aeb8bda6d5fe1ba232c1f6bc3f82c5 *man/librdf_digest_update.Rd -406bbb6588b2fb99557c20573ba4ba82 *man/librdf_digest_update_string.Rd -0a362a229b44bc86e19a97e10ac70d91 *man/librdf_free_digest.Rd -5238bf36b01e23ca17712c10c477cb3a *man/librdf_free_hash.Rd -728159d44ca4196a7196f0929c9c8842 *man/librdf_free_iterator.Rd -95fb5973bb796813369e9d7d9d593e7d *man/librdf_free_model.Rd -6940afe4468e3c2c9e0fa6570684829b *man/librdf_free_node.Rd -0941ace1f02b789d5fc357b7865cd488 *man/librdf_free_parser.Rd -dba289247d60af0b8fef4dc51b7a3fd1 *man/librdf_free_query.Rd -192f9be81c98f1656d3b70f34afe2f59 *man/librdf_free_query_results.Rd -2981e1e59d7ab638afabade08132f3c4 *man/librdf_free_serializer.Rd -6bb97983f6bb3baa4df76db149386f37 *man/librdf_free_statement.Rd -377423cfb4629f2074da5d0c1d28c47a *man/librdf_free_storage.Rd -2e58e93debf7c6a6e06545ab8f402fde *man/librdf_free_stream.Rd -58b15dd57537e9f209bfd2d3c7a281a2 *man/librdf_free_uri.Rd -fd262c2c04f5b52636e07d39c28ccb15 *man/librdf_free_world.Rd -bfef7812890a910d94d4628ab51be633 *man/librdf_hash_to_string.Rd -e33baf62abadcf3efcfb74d3fb267889 *man/librdf_internal_test_error.Rd -829c378c7781e3e84cbe9fb9b5bb228f *man/librdf_internal_test_warning.Rd -0703d3c44a38546a1fbc456ddb0c674b *man/librdf_iterator_end.Rd -648b7a494d8ca9aa434e26d7dbbd93e2 *man/librdf_iterator_get_context.Rd -ad5fbf57149216a4c49829db79e9cb57 *man/librdf_iterator_get_object.Rd -30cb71ea9fa847657c76d21a86aa844e *man/librdf_iterator_next.Rd -8c31136a1ac10cf897aedcdad3481b4b *man/librdf_log_message_code.Rd -127f7039ae356f5cadebde8f5168febb *man/librdf_log_message_facility.Rd -61e7650e174364163c1668e95dbb35d2 *man/librdf_log_message_level.Rd -7856753d512c8984cccc353d64d210e1 *man/librdf_log_message_locator.Rd -9e8c176448d1877994f170a236fe3a9c *man/librdf_log_message_message.Rd -1b47f1781070db4d4c7bb757d0712927 *man/librdf_model_add.Rd -2c2b621ac95fddd4fcf9cdec54dd4346 *man/librdf_model_add_statement.Rd -c59d5508b0520fa6ea7acc5c9c7656be *man/librdf_model_add_statements.Rd -ad98808c627b4206a011ca376c9350d8 *man/librdf_model_add_string_literal_statement.Rd -c04645c5c7263909fa9d0914e89ebba0 *man/librdf_model_add_typed_literal_statement.Rd -f93327a5480f211b0e1629056a81b3fc *man/librdf_model_as_stream.Rd -29e833283d50f178ee0bad281bc87615 *man/librdf_model_contains_context.Rd -89538cd6d62da9793814cfa45b39245f *man/librdf_model_contains_statement.Rd -54016064c16b97735dbfbfd40788ff8a *man/librdf_model_context_add_statement.Rd -0834c18a0c24520e04e222165c3b9090 *man/librdf_model_context_add_statements.Rd -6fca4f43b850546694ad15cfb2c29e71 *man/librdf_model_context_as_stream.Rd -73b0210bc3210c356aa00d6f75a921cb *man/librdf_model_context_remove_statement.Rd -be2df7ce711d105a0b87ac204ad3d31e *man/librdf_model_context_remove_statements.Rd -3735cdbd86edca88642318e7a7071565 *man/librdf_model_find_statements.Rd -bbca4e691f411344322018b05296b002 *man/librdf_model_find_statements_in_context.Rd -17a5cb1f96215bd7fbb70881d90776f2 *man/librdf_model_get_arc.Rd -b2f55b8feb50429c0456c1513df593f3 *man/librdf_model_get_arcs.Rd -ba1bf709b474ad708b0ff380c5ccfccd *man/librdf_model_get_arcs_in.Rd -73738d6a123dced22bf1a11b9175385f *man/librdf_model_get_arcs_out.Rd -b7a30d8da339e017e316d9c839f0278d *man/librdf_model_get_contexts.Rd -b2eb0b80fd10a9ae0779775b1bdc16c2 *man/librdf_model_get_feature.Rd -e6089d09ffa968d1b3e6c80c41e63160 *man/librdf_model_get_source.Rd -62f5d8ab9be74d57fc003aea355b1f43 *man/librdf_model_get_sources.Rd -3131d9b35aead4886d163d40ae425814 *man/librdf_model_get_target.Rd -0f80bcd4817dd32032132f8e067f9ee0 *man/librdf_model_get_targets.Rd -ea9b63c6c8e520faa9e0fe600af192a5 *man/librdf_model_has_arc_in.Rd -cb996c619198e75bb7805404c8287479 *man/librdf_model_has_arc_out.Rd -098e0c34f397195cafbd83bb2c81025c *man/librdf_model_load.Rd -0e300455d48bb04c39c49dfae0c0d01e *man/librdf_model_query_execute.Rd -eca81132f357b779d5ce49f993edb340 *man/librdf_model_remove_statement.Rd -b47458c52e976b93dfc08cf8b8f333b1 *man/librdf_model_set_feature.Rd -fb2f16ec70e6f92858711d39806ed70f *man/librdf_model_size.Rd -06fb5c725b6f8aece779edec93e14cb0 *man/librdf_model_sync.Rd -b8e44d1a88d05db615795e6be976c372 *man/librdf_model_to_string.Rd -788e8319d874ef147d4d2159709c71af *man/librdf_model_transaction_commit.Rd -a578fa7d30a33489e90304f84abef624 *man/librdf_model_transaction_rollback.Rd -f9e74b3e5bc5cd3f7e7510b9584aa74d *man/librdf_model_transaction_start.Rd -90ca33ba6add7848998120be4845d24e *man/librdf_new_digest.Rd -b69aeb981d0b7c53d5a0d57594e8b9ab *man/librdf_new_hash.Rd -77501ffec6cc0670ed0098a57202f09c *man/librdf_new_hash_from_array_of_strings.Rd -c80463123b0f1bbbdcb5c44d6940561a *man/librdf_new_hash_from_string.Rd -9e01fa6fddc098b03b3b1386b97e0e8d *man/librdf_new_model.Rd -05747383034a9583e22b4046849fe272 *man/librdf_new_model_from_model.Rd -74d056bfafb6f99a45cf8488564a6781 *man/librdf_new_model_with_options.Rd -51bf2bf7f1ee1639720e083809f9951f *man/librdf_new_node.Rd -f4e28ec8ec31569581b6b937be98904e *man/librdf_new_node_from_blank_identifier.Rd -dd2205744e09a0601cccecba58e584d1 *man/librdf_new_node_from_literal.Rd -6da96c63ba3df510ac902641f2e55b10 *man/librdf_new_node_from_node.Rd -ce51605d5c94b09de975a6ea23050881 *man/librdf_new_node_from_normalised_uri_string.Rd -3bb0eae4adae007f0281f6652068a736 *man/librdf_new_node_from_typed_literal.Rd -22e6d462406cd268747f58e6863f76fc *man/librdf_new_node_from_uri.Rd -2d3950dedadc0f86ce15604c176601a8 *man/librdf_new_node_from_uri_local_name.Rd -0510c88be6f85432fc63adb63941674f *man/librdf_new_node_from_uri_string.Rd -e20167390e7b520a73f8c5dee49d9c2b *man/librdf_new_parser.Rd -039a32ae64b4576fb7ce3c1033923a2c *man/librdf_new_query.Rd -b926d3d1927834f8727d04ea357fc462 *man/librdf_new_query_from_query.Rd -e6d14ad11fd157dd9c1a9913fc4543bb *man/librdf_new_serializer.Rd -95a57ad1de3e2123cac4ea3ef6798ea1 *man/librdf_new_statement.Rd -747e6e008e77c534073be5e508a9c9db *man/librdf_new_statement_from_nodes.Rd -eeabe95c6c1af1a41a507f4744a4c00a *man/librdf_new_statement_from_statement.Rd -c36749817603e0fa5ce5f5d0ed355504 *man/librdf_new_storage.Rd -faa52aeda706ea4041718e58f17558f9 *man/librdf_new_storage_from_storage.Rd -b83814d2a1cbf8c81102c19cf36c0aad *man/librdf_new_uri.Rd -bdaa5b6ff64fbe6a77da6f004ab8cf5e *man/librdf_new_uri_from_filename.Rd -d273971a83a1cd3511d6398675964c53 *man/librdf_new_uri_from_uri.Rd -baac589d3ab87f7da7a18f62b61918b4 *man/librdf_new_world.Rd -8407649495b6688339fdd8933f025113 *man/librdf_node_equals.Rd -ede0f0dbfda4447ce819226f35f3edb9 *man/librdf_node_get_blank_identifier.Rd -5bc6e92da29da1c016e46cada18e5d79 *man/librdf_node_get_li_ordinal.Rd -53909fa3cd4ec104cc27e4165bebb0e1 *man/librdf_node_get_literal_value.Rd -1c4b6755502331893bfdb13c60009275 *man/librdf_node_get_literal_value_as_latin1.Rd -ddeed52dd3d6cab0ee56e85b461e7b7e *man/librdf_node_get_literal_value_datatype_uri.Rd -f15dcd434fba76562f9c3fcfcc53485c *man/librdf_node_get_literal_value_is_wf_xml.Rd -ddfbbc1f3b6d438f2cf17b062b91cfdc *man/librdf_node_get_literal_value_language.Rd -d2c0f71225999c00c4e1ef54e2f55aa3 *man/librdf_node_get_type.Rd -003f7b33763093a7ad7153dd4a0f9805 *man/librdf_node_get_uri.Rd -6d04f52a492e76e3c29ce6b742e7d0c3 *man/librdf_node_is_blank.Rd -4a51bc5ac06004d32a0e1de17ad2b41e *man/librdf_node_is_literal.Rd -7c01f7e8c2dbb964e1c1807c7c87ec58 *man/librdf_node_is_resource.Rd -a19cedb955e0e712dbf8408c0dd95738 *man/librdf_parser_check_name.Rd -429401968d517c4a5d77b60877ec13d5 *man/librdf_parser_get_accept_header.Rd -5c293b0dec17941658b87b8a9379ef44 *man/librdf_parser_get_feature.Rd -e342a3b8c3ac48ce18f5ce092d3614a8 *man/librdf_parser_get_namespaces_seen_count.Rd -dac3d8e1b59840db1b00aee067f88f04 *man/librdf_parser_get_namespaces_seen_prefix.Rd -42185f234d8b39e7a1e853f7e3e3364b *man/librdf_parser_get_namespaces_seen_uri.Rd -cd816f3b8003762c22bcc1154cb5b402 *man/librdf_parser_guess_name2.Rd -cf73eef2a94dd474f1895f8c9e02dd1c *man/librdf_parser_parse_as_stream.Rd -bf38795ea6f4b710f6ffdc7d20db5064 *man/librdf_parser_parse_counted_string_as_stream.Rd -bd048211e22b5acdc6922848b7b4b081 *man/librdf_parser_parse_counted_string_into_model.Rd -790f90a50c7dcaa1baa15c7e64255604 *man/librdf_parser_parse_into_model.Rd -6a97992335879f9088faffb50064c9a9 *man/librdf_parser_parse_string_as_stream.Rd -dc176825e6b196a4a7c6d1205532a811 *man/librdf_parser_parse_string_into_model.Rd -29a397c29608eea3a821e8f94194890a *man/librdf_parser_set_feature.Rd -5d8397dcdd85b2b9466c452bc60f1c8f *man/librdf_query_execute.Rd -f61691decc306ab5efab04e3cd901cfe *man/librdf_query_get_limit.Rd -055798887b9d129f80d0ffbfbc75b5b9 *man/librdf_query_get_offset.Rd -069de53dec9b178c51cf7ab5000253ba *man/librdf_query_results_as_stream.Rd -73a65aa05cacbba314b0b5648a1ea4cf *man/librdf_query_results_finished.Rd -e31ff4302755778095cb1b18ec3c9fa1 *man/librdf_query_results_get_binding_name.Rd -7d281d26e8949f07ac0d60ef59408682 *man/librdf_query_results_get_binding_value.Rd -98e863b43be94b328682b26fe076ffe0 *man/librdf_query_results_get_binding_value_by_name.Rd -01c4ed737efb74cdd7ab67ba26359994 *man/librdf_query_results_get_bindings_count.Rd -53dae7ff02d2e12f7318fbb6034e7835 *man/librdf_query_results_get_boolean.Rd -bf26bef6bcab5a29e26e715fd0e08e24 *man/librdf_query_results_get_count.Rd -b7f3b1486abf8233e3ab8518e667cd88 *man/librdf_query_results_is_bindings.Rd -a349c4b11c793792478d5b8a32ad3f9d *man/librdf_query_results_is_boolean.Rd -a5b36623c9874e8c07fcde7d82994d6c *man/librdf_query_results_is_graph.Rd -453fba1f891313d768df2314dfa0ffbb *man/librdf_query_results_is_syntax.Rd -b68f822e1845275b30dd97ffb005fbfe *man/librdf_query_results_next.Rd -a0af015d124da1be65e5995e641e8588 *man/librdf_query_results_to_file2.Rd -66f9cd4a3e49a085a8c3b80958b1e1ad *man/librdf_query_results_to_string2.Rd -0f5e1a40b07c386c0dc0266cee61087b *man/librdf_query_set_limit.Rd -970d056a485ac23ff93d983721b0e405 *man/librdf_query_set_offset.Rd -70383ab27f2efc92aa727f70cb2f7065 *man/librdf_serializer_check_name.Rd -6fc5f8a60b0ccb8473a9a8eec4493139 *man/librdf_serializer_get_feature.Rd -c1c1f8ed74515c354a72bd96adf634a3 *man/librdf_serializer_serialize_model_to_file.Rd -b5e6a418210c56233c0f3315efd55caf *man/librdf_serializer_serialize_model_to_string.Rd -e046052d286443cd10f7eadacdc5d4fc *man/librdf_serializer_serialize_stream_to_file.Rd -24415a11ffa6931b1127f021580ebfbc *man/librdf_serializer_serialize_stream_to_string.Rd -8dcd3f23359b49e898338588fc3aece4 *man/librdf_serializer_set_feature.Rd -724f937a853d8e73f591bc2df18e0e81 *man/librdf_serializer_set_namespace.Rd -90527cccc718b55053cba4c9478bc8e2 *man/librdf_short_copyright_string.Rd -a04523355410c4d4bf676ac389849743 *man/librdf_short_copyright_string_get.Rd -495dbb788575b77d5aa6c2cf8b2a5b02 *man/librdf_statement_equals.Rd -ab8973fc0fe984eb5573d5f17c86053f *man/librdf_statement_get_object.Rd -456629b41bb6c6e84d6fbac8498959df *man/librdf_statement_get_predicate.Rd -d5f4767ca3a506077bcea5dcc924daf2 *man/librdf_statement_get_subject.Rd -5418f549d34352c5f55ab4ee64bed29e *man/librdf_statement_is_complete.Rd -3d38153fa9d5852b4cd0d1a317a436e0 *man/librdf_statement_match.Rd -71f3571ec998251fe3dcebe80eec3bef *man/librdf_statement_set_object.Rd -ec069a7765a86b9b03c87a7fe23af8ec *man/librdf_statement_set_predicate.Rd -4cb283a9e0f8d21edd59d015cdaa9eb3 *man/librdf_statement_set_subject.Rd -ba1ea9311d5d93e0edc49898116ae017 *man/librdf_stream_end.Rd -d32afaed8c7067da50ba10f07f1a980a *man/librdf_stream_get_object.Rd -3368fc980296a80eae4071ed80f6c7af *man/librdf_stream_next.Rd -046a812dccb4f71b7d7db8de2449b4ac *man/librdf_uri_compare.Rd -db55e02a4df0e1d54a6fb2c942187111 *man/librdf_uri_equals.Rd -784bcc202f4101002251a37f6449b18c *man/librdf_uri_to_string.Rd -cb594c377b9fca30af750dff1bbd7137 *man/librdf_version_decimal.Rd -0032958db93e0a58f1a449bf463d0d8a *man/librdf_version_decimal_get.Rd -21104feb7b5feb23719ee48d288514b7 *man/librdf_version_major.Rd -9facf78e7c8c86482c70e79a8362b071 *man/librdf_version_major_get.Rd -80e3cb2ba1a9b6281f11bd82476bd8bc *man/librdf_version_minor.Rd -1befbe789bf599b159676a7bacf39e5b *man/librdf_version_minor_get.Rd -c65a72226293ffed8fadaa01973d83cb *man/librdf_version_release.Rd -3459df52d3610f01ee2264a02abf3bed *man/librdf_version_release_get.Rd -5d002a80400935ac110a1b7ba0384384 *man/librdf_version_string.Rd -9bada4763b9a03bdebba14c0a539ab0a *man/librdf_version_string_get.Rd -4f4f88bdd80e11e28cf89b38debbaf73 *man/librdf_world_get_feature.Rd -398208e60978dec19400268e729888bf *man/librdf_world_open.Rd -34647b332084863364d2145c4f80a767 *man/librdf_world_set_feature.Rd -c8965e72a24782057f261cad816048e4 *man/librdf_world_set_logger.Rd +f77b6a68fb4a63b50a9194be4442124d *man/librdf_copyright_string.Rd +2a3893621fa02ccad455c203e01623c9 *man/librdf_copyright_string_get.Rd +c3bffb29198f6895cd6a78f59fffb2d0 *man/librdf_digest_final.Rd +26208d3d3540c7bfd120888374f07020 *man/librdf_digest_init.Rd +7f04aca705b7d012ffce0b7b5731fb32 *man/librdf_digest_to_string.Rd +c5fbb6e02348825e7d7a173e8417c0c6 *man/librdf_digest_update.Rd +91dca717e614ff96b122908058657b94 *man/librdf_digest_update_string.Rd +e5b302bbc1669f136ebbb182b6a3e615 *man/librdf_free_digest.Rd +47d152cf1e3f094392119da9723ac961 *man/librdf_free_hash.Rd +2b28a28fed06e47aaa8beeaf3c55326b *man/librdf_free_iterator.Rd +cdf50f490431ef4b3c4f6d929aa1dac5 *man/librdf_free_model.Rd +75a9d3593e2bb3b9d770d26e727ca99b *man/librdf_free_node.Rd +d19cd126826caef75648ca506592938b *man/librdf_free_parser.Rd +8d9a11ce6c88c0128f89b7841f87a0d6 *man/librdf_free_query.Rd +fcfa882d954049da736c01519359561b *man/librdf_free_query_results.Rd +c6e17938acacc4732c37a89044fc3f37 *man/librdf_free_serializer.Rd +676aa1be8499acd389b8ee8235fef2d7 *man/librdf_free_statement.Rd +43738b873def2926af70d6cdc1dac86a *man/librdf_free_storage.Rd +e6ebe1bf5bae0c99bd1721ff46888747 *man/librdf_free_stream.Rd +d7a69fae85409ca6e72d14187b051213 *man/librdf_free_uri.Rd +4b1e4cb7707632d9f06f9475763d7c6b *man/librdf_free_world.Rd +169cca6688cdecde364c7b87bd01905f *man/librdf_hash_to_string.Rd +3c9516d87a5f12e4ead0de8b0bd0ebb7 *man/librdf_internal_test_error.Rd +68f1d5e069daf29851f5b8c19b1b064c *man/librdf_internal_test_warning.Rd +45b9d1057803ed7ba93887a8f329c5c5 *man/librdf_iterator_end.Rd +b6808e1781cae025622e5e1c8d89c414 *man/librdf_iterator_get_context.Rd +fc12af9ada6cb4dd89f112122746dfea *man/librdf_iterator_get_object.Rd +894ccd5ce56a0b98719629ad23e9f50e *man/librdf_iterator_next.Rd +8adc23bd849f804fbc00b1760a993a27 *man/librdf_log_message_code.Rd +d5b4203b6ad21efdfe82b017d1142297 *man/librdf_log_message_facility.Rd +b50d050984f5ad37f49d725950c33997 *man/librdf_log_message_level.Rd +a82d98cd4d5118b0586fef2a6d121d59 *man/librdf_log_message_locator.Rd +5b5c55cfd6629b29d746ad47f6eaecd6 *man/librdf_log_message_message.Rd +725f3b017a27ca285fa7f5489ce13f7f *man/librdf_model_add.Rd +9a8bf5b037ee2f916916bc9c49f16b6e *man/librdf_model_add_statement.Rd +045dd24f609e305b35b3505607b6670a *man/librdf_model_add_statements.Rd +92873d54b7d8e37e68624f7b0aad19c5 *man/librdf_model_add_string_literal_statement.Rd +16479e5a6d54bb28dfeb8c4afef3b13e *man/librdf_model_add_typed_literal_statement.Rd +ea0d7e138b9b2b321e03ff3126f43fa5 *man/librdf_model_as_stream.Rd +d84979503681c94f0533c172dc75fdbb *man/librdf_model_contains_context.Rd +dd3b56d0a5ce8b453f8e69e51f9b2ae7 *man/librdf_model_contains_statement.Rd +812b698375fa761c6e1b29dd2e3a897d *man/librdf_model_context_add_statement.Rd +9fff37920e62fde4df37da051496d0d2 *man/librdf_model_context_add_statements.Rd +a9e61207f9a4a04a5cc68c4e59cfefdc *man/librdf_model_context_as_stream.Rd +76e376509c689dbcac000bf6191fef27 *man/librdf_model_context_remove_statement.Rd +f294de5efeab3c363e2d4ff6b0cab5fd *man/librdf_model_context_remove_statements.Rd +21803449ac233af9be8950a82eba657d *man/librdf_model_find_statements.Rd +56856b476d017f333f4e40638d01b164 *man/librdf_model_find_statements_in_context.Rd +42b598ffe00c9f04460fbc3b6716ef06 *man/librdf_model_get_arc.Rd +3e2f1c16fdfa51fd297eec9434a6372f *man/librdf_model_get_arcs.Rd +1ceec1d28d9635885b26ee65ca2eca50 *man/librdf_model_get_arcs_in.Rd +8d1a67aa9be546a700758a7a2425f371 *man/librdf_model_get_arcs_out.Rd +996b6987ef52c0ec2661dbd5fa7b9391 *man/librdf_model_get_contexts.Rd +4a78ee9932f5968931e2dfce9548d0bf *man/librdf_model_get_feature.Rd +a2166a1c44e2835414cdc5ede99e3d58 *man/librdf_model_get_source.Rd +0b5eda4fe711a36b02aeace13dbe928c *man/librdf_model_get_sources.Rd +f54f4e2eebdfbe28cd8f8755c3e81c75 *man/librdf_model_get_target.Rd +e2e79eb7c205d44dfff30b62cae7368f *man/librdf_model_get_targets.Rd +44c602b79e110a12b3b3d00bbe37c575 *man/librdf_model_has_arc_in.Rd +d97070e6a340da37b0adc4714d74b306 *man/librdf_model_has_arc_out.Rd +30f5687691e367b2896a17b771e56a64 *man/librdf_model_load.Rd +8b3aea6aca57fe3e0bbaaf3f70d32d57 *man/librdf_model_query_execute.Rd +c94ab08f85a5c9630df0bbaf67849656 *man/librdf_model_remove_statement.Rd +99e9f771815ad29449bbc0d288729a7e *man/librdf_model_set_feature.Rd +302c02ca4ffe48d47bf8d2f26df95769 *man/librdf_model_size.Rd +d6c06ad0f4a65447de0c49f67ceaf6f4 *man/librdf_model_sync.Rd +7cd7868372f872db510681e40095816c *man/librdf_model_to_string.Rd +0e2da9d6fc79b88f7bdf7498e764175a *man/librdf_model_transaction_commit.Rd +ca454fd712dfaf0ad96f072693b9fe81 *man/librdf_model_transaction_rollback.Rd +bfceaf7c529ca8f9852d8d01395d4c57 *man/librdf_model_transaction_start.Rd +cba0fee1379bf3fc0d90bbc13ddd0d6c *man/librdf_new_digest.Rd +fd191a20c81e46590d57b4f257ec5b6f *man/librdf_new_hash.Rd +94ee49b1c3d07eb273bc725a6601badf *man/librdf_new_hash_from_array_of_strings.Rd +7d4a16f10a3bb427543d84f21028e727 *man/librdf_new_hash_from_string.Rd +f3cc913d8192a76081712573ea490438 *man/librdf_new_model.Rd +82bfe61ebc8af53dfc6e12b2e7da72bf *man/librdf_new_model_from_model.Rd +8bf4d48f3837e52be539e62f0533e7f1 *man/librdf_new_model_with_options.Rd +1ea1be42dc3693dfb48f4b0670daeb8b *man/librdf_new_node.Rd +1190196e46660b73a5b4cea7647d9ff4 *man/librdf_new_node_from_blank_identifier.Rd +0dc9f945013009fc2ba9c3ea3cd48338 *man/librdf_new_node_from_literal.Rd +05b19ed1f86ae437ca27a05855956a5e *man/librdf_new_node_from_node.Rd +67b7a83c4feb8f9408b0b71d12379777 *man/librdf_new_node_from_normalised_uri_string.Rd +f6447a077e2e9f7d5a22cbcea6ec7c36 *man/librdf_new_node_from_typed_literal.Rd +3b9c0fffa60b1b48a14a33ad7759bbda *man/librdf_new_node_from_uri.Rd +ea744af5421b8470c378c6988a2374fb *man/librdf_new_node_from_uri_local_name.Rd +e10d4e46114f86ea12d952a1c506d7d0 *man/librdf_new_node_from_uri_string.Rd +7c3869e383a5165957f48e14816365f9 *man/librdf_new_parser.Rd +9ca043be6c6b3b2bfc423f32abe780ec *man/librdf_new_query.Rd +d56c6cb0603908c3a5126cc98a0a82e8 *man/librdf_new_query_from_query.Rd +5648dc798c4a4f0e13c78f9eaedafdcd *man/librdf_new_serializer.Rd +0c672a18207d6efea4d37bb107a910fa *man/librdf_new_statement.Rd +472ac909ef62b627e1b2a33bc9d5fa44 *man/librdf_new_statement_from_nodes.Rd +4460444da9172b65450f9116acdc7ac2 *man/librdf_new_statement_from_statement.Rd +abebf60efe8405fd50a39f872949f91e *man/librdf_new_storage.Rd +e6d95a0aaad1ffa42c3276ae5b5d903a *man/librdf_new_storage_from_storage.Rd +548300201f029753e77f37302ee00bd8 *man/librdf_new_uri.Rd +097c6f77760dc98c529c1a53df2c0862 *man/librdf_new_uri_from_filename.Rd +a638e964fc4c712b0c0b4ecad93499f3 *man/librdf_new_uri_from_uri.Rd +84fe93a457e57f59f373525d15cee7a0 *man/librdf_new_world.Rd +1a40edd0b26c3ca479cadafde022d6c3 *man/librdf_node_equals.Rd +37cbdd1f28cf1f09ab7bf769bcaa70f6 *man/librdf_node_get_blank_identifier.Rd +f3a0e961ed67a0129c8cd4c1c118286f *man/librdf_node_get_li_ordinal.Rd +a4686caa22b9358ee482b25289ec6bfc *man/librdf_node_get_literal_value.Rd +45e2902723c8c9770492fd620d4b0cd4 *man/librdf_node_get_literal_value_as_latin1.Rd +20256d45eb96420e8f77140dc6447694 *man/librdf_node_get_literal_value_datatype_uri.Rd +eb89200f14d80c70133b3af0ad496493 *man/librdf_node_get_literal_value_is_wf_xml.Rd +eca5eb91b1fc8bcd0b52be06b8e02b78 *man/librdf_node_get_literal_value_language.Rd +0ace5580d760e657e418ce563bfcac16 *man/librdf_node_get_type.Rd +14ad2b3455f45dd3136326c6e763428f *man/librdf_node_get_uri.Rd +6bd54f9ea9596dd8ca0fa9b786405071 *man/librdf_node_is_blank.Rd +632925cc8606a146369227ad6a7db05c *man/librdf_node_is_literal.Rd +d7bda6ee8d35691fed89045ee76e66b6 *man/librdf_node_is_resource.Rd +b727f873d0a00ed86cdb50161540bdc2 *man/librdf_parser_check_name.Rd +ace59500b1a65593be7469e48748fae6 *man/librdf_parser_get_accept_header.Rd +7b1c6debebfd806aab40de2aa90cb69d *man/librdf_parser_get_feature.Rd +dad7a7c565fada21df3b680715a2b2ea *man/librdf_parser_get_namespaces_seen_count.Rd +44b3c482c891388904e50409988dd413 *man/librdf_parser_get_namespaces_seen_prefix.Rd +95f047ed40bb72251158883efb9e9744 *man/librdf_parser_get_namespaces_seen_uri.Rd +e2ecaa5e009589a030155b7eeac624c0 *man/librdf_parser_guess_name2.Rd +bc2cfe3df1e1cb087779eff29e700b1e *man/librdf_parser_parse_as_stream.Rd +75cbe7b5b3dfa21990c403a4a67e6aaf *man/librdf_parser_parse_counted_string_as_stream.Rd +e9503bf6048e1a6acbe954867faf35ea *man/librdf_parser_parse_counted_string_into_model.Rd +ee6eff13ad6ee35e76d90c367a71b531 *man/librdf_parser_parse_into_model.Rd +491dfc29156803625f22c2e9a8a69489 *man/librdf_parser_parse_string_as_stream.Rd +720b51411a77f0af9a4c762657141be7 *man/librdf_parser_parse_string_into_model.Rd +1c89f819c6346b6054160de2ae1f8cea *man/librdf_parser_set_feature.Rd +2f9217bc3870bf5dc40b9f7231797fa8 *man/librdf_query_execute.Rd +6d6b07133ddb0acce8da0688d3873984 *man/librdf_query_get_limit.Rd +ae735896c35d66100b132537a29059df *man/librdf_query_get_offset.Rd +87eca897ebb2556b2a295f5730d9a288 *man/librdf_query_results_as_stream.Rd +8b7b2636c5d774773f03ac3c29a4299f *man/librdf_query_results_finished.Rd +62132748cc12437cf6f6f2e2206c37f5 *man/librdf_query_results_get_binding_name.Rd +f2ce2c5fdbdbd713fa984d8575989f8a *man/librdf_query_results_get_binding_value.Rd +daa95eb526280abdcdad0cd7e64db9b8 *man/librdf_query_results_get_binding_value_by_name.Rd +01cf2deb27efd6fd356223130e10a442 *man/librdf_query_results_get_bindings_count.Rd +85f2bdfd592a6b26b23779e24658f087 *man/librdf_query_results_get_boolean.Rd +31fbe2fc7a69244796a47077ccf1d759 *man/librdf_query_results_get_count.Rd +9a152a4c9f0512b6c429347c30d85d12 *man/librdf_query_results_is_bindings.Rd +2a0c109a346875cf9ddd8a87d4451075 *man/librdf_query_results_is_boolean.Rd +ccf97925edf70d61f5596f88169dbf88 *man/librdf_query_results_is_graph.Rd +3935abc47310fd3fc1118b7c87f905f6 *man/librdf_query_results_is_syntax.Rd +4890a481aae0596c0ca730e5bbdf7c6d *man/librdf_query_results_next.Rd +ed54eba2f97a1938cdbd266bd5e53a48 *man/librdf_query_results_to_file2.Rd +aad991e3940ee3f08c4884fb02aaf3bd *man/librdf_query_results_to_string2.Rd +86310adce5b66ebd423e4244153874ee *man/librdf_query_set_limit.Rd +fe3ded1fe5dc6ca0d49825db365268e1 *man/librdf_query_set_offset.Rd +4ac571e9766ef12893ded538c050febc *man/librdf_serializer_check_name.Rd +011e2aede6b5d20e8ca5fe9e11d1a9f9 *man/librdf_serializer_get_feature.Rd +388a2224b6f7f9a8375cf2b9c45e22c0 *man/librdf_serializer_serialize_model_to_file.Rd +2cbd97823731739fbb4c37cc41e42136 *man/librdf_serializer_serialize_model_to_string.Rd +c35ae83982b9b0a245d33c0c3bc403f9 *man/librdf_serializer_serialize_stream_to_file.Rd +bdfaefb68ae10db69599730afef03db5 *man/librdf_serializer_serialize_stream_to_string.Rd +86abf1d3593be5a6e5c1ffe8d439e51a *man/librdf_serializer_set_feature.Rd +eba1d54cd19eb6d1cacfecbe93b12342 *man/librdf_serializer_set_namespace.Rd +5eed821056ea09884aae84f07da7cae3 *man/librdf_short_copyright_string.Rd +98ff57b3cd515ca06024dd5ff02a0bf7 *man/librdf_short_copyright_string_get.Rd +0458d4c60fbaa43389cddbcb5c0a33e8 *man/librdf_statement_equals.Rd +acec99d90fdf0c373b0b4d871f3544f2 *man/librdf_statement_get_object.Rd +3d1cdcac82af94629431602abab4375c *man/librdf_statement_get_predicate.Rd +6a54ae0ffea005c6c6c6206ffd13a137 *man/librdf_statement_get_subject.Rd +b74e85064c136626c6d950123fe4d921 *man/librdf_statement_is_complete.Rd +d9ac71845f0ad683811da530f67edcb0 *man/librdf_statement_match.Rd +56c28dab130120fbcac8b65376ff9b78 *man/librdf_statement_set_object.Rd +b449dc6a815790cac212466607e6606e *man/librdf_statement_set_predicate.Rd +5969500395eb92f9a01e69e7ac824867 *man/librdf_statement_set_subject.Rd +1c38a4bb1ae00c69791a96ece1264240 *man/librdf_stream_end.Rd +6e547ee2d6ae7081a7a7bd42b314dc8c *man/librdf_stream_get_object.Rd +ece66a94151b893bcf6bab85553e648e *man/librdf_stream_next.Rd +75b2c1857235e5523148419732091d3a *man/librdf_uri_compare.Rd +e7985dfac3db757143d698cd7013262c *man/librdf_uri_equals.Rd +94ae3903e8b76ec71fe9be5ac8f7ae0d *man/librdf_uri_to_string.Rd +f66b697dc7f0661ed0e868b3062f9db5 *man/librdf_version_decimal.Rd +c8f9ebb63cef13d52c24fad9d79b86b7 *man/librdf_version_decimal_get.Rd +44fc4420e8fd2d8f052479570abd43e5 *man/librdf_version_major.Rd +be02ca052a180e7d62f1a3b3fe493a0d *man/librdf_version_major_get.Rd +eb27b646f978a531841dd42db9713c0f *man/librdf_version_minor.Rd +e4799d72f9438ec1653dd8ebc6bc126a *man/librdf_version_minor_get.Rd +a2e96806cde73dded9485e4433827c3a *man/librdf_version_release.Rd +f22f775c10887409ce9a8d870b1347a2 *man/librdf_version_release_get.Rd +3237c604ee2e20b9b32c61d2b0956b87 *man/librdf_version_string.Rd +22a5fd96a96f7695c0117792acc0d302 *man/librdf_version_string_get.Rd +fbb9e83e53af60494706d458d68aad9b *man/librdf_world_get_feature.Rd +f1ce2d7561927f587582a73205175a07 *man/librdf_world_open.Rd +844790b4c8c2f5830aad72cb4f18cfbf *man/librdf_world_set_feature.Rd +bfdfe952e571a062c86bed4d22a249d2 *man/librdf_world_set_logger.Rd 8d961b96a28e43c920e1f2098ca086d1 *man/mergeNamespace_roclet.Rd -e6d9d0e844544b4f110c528e72856031 *man/parseFileIntoModel.Rd -4dac30edbff476ef1c374512d71d5927 *man/raptor_locator_byte.Rd -dffe8da08b6f984b4d1e6a820bbb4816 *man/raptor_locator_column.Rd -a039d00ed4abc9cfd5350433a5233cd7 *man/raptor_locator_file.Rd -0b0f3a6f6fdc0c40f74061cb7ee34a60 *man/raptor_locator_line.Rd -358be484b9c9865e9dd30c9189f84db1 *man/raptor_locator_uri.Rd -5b329600c2c8c025444d696bace0ad6e *man/raptor_version_decimal.Rd -1b7ef712867954c716e9fb651f4bc178 *man/raptor_version_decimal_get.Rd -0efc83006c9957e0adfc05b3562b4fa9 *man/raptor_version_major.Rd -53bbd7b68fb86ff8cdab450916ac40fb *man/raptor_version_major_get.Rd -a095e23f134aef0b8378ac4a5861da9b *man/raptor_version_minor.Rd -91a2fb85e49a1109e0775f21f7bf0d4d *man/raptor_version_minor_get.Rd -2f5bd1c99362ad04cbd35a985f85db69 *man/raptor_version_release.Rd -71aa457ac8365da931faf5ac02f96a57 *man/raptor_version_release_get.Rd -1df6ac730a3b6da374889963a8b1f6a0 *man/raptor_version_string.Rd -f875ecf04b5f3b06f718fc3c9e274980 *man/raptor_version_string_get.Rd -94f1f973ae8beb381ab4f76c2fbd3210 *man/rasqal_version_decimal.Rd -d4b43cbd30e6e936b6e4246e555dd648 *man/rasqal_version_decimal_get.Rd -b387b4cde76698e15a2c05970c400b68 *man/rasqal_version_major.Rd -0533ac2be65209db619d30ae2007d802 *man/rasqal_version_major_get.Rd -00ed28b73afb791d3711fa284b0008f2 *man/rasqal_version_minor.Rd -aa424e7805c37478ab27a8dff0393dc4 *man/rasqal_version_minor_get.Rd -16eb634e58dbff48e063ebb7cf5db99d *man/rasqal_version_release.Rd -97c91fcd2e270e540266aff19c6a507f *man/rasqal_version_release_get.Rd -2a5b984a8f4a598dd104e5e24b1c2c7f *man/rasqal_version_string.Rd -403d8d480b21b2adcba40d0258f7f5fb *man/rasqal_version_string_get.Rd -94cba72abcb372facf2bf27cea1514ad *man/redland.Rd +93bad5888b9a3f8b1f0b20dedf775713 *man/parseFileIntoModel.Rd +6855322399904e05394048bac2fc5bf3 *man/raptor_locator_byte.Rd +57ff6ffe085da96e86bc2dc0150d0ade *man/raptor_locator_column.Rd +126c8d0939b4a16a93be6e4580022c12 *man/raptor_locator_file.Rd +a2ab2c08e624d2fe3fd4d466c85a6854 *man/raptor_locator_line.Rd +692b62893f7ba58f10796b42f08fb386 *man/raptor_locator_uri.Rd +601b14e27d76e9c4abecc75abb414cb7 *man/raptor_version_decimal.Rd +6af31c29cf1308b5bb94f4a26f3ab240 *man/raptor_version_decimal_get.Rd +1deaf2655d861eb3bd7dce5e04acee5b *man/raptor_version_major.Rd +f0a92ffaae57057f3fab014c32261a86 *man/raptor_version_major_get.Rd +69cb73761f5076dc773849f8f3d13d54 *man/raptor_version_minor.Rd +1413b01348fe9ce02c7b7a277e0a8798 *man/raptor_version_minor_get.Rd +f79711af62b7ba4c4738acbdfe0da019 *man/raptor_version_release.Rd +432cfa90d9b920309fda0823a21d650d *man/raptor_version_release_get.Rd +b304480dfdd81f56a057a3db1950e712 *man/raptor_version_string.Rd +f729e71da0ff843228cd2ec562fa3807 *man/raptor_version_string_get.Rd +44784b360560e3d6e7a4d7149261b6d6 *man/rasqal_version_decimal.Rd +bd688563c3dd878072332c8e3b4574cd *man/rasqal_version_decimal_get.Rd +9f5cf6651cb21bcc5533bf7b1ccd771e *man/rasqal_version_major.Rd +0b34de9dc6f8144de71448f60324bf97 *man/rasqal_version_major_get.Rd +f9d440d7446a5611f3fe4a60404e0ffc *man/rasqal_version_minor.Rd +dc5afc4dda84aa2b49246ac65faebe8b *man/rasqal_version_minor_get.Rd +b671632420e84bfd4b86e7f9e483ee8c *man/rasqal_version_release.Rd +57238c7b6485f5201022356b27fb81dc *man/rasqal_version_release_get.Rd +7cef46467163fb4b201b4cc34f863e90 *man/rasqal_version_string.Rd +9bca8647de5bb91d1eb60db60e323233 *man/rasqal_version_string_get.Rd +419593c73fac82097f18682dad1e74a8 *man/redland.Rd 5b8bba405cdfbd422513345815294280 *man/roclet_output.roclet_mergeNamespace.Rd -b59e49077ec06efd0c7b4436bd5f9d75 *man/roclet_process.roclet_mergeNamespace.Rd -fa94b9153c57f3e0540c917b99d2281f *man/serializeToCharacter.Rd -a0cf300b9e588d90f04b3bad864e69ad *man/serializeToFile.Rd -b6ca13bdfd1d2ab121811b2c6d12e964 *man/setNameSpace.Rd -e3f300ea81d9f618064cfee37adaa24b *man/setQueryResultsLimit.Rd +6ea7323bd051f022381058f02457b127 *man/roclet_process.roclet_mergeNamespace.Rd +81f9c1a02e0ffcd4d603d3342a44f655 *man/serializeToCharacter.Rd +70ec1c0e78b10f29d41dd80f5dfb6334 *man/serializeToFile.Rd +053a4235d22dba6934c22c93ae4ba74e *man/setNameSpace.Rd +192b20eba6390fda13d0ff01e3dc07e7 *man/setQueryResultsLimit.Rd 36bd4afd0a3a7f882f5b13eefe9c0904 *man/sub-ExternalReference-method.Rd f9745a146d8f14264c226d6537388292 *man/subset-ExternalReference-method.Rd -fef3004908279d9c03a1f3c31989b684 *man/writeResults.Rd +0c6e5e41f80b21cf981ef7c91969b377 *man/writeResults.Rd 06dae6c554fc448dfe0e4ff0566e6415 *src/Makevars.in dfa007a3091aea19f28ad169d0d172af *src/Makevars.win 36bedaa4bffb35288ef73dfd6e7c8623 *src/redland.c 748492c77d626604f4ebda4f8862db9c *src/util.c 78a7f421feb7208c58c9197ba4eb5edb *tests/spelling.R 4d2de501fe63927667fc4eaaacc99a38 *tests/test-all.R -a9b6b1ba7090a96b5633a23b245cc813 *tests/testthat/test.Model.R -fbc5698a7f63bca07dbc4120ec4e76d2 *tests/testthat/test.Node.R -5d408032cc602bb137943e33fc2cb356 *tests/testthat/test.Parser.R -9da4cecf1cc98c6fef61d5b5b1726113 *tests/testthat/test.Query.R -7bae126ce32f4f30572706538d6aebb9 *tests/testthat/test.Serializer.R -282a33cc867b696379793887468fed15 *tests/testthat/test.Statement.R -85ad1c710a04f16416f86173a918ae73 *tests/testthat/test.Storage.R -0042d2d65a5768ab86f5c7d7ff16b89e *tests/testthat/test.World.R -575dd6e7358f7d52c53e39fa2db49837 *tests/testthat/test.redland_base.R +404f269341d605437989c05b16c47fcd *tests/testthat/test.Model.R +21f16cd94de11c63bed0b813f71da7e9 *tests/testthat/test.Node.R +649010532f837abe10a267cc865a74ea *tests/testthat/test.Parser.R +2a1a0da0f5bd985eaade56a5d6b53682 *tests/testthat/test.Query.R +deefbc20746fee21356a40997326baf3 *tests/testthat/test.Serializer.R +98992754b40848a5ab18ced153b6bbd8 *tests/testthat/test.Statement.R +85506d9cc664197016d82eb3592861b3 *tests/testthat/test.Storage.R +ec956a6da308aa766d8ce98c8244dc56 *tests/testthat/test.World.R +50274ae3adebc2b57bc59e634d6968d2 *tests/testthat/test.redland_base.R 7485f7296b6c79676f46873d59987cf3 *tools/winlibs.R -f86668254d1fec2e8f04314af6e7a2c9 *vignettes/redland_overview.Rmd +fb49a2101f6a29a88b69da4c5d3362c4 *vignettes/redland_overview.Rmd diff -Nru r-cran-redland-1.0.17-11/NEWS r-cran-redland-1.0.17-14/NEWS --- r-cran-redland-1.0.17-11/NEWS 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/NEWS 2020-10-21 18:33:28.000000000 +0000 @@ -1,3 +1,25 @@ +Version 1.0.17-14 + +BUG FIXES + +* Resolved CRAN check errors during config on macOS for 1.0.17-13 (#91) + +Version 1.0.17-13 + +BUG FIXES + +* Resolved CRAN check errors for 1.0.17-12 submission (#89) + +Version 1.0.17-12 + +BUG FIXES + +* Update 'configure' for OS portability (#82) + +NEW FEATURES + +* Update tests for compatibility with testthat 3e (#125) + Version 1.0.17-11 BUG FIXES diff -Nru r-cran-redland-1.0.17-11/R/Node.R r-cran-redland-1.0.17-14/R/Node.R --- r-cran-redland-1.0.17-11/R/Node.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/R/Node.R 2020-10-12 17:18:54.000000000 +0000 @@ -176,8 +176,8 @@ #' Get the value of the node as a string #' @details The value of the node is returned as a string. If the node type is #' 'blank', then the blank node identifier is returned. If the node type is -#' 'literal', then the literal value is returned with the form ""@, -#' e.g. \"¡Hola, amigo! ¿Cómo estás?"@es". If the node type is 'uri' +#' 'literal', then the literal value is returned with the form "string@language, +#' e.g. "¡Hola, amigo! ¿Cómo estás?"@es". If the node type is 'uri' #' then the value is returned as a string. #' @rdname getNodeValue #' @encoding UTF-8 diff -Nru r-cran-redland-1.0.17-11/R/redland-package.R r-cran-redland-1.0.17-14/R/redland-package.R --- r-cran-redland-1.0.17-11/R/redland-package.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/R/redland-package.R 2020-10-12 17:18:54.000000000 +0000 @@ -25,7 +25,7 @@ #' #' The Redland C library functions are described at \url{http://librdf.org/docs/api/index.html}. #' -#' An introduction to RDF can be found at \url{http://www.w3.org/TR/rdf-primer}. +#' An introduction to RDF can be found at \url{http://www.w3.org/TR/rdf-primer/}. #' #' @details #' The redland R package classes and the corresponding Redland C library types are shown in the following table: diff -Nru r-cran-redland-1.0.17-11/README.md r-cran-redland-1.0.17-14/README.md --- r-cran-redland-1.0.17-11/README.md 2019-10-06 17:42:15.000000000 +0000 +++ r-cran-redland-1.0.17-14/README.md 2020-10-12 17:18:54.000000000 +0000 @@ -1,20 +1,20 @@ ## redland -[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/redland)](https://cran.r-project.org/package=redland) +[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/redland)](https://cran.r-project.org/package=redland) -- **Authors**: Matthew B. Jones, Peter Slaughter, Jeroen Ooms, Carl Boettiger, and Scott Chamberlain ([NCEAS](http://www.nceas.ucsb.edu)) -- [doi:10.5063/F1VM496B](http://doi.org/10.5063/F1VM496B) -- **License**: [Apache 2](http://opensource.org/licenses/Apache-2.0) +- **Authors**: Matthew B. Jones, Peter Slaughter, Jeroen Ooms, Carl Boettiger, and Scott Chamberlain ([NCEAS](https://www.nceas.ucsb.edu)) +- [doi:10.5063/F1VM496B](https://doi.org/10.5063/F1VM496B) +- **License**: [Apache 2](https://opensource.org/licenses/Apache-2.0) - [Package source code on Github](https://github.com/ropensci/redland-bindings) - [**Submit Bugs and feature requests**](https://github.com/ropensci/redland-bindings/issues) The R package `redland` provides methods to create, query and write information stored in the Resource Description Framework (RDF). An introduction to RDF can be -found at http://www.w3.org/TR/rdf-primer. In brief, RDF provides a structured +found at https://www.w3.org/TR/rdf-primer. In brief, RDF provides a structured graph consisting of Statements composed of Subject, Predicate, and Object Nodes. This package is implemented as R scripts that provide an R interface (aka "wrapper") to the Redland RDF C libraries that are described at -http://librdf.org/docs/api/index.html. Additional information about the software that +https://librdf.org/docs/api/index.html. Additional information about the software that provides the connection or 'bindings' between R and the Redland RDF C libraries is available at https://github.com/ropensci/redland-bindings/tree/master/R. @@ -47,7 +47,7 @@ Alternatively, to install *redland* from source, please continue reading this section. The required Redland C libraries can be installed with either [Mac Ports](https://www.macports.org) package manager -or the [HomeBrew](http://brew.sh) package manager. The HomeBrew package manager can be significantly faster to install +or the [HomeBrew](https://brew.sh) package manager. The HomeBrew package manager can be significantly faster to install but either one will work provided the directions shown below are followed. You can check if you have MacPorts installed by entering the following command in a terminal window: @@ -76,7 +76,7 @@ The *redland* R package should be available for use at this point #### Installing on Mac OS X with HomeBrew -On Mac OS X you can use the package management system [HomeBrew](http://brew.sh) to install the +On Mac OS X you can use the package management system [HomeBrew](https://brew.sh) to install the necessary libraries. The HomeBrew software can be installed with the following command entered at a terminal window: ``` @@ -145,21 +145,21 @@ model <- new("Model", world=world, storage, options="") # Add some Dublin Core properties to the model -dc <- "http://purl.org/dc/elements/1.1/" +dc <- "https://purl.org/dc/elements/1.1/" stmt <- new("Statement", world=world, - subject="http://ropensci.org/", predicate=paste0(dc, "title"), object="ROpenSci") + subject="https://ropensci.org/", predicate=paste0(dc, "title"), object="ROpenSci") addStatement(model, stmt) stmt <- new("Statement", world=world, - subject="http://ropensci.org/", predicate=paste0(dc, "language"), object="en") + subject="https://ropensci.org/", predicate=paste0(dc, "language"), object="en") addStatement(model, stmt) stmt <- new("Statement", world=world, - subject="http://ropensci.org/", predicate=paste0(dc, "license"), + subject="https://ropensci.org/", predicate=paste0(dc, "license"), object="https://creativecommons.org/licenses/by/2.0/") addStatement(model, stmt) # Serialize the model to a TTL file serializer <- new("Serializer", world, name="turtle", mimeType="text/turtle") -status <- setNameSpace(serializer, world, namespace="http://purl.org/dc/elements/1.1/", prefix="dc") +status <- setNameSpace(serializer, world, namespace="https://purl.org/dc/elements/1.1/", prefix="dc") filePath <- tempfile(pattern = "file", tmpdir = tempdir(), fileext = ".ttl") status <- serializeToFile(serializer, world, model, filePath) readLines(file(filePath)) @@ -168,6 +168,6 @@ ## Acknowledgments Work on this package was supported by NSF-ABI grant #1262458 to C. Gries, M. Jones, and S. Collins. -[![nceas_footer](https://www.nceas.ucsb.edu/files/newLogo_0.png)](http://www.nceas.ucsb.edu) +[![nceas_footer](https://www.nceas.ucsb.edu/files/newLogo_0.png)](https://www.nceas.ucsb.edu) -[![ropensci_footer](http://ropensci.org/public_images/github_footer.png)](http://ropensci.org) +[![ropensci_footer](https://ropensci.org/public_images/github_footer.png)](https://ropensci.org) diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Model.R r-cran-redland-1.0.17-14/tests/testthat/test.Model.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Model.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Model.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("Model tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Node.R r-cran-redland-1.0.17-14/tests/testthat/test.Node.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Node.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Node.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("Node tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Parser.R r-cran-redland-1.0.17-14/tests/testthat/test.Parser.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Parser.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Parser.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("Parser tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Query.R r-cran-redland-1.0.17-14/tests/testthat/test.Query.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Query.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Query.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("Query tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.redland_base.R r-cran-redland-1.0.17-14/tests/testthat/test.redland_base.R --- r-cran-redland-1.0.17-11/tests/testthat/test.redland_base.R 2019-09-30 22:35:51.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.redland_base.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("librdf base API tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. @@ -19,7 +18,7 @@ uri <- librdf_new_uri(world,paste0('file:',system.file('extdata/dc.rdf', package='redland'))) expect_match(class(uri), "_p_librdf_uri_s") rv <- librdf_parser_parse_into_model(parser,uri,uri,model) - expect_that(rv, equals(0)) + expect_equal(rv, 0) librdf_free_uri(uri); librdf_free_parser(parser); @@ -49,7 +48,7 @@ expect_match(class(statement), "_p_librdf_statement_s") rc <- librdf_model_add_statement(model, statement) - expect_that(rc, equals(0)) + expect_equal(rc, 0) # Don't need to call librdf_free_node, just librdf_free_statement. librdf_free_statement(statement) @@ -70,5 +69,4 @@ librdf_free_uri(base); librdf_free_model(model); librdf_free_storage(storage); - expect_that("Reached end.", equals("Reached end.")) }) diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Serializer.R r-cran-redland-1.0.17-14/tests/testthat/test.Serializer.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Serializer.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Serializer.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("Serializer tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. @@ -45,7 +44,7 @@ # Test adding a namespace to a serializer status <- setNameSpace(serializer, world, namespace="http://purl.org/dc/elements/1.1/", prefix="dc") - expect_that(status, equals(0)) + expect_equal(status, 0) # Test serialization of an RDF model to a string rdf <- serializeToCharacter(serializer, world, model, "") @@ -55,7 +54,7 @@ filePath <- tempfile(pattern = "file", tmpdir = tempdir(), fileext = ".rdf") status <- serializeToFile(serializer, world, model, filePath) found <- grep("John Smith", readLines(filePath)) - expect_that(found, is_more_than(0)) + expect_gt(found, 0) unlink(filePath) err <- try(freeStatement(statement), silent=TRUE) diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Statement.R r-cran-redland-1.0.17-14/tests/testthat/test.Statement.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Statement.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Statement.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("Statement tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.Storage.R r-cran-redland-1.0.17-14/tests/testthat/test.Storage.R --- r-cran-redland-1.0.17-11/tests/testthat/test.Storage.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.Storage.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,4 @@ -context("Storage tests") + test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/tests/testthat/test.World.R r-cran-redland-1.0.17-14/tests/testthat/test.World.R --- r-cran-redland-1.0.17-11/tests/testthat/test.World.R 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/tests/testthat/test.World.R 2020-10-12 17:18:54.000000000 +0000 @@ -1,4 +1,3 @@ -context("World tests") test_that("redland library loads", { library(redland) # Add a line to this test to prevent 'Empty test' (skipped) msg. diff -Nru r-cran-redland-1.0.17-11/vignettes/redland_overview.Rmd r-cran-redland-1.0.17-14/vignettes/redland_overview.Rmd --- r-cran-redland-1.0.17-11/vignettes/redland_overview.Rmd 2019-09-30 21:42:23.000000000 +0000 +++ r-cran-redland-1.0.17-14/vignettes/redland_overview.Rmd 2020-10-12 17:18:54.000000000 +0000 @@ -13,7 +13,7 @@ The `redland` R package provides methods to create, query and write to disk data stored in the Resource Description Framework (RDF). RDF provides a standardized way to make statements about resources and the relationships between them. Typical resources include datasets that are available via URLs. Resources don't have to be available online, for example a resource could also be the name of the person that created a dataset. A collection of RDF statements comprise an RDF graph, which can be read and interpreted by an RDF capable software application that uses the resources described in the graph. -An introduction to RDF can be found at http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624. +An introduction to RDF can be found at http://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/. ## Examples @@ -28,7 +28,7 @@ parseFileIntoModel(parser, world, system.file("extdata", "dc.rdf", package="redland"), model) ``` -Next the RDF graph is queried for statements of interest, using the [SPARQL query syntax](http://www.w3.org/TR/rdf-sparql-query) +Next the RDF graph is queried for statements of interest, using the [SPARQL query syntax](http://www.w3.org/TR/rdf-sparql-query/) ```{r} queryString <- 'PREFIX dc: SELECT ?a ?c WHERE { ?a dc:creator ?c . }'