Skip to content
This repository was archived by the owner on Feb 5, 2020. It is now read-only.

Commit 15eb380

Browse files
committed
Update affiliation.
1 parent 197feee commit 15eb380

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+52
-52
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright © 2013–2016 Ruben Verborgh, Miel Vander Sande
4-
Ghent University / iMinds, Belgium
4+
Ghent University - imec, Belgium
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion

bin/ldf-client

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env node
2-
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
2+
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
33
/* Command-line utility to execute SPARQL queries over triple pattern fragments. */
44

55
var ldf = require('../ldf-client');

bin/ldf-client-http

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env node
2-
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
2+
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
33
/* HTTP server that executes SPARQL queries over triple pattern fragments. */
44

55
var path = require('path'),

ldf-client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
22
/* Main ldf-client module exports. */
33

44
// Replace local `require` by a lazy loader,

lib/browser/Request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
22
/* Single-function HTTP(S) request module for browsers */
33

44
var EventEmitter = require('events').EventEmitter,

lib/browser/crypto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2015-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2015-2016 Ruben Verborgh, Ghent University - imec */
22
/* Browser replacement for a subset of crypto. */
33

44
exports.createHash = function () {

lib/extractors/CompositeExtractor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A CompositeExtractor combines metadata from different extractors. */
33

44
var MetadataExtractor = require('./MetadataExtractor'),

lib/extractors/ControlsExtractor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A ControlsExtractor extracts hypermedia controls from a triple stream. */
33

44
var MetadataExtractor = require('./MetadataExtractor'),

lib/extractors/CountExtractor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A CountExtractor extracts count metadata from a triple stream. */
33

44
var MetadataExtractor = require('./MetadataExtractor'),

lib/extractors/MetadataExtractor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* MetadataExtractor is a base class for objects that extract metadata from a triple stream. */
33

44
var util = require('util');

lib/sparql/DistinctIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A DistinctIterator emits the unique items from a source. */
33

44
var SimpleTransformIterator = require('asynciterator').SimpleTransformIterator,

lib/sparql/SortIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A SortIterator emits the items of a source in a sorted way. */
33

44
var TransformIterator = require('asynciterator').TransformIterator;

lib/sparql/SparqlIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A SparqlIterator returns the results of a SPARQL query. */
33

44
var SparqlParser = require('sparqljs').Parser,

lib/sparql/UnionIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A UnionIterator returns the results from a set of source iterators. */
33

44
var BufferedIterator = require('asynciterator').BufferedIterator;

lib/triple-pattern-fragments/FragmentsClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A FragmentsClient fetches Triple Pattern Fragments through HTTP. */
33
/* eslint max-nested-callbacks: [2, 3] */
44

lib/triple-pattern-fragments/ReorderingGraphPatternIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A ReorderingGraphPatternIterator builds bindings by reading matches for a basic graph pattern. */
33

44
var AsyncIterator = require('asynciterator'),

lib/triple-pattern-fragments/TrigFragmentIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
22
/* A TrigFragmentIterator reads data and metadata from Linked Data Fragments in TriG. */
33

44
var TurtleFragmentIterator = require('./TurtleFragmentIterator');

lib/triple-pattern-fragments/TriplePatternIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* A TriplePatternIterator builds bindings by reading matches for a triple pattern. */
33

44
var AsyncIterator = require('asynciterator'),

lib/triple-pattern-fragments/TurtleFragmentIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
22
/* A TurtleFragmentIterator reads data and metadata from Linked Data Fragments in Turtle. */
33

44
var TransformIterator = require('asynciterator').TransformIterator,

lib/triple-pattern-fragments/federated/FederatedFragmentsClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2015-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2015-2016 Miel Vander Sande, Ghent University - imec */
22

33
var FragmentsClient = require('../FragmentsClient'),
44
BufferedIterator = require('asynciterator').BufferedIterator,

lib/util/CustomError.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22

33
// Creates a constructor for an Error with the given name
44
function createErrorType(name, init) {

lib/util/ExecutionLogger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2013-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2013-2016 Miel Vander Sande, Ghent University - imec */
22

33
var Logger = require('./Logger'),
44
util = require('util'),

lib/util/HttpClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22

33
var TransformIterator = require('asynciterator').TransformIterator,
44
logger = require('../util/Logger.js'),

lib/util/Logger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh and Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh and Miel Vander Sande, Ghent University - imec */
22
/* loosely based on https://github.com/visionmedia/log.js/blob/master/lib/log.js */
33
/* eslint no-console: 0 */
44

lib/util/RdfUtil.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22

33
var N3 = require('n3'),
44
_ = require('lodash');

lib/util/Request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2016 Ruben Verborgh, Ghent University - imec */
22
/* Single-function HTTP(S) request module */
33

44
var EventEmitter = require('events').EventEmitter,

lib/util/SparqlExpressionEvaluator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22

33
var N3Util = require('n3').Util,
44
createErrorType = require('./CustomError');

lib/writers/JSONResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
22
/* Writer that serializes a SPARQL query result as a plain JSON array */
33

44
var SparqlResultWriter = require('./SparqlResultWriter');

lib/writers/SimpleResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2016 Ruben Verborgh, Ghent University - imec */
22
/* Writer that serializes SPARQL query results as a list. */
33

44
var SparqlResultWriter = require('./SparqlResultWriter'),

lib/writers/SparqlJSONResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
22
/* Writer that serializes a SPARQL query result as application/sparql+json */
33

44
var SparqlResultWriter = require('./SparqlResultWriter'),

lib/writers/SparqlResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
22
/* Serializing the output of a SparqlIterator */
33

44
var TransformIterator = require('asynciterator').TransformIterator;

lib/writers/SparqlXMLResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
22
/* Writer that serializes a SPARQL query result application/sparql+xml */
33

44
var SparqlResultWriter = require('./SparqlResultWriter'),

lib/writers/StatsResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
22
/* Writer that serializes a SPARQL query result as a CSV of timestamps and resultcounts */
33
/* This Writer is for debugging purposes */
44

lib/writers/TableResultWriter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2016 Miel Vander Sande - Ghent University / iMinds */
1+
/*! @license MIT ©2016 Miel Vander Sande, Ghent University - imec */
22
/* Writer that serializes a SPARQL query result as a plain table */
33

44
var SparqlResultWriter = require('./SparqlResultWriter');

test/extractors/CompositeExtractor-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var CompositeExtractor = require('../../lib/extractors/CompositeExtractor');
33

44
var AsyncIterator = require('asynciterator');

test/extractors/ControlsExtractor-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var ControlsExtractor = require('../../lib/extractors/ControlsExtractor');
33

44
var AsyncIterator = require('asynciterator'),

test/extractors/CountExtractor-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var CountExtractor = require('../../lib/extractors/CountExtractor');
33

44
var AsyncIterator = require('asynciterator'),

test/lib/FileFragmentsClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
/* Dummy implementation of FragmentsClient that reads fragments from disk. */
33

44
var TransformIterator = require('asynciterator').TransformIterator,

test/sparql/DistinctIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var DistinctIterator = require('../../lib/sparql/DistinctIterator');
33

44
var AsyncIterator = require('asynciterator');

test/sparql/SortIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var SortIterator = require('../../lib/sparql/SortIterator');
33

44
var AsyncIterator = require('asynciterator');

test/sparql/UnionIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var UnionIterator = require('../../lib/sparql/UnionIterator');
33

44
var AsyncIterator = require('asynciterator');

test/test-setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22

33
var Logger = require('../lib/util/Logger'),
44
AsyncIterator = require('asynciterator');

test/triple-pattern-fragments/FragmentsClient-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var FragmentsClient = require('../../lib/triple-pattern-fragments/FragmentsClient');
33

44
var AsyncIterator = require('asynciterator'),

test/triple-pattern-fragments/ReorderingGraphPatternIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var ReorderingGraphPatternIterator = require('../../lib/triple-pattern-fragments/ReorderingGraphPatternIterator');
33

44
var AsyncIterator = require('asynciterator'),

test/triple-pattern-fragments/TrigFragmentIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var TrigFragmentIterator = require('../../lib/triple-pattern-fragments/TrigFragmentIterator');
33
var AsyncIterator = require('asynciterator'),
44
fs = require('fs'),

test/triple-pattern-fragments/TriplePatternIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var TriplePatternIterator = require('../../lib/triple-pattern-fragments/TriplePatternIterator');
33

44
var AsyncIterator = require('asynciterator'),

test/triple-pattern-fragments/TurtleFragmentIterator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var TurtleFragmentIterator = require('../../lib/triple-pattern-fragments/TurtleFragmentIterator');
33

44
var AsyncIterator = require('asynciterator'),

test/triple-pattern-fragments/federated/FederatedFragmentsClient-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var FederatedFragmentsClient = require('../../../lib/triple-pattern-fragments/federated/FederatedFragmentsClient');
33

44
var FragmentsClient = require('../../../lib/triple-pattern-fragments/FragmentsClient'),

test/util/HttpClient-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var HttpClient = require('../../lib/util/HttpClient');
33

44
var EventEmitter = require('events').EventEmitter,

test/util/RdfUtil-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var RdfUtil = require('../../lib/util/RdfUtil');
33

44
var N3 = require('n3');

test/util/SparqlExpressionEvaluator-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
1+
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
22
var SparqlExpressionEvaluator = require('../../lib/util/SparqlExpressionEvaluator');
33

44
var TRUE = '"true"^^http://www.w3.org/2001/XMLSchema#boolean';

0 commit comments

Comments
 (0)