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

Commit

Permalink
Update affiliation.
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenVerborgh committed Oct 11, 2016
1 parent 197feee commit 15eb380
Show file tree
Hide file tree
Showing 52 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,5 @@ $ docker run -it --rm $(pwd)/config.json:/tmp/config.json $(pwd)/query.sparql:/t
## License
The Linked Data Fragments client is written by [Ruben Verborgh](http://ruben.verborgh.org/) and colleagues.

This code is copyrighted by [Ghent University – iMinds](http://datasciencelab.ugent.be/)
This code is copyrighted by [Ghent University – imec](http://idlab.ugent.be/)
and released under the [MIT license](http://opensource.org/licenses/MIT).
2 changes: 1 addition & 1 deletion bin/ldf-client
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
/* Command-line utility to execute SPARQL queries over triple pattern fragments. */

var ldf = require('../ldf-client');
Expand Down
2 changes: 1 addition & 1 deletion bin/ldf-client-http
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
/* HTTP server that executes SPARQL queries over triple pattern fragments. */

var path = require('path'),
Expand Down
2 changes: 1 addition & 1 deletion ldf-client.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
/* Main ldf-client module exports. */

// Replace local `require` by a lazy loader,
Expand Down
2 changes: 1 addition & 1 deletion lib/browser/Request.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
/* Single-function HTTP(S) request module for browsers */

var EventEmitter = require('events').EventEmitter,
Expand Down
2 changes: 1 addition & 1 deletion lib/browser/crypto.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2015-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2015-2016 Ruben Verborgh, Ghent University - imec */
/* Browser replacement for a subset of crypto. */

exports.createHash = function () {
Expand Down
2 changes: 1 addition & 1 deletion lib/extractors/CompositeExtractor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A CompositeExtractor combines metadata from different extractors. */

var MetadataExtractor = require('./MetadataExtractor'),
Expand Down
2 changes: 1 addition & 1 deletion lib/extractors/ControlsExtractor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A ControlsExtractor extracts hypermedia controls from a triple stream. */

var MetadataExtractor = require('./MetadataExtractor'),
Expand Down
2 changes: 1 addition & 1 deletion lib/extractors/CountExtractor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A CountExtractor extracts count metadata from a triple stream. */

var MetadataExtractor = require('./MetadataExtractor'),
Expand Down
2 changes: 1 addition & 1 deletion lib/extractors/MetadataExtractor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* MetadataExtractor is a base class for objects that extract metadata from a triple stream. */

var util = require('util');
Expand Down
2 changes: 1 addition & 1 deletion lib/sparql/DistinctIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A DistinctIterator emits the unique items from a source. */

var SimpleTransformIterator = require('asynciterator').SimpleTransformIterator,
Expand Down
2 changes: 1 addition & 1 deletion lib/sparql/SortIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A SortIterator emits the items of a source in a sorted way. */

var TransformIterator = require('asynciterator').TransformIterator;
Expand Down
2 changes: 1 addition & 1 deletion lib/sparql/SparqlIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A SparqlIterator returns the results of a SPARQL query. */

var SparqlParser = require('sparqljs').Parser,
Expand Down
2 changes: 1 addition & 1 deletion lib/sparql/UnionIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A UnionIterator returns the results from a set of source iterators. */

var BufferedIterator = require('asynciterator').BufferedIterator;
Expand Down
2 changes: 1 addition & 1 deletion lib/triple-pattern-fragments/FragmentsClient.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A FragmentsClient fetches Triple Pattern Fragments through HTTP. */
/* eslint max-nested-callbacks: [2, 3] */

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A ReorderingGraphPatternIterator builds bindings by reading matches for a basic graph pattern. */

var AsyncIterator = require('asynciterator'),
Expand Down
2 changes: 1 addition & 1 deletion lib/triple-pattern-fragments/TrigFragmentIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
/* A TrigFragmentIterator reads data and metadata from Linked Data Fragments in TriG. */

var TurtleFragmentIterator = require('./TurtleFragmentIterator');
Expand Down
2 changes: 1 addition & 1 deletion lib/triple-pattern-fragments/TriplePatternIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* A TriplePatternIterator builds bindings by reading matches for a triple pattern. */

var AsyncIterator = require('asynciterator'),
Expand Down
2 changes: 1 addition & 1 deletion lib/triple-pattern-fragments/TurtleFragmentIterator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Ruben Verborgh, Ghent University - imec */
/* A TurtleFragmentIterator reads data and metadata from Linked Data Fragments in Turtle. */

var TransformIterator = require('asynciterator').TransformIterator,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2015-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2015-2016 Miel Vander Sande, Ghent University - imec */

var FragmentsClient = require('../FragmentsClient'),
BufferedIterator = require('asynciterator').BufferedIterator,
Expand Down
2 changes: 1 addition & 1 deletion lib/util/CustomError.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */

// Creates a constructor for an Error with the given name
function createErrorType(name, init) {
Expand Down
2 changes: 1 addition & 1 deletion lib/util/ExecutionLogger.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2013-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2013-2016 Miel Vander Sande, Ghent University - imec */

var Logger = require('./Logger'),
util = require('util'),
Expand Down
2 changes: 1 addition & 1 deletion lib/util/HttpClient.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */

var TransformIterator = require('asynciterator').TransformIterator,
logger = require('../util/Logger.js'),
Expand Down
2 changes: 1 addition & 1 deletion lib/util/Logger.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh and Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh and Miel Vander Sande, Ghent University - imec */
/* loosely based on https://github.com/visionmedia/log.js/blob/master/lib/log.js */
/* eslint no-console: 0 */

Expand Down
2 changes: 1 addition & 1 deletion lib/util/RdfUtil.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */

var N3 = require('n3'),
_ = require('lodash');
Expand Down
2 changes: 1 addition & 1 deletion lib/util/Request.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2016 Ruben Verborgh, Ghent University - imec */
/* Single-function HTTP(S) request module */

var EventEmitter = require('events').EventEmitter,
Expand Down
2 changes: 1 addition & 1 deletion lib/util/SparqlExpressionEvaluator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */

var N3Util = require('n3').Util,
createErrorType = require('./CustomError');
Expand Down
2 changes: 1 addition & 1 deletion lib/writers/JSONResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
/* Writer that serializes a SPARQL query result as a plain JSON array */

var SparqlResultWriter = require('./SparqlResultWriter');
Expand Down
2 changes: 1 addition & 1 deletion lib/writers/SimpleResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2016 Ruben Verborgh, Ghent University - imec */
/* Writer that serializes SPARQL query results as a list. */

var SparqlResultWriter = require('./SparqlResultWriter'),
Expand Down
2 changes: 1 addition & 1 deletion lib/writers/SparqlJSONResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
/* Writer that serializes a SPARQL query result as application/sparql+json */

var SparqlResultWriter = require('./SparqlResultWriter'),
Expand Down
2 changes: 1 addition & 1 deletion lib/writers/SparqlResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
/* Serializing the output of a SparqlIterator */

var TransformIterator = require('asynciterator').TransformIterator;
Expand Down
2 changes: 1 addition & 1 deletion lib/writers/SparqlXMLResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
/* Writer that serializes a SPARQL query result application/sparql+xml */

var SparqlResultWriter = require('./SparqlResultWriter'),
Expand Down
2 changes: 1 addition & 1 deletion lib/writers/StatsResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Miel Vander Sande, Ghent University - imec */
/* Writer that serializes a SPARQL query result as a CSV of timestamps and resultcounts */
/* This Writer is for debugging purposes */

Expand Down
2 changes: 1 addition & 1 deletion lib/writers/TableResultWriter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2016 Miel Vander Sande - Ghent University / iMinds */
/*! @license MIT ©2016 Miel Vander Sande, Ghent University - imec */
/* Writer that serializes a SPARQL query result as a plain table */

var SparqlResultWriter = require('./SparqlResultWriter');
Expand Down
2 changes: 1 addition & 1 deletion test/extractors/CompositeExtractor-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var CompositeExtractor = require('../../lib/extractors/CompositeExtractor');

var AsyncIterator = require('asynciterator');
Expand Down
2 changes: 1 addition & 1 deletion test/extractors/ControlsExtractor-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var ControlsExtractor = require('../../lib/extractors/ControlsExtractor');

var AsyncIterator = require('asynciterator'),
Expand Down
2 changes: 1 addition & 1 deletion test/extractors/CountExtractor-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var CountExtractor = require('../../lib/extractors/CountExtractor');

var AsyncIterator = require('asynciterator'),
Expand Down
2 changes: 1 addition & 1 deletion test/lib/FileFragmentsClient.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
/* Dummy implementation of FragmentsClient that reads fragments from disk. */

var TransformIterator = require('asynciterator').TransformIterator,
Expand Down
2 changes: 1 addition & 1 deletion test/sparql/DistinctIterator-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var DistinctIterator = require('../../lib/sparql/DistinctIterator');

var AsyncIterator = require('asynciterator');
Expand Down
2 changes: 1 addition & 1 deletion test/sparql/SortIterator-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var SortIterator = require('../../lib/sparql/SortIterator');

var AsyncIterator = require('asynciterator');
Expand Down
2 changes: 1 addition & 1 deletion test/sparql/UnionIterator-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var UnionIterator = require('../../lib/sparql/UnionIterator');

var AsyncIterator = require('asynciterator');
Expand Down
2 changes: 1 addition & 1 deletion test/test-setup.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */

var Logger = require('../lib/util/Logger'),
AsyncIterator = require('asynciterator');
Expand Down
2 changes: 1 addition & 1 deletion test/triple-pattern-fragments/FragmentsClient-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var FragmentsClient = require('../../lib/triple-pattern-fragments/FragmentsClient');

var AsyncIterator = require('asynciterator'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var ReorderingGraphPatternIterator = require('../../lib/triple-pattern-fragments/ReorderingGraphPatternIterator');

var AsyncIterator = require('asynciterator'),
Expand Down
2 changes: 1 addition & 1 deletion test/triple-pattern-fragments/TrigFragmentIterator-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var TrigFragmentIterator = require('../../lib/triple-pattern-fragments/TrigFragmentIterator');
var AsyncIterator = require('asynciterator'),
fs = require('fs'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var TriplePatternIterator = require('../../lib/triple-pattern-fragments/TriplePatternIterator');

var AsyncIterator = require('asynciterator'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var TurtleFragmentIterator = require('../../lib/triple-pattern-fragments/TurtleFragmentIterator');

var AsyncIterator = require('asynciterator'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var FederatedFragmentsClient = require('../../../lib/triple-pattern-fragments/federated/FederatedFragmentsClient');

var FragmentsClient = require('../../../lib/triple-pattern-fragments/FragmentsClient'),
Expand Down
2 changes: 1 addition & 1 deletion test/util/HttpClient-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var HttpClient = require('../../lib/util/HttpClient');

var EventEmitter = require('events').EventEmitter,
Expand Down
2 changes: 1 addition & 1 deletion test/util/RdfUtil-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var RdfUtil = require('../../lib/util/RdfUtil');

var N3 = require('n3');
Expand Down
2 changes: 1 addition & 1 deletion test/util/SparqlExpressionEvaluator-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @license MIT ©2014-2016 Ruben Verborgh - Ghent University / iMinds */
/*! @license MIT ©2014-2016 Ruben Verborgh, Ghent University - imec */
var SparqlExpressionEvaluator = require('../../lib/util/SparqlExpressionEvaluator');

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

0 comments on commit 15eb380

Please sign in to comment.