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

Commit 1d4c9f2

Browse files
committed
Update license statements.
1 parent 4fef8a9 commit 1d4c9f2

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

+68
-71
lines changed

LICENSE.txt

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

3-
Copyright © 2013–2014 Ruben Verborgh, Multimedia Lab, Ghent University — iMinds, Belgium
3+
Copyright © 2013–2016 Ruben Verborgh, Miel Vander Sande
4+
Ghent University / iMinds, Belgium
45

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

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 ©2013 Ruben Verborgh - Multimedia Lab / iMinds / Ghent University */
2+
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
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 ©2013 Ruben Verborgh - Multimedia Lab / iMinds / Ghent University */
2+
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
33
/* HTTP server that executes SPARQL queries over triple pattern fragments. */
44

55
var path = require('path'),

browser.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
2+
13
// Make the ldf-client module available as a global browser object
24
window.ldf = require('./ldf-client');
35
// Expose the same N3 version as used in the client

ldf-client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*! @license ©2013-2015 Ruben Verborgh - Multimedia Lab / iMinds / Ghent University */
2-
/** Main ldf-client module exports. */
1+
/*! @license MIT ©2013-2016 Ruben Verborgh - Ghent University / iMinds */
2+
/* Main ldf-client module exports. */
33

44
// Replace local `require` by a lazy loader,
55
// so we can keep `require` calls for static analyzers such as browserify

lib/browser/Request.js

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

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

lib/browser/crypto.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*! @license ©2015 Ruben Verborgh - Multimedia Lab / iMinds / Ghent University */
2-
/** Browser replacement for a subset of crypto. */
1+
/*! @license MIT ©2015-2016 Ruben Verborgh - Ghent University / iMinds */
2+
/* Browser replacement for a subset of crypto. */
33

44
exports.createHash = function () {
55
var contents;
@@ -9,7 +9,8 @@ exports.createHash = function () {
99
};
1010
};
1111

12-
/*! @license SHA-1 implementation ©2002-2014 Chris Veness / MIT Licence */
12+
/*! @license MIT ©2002-2014 Chris Veness */
13+
/* SHA-1 implementation */
1314

1415
/**
1516
* Generates SHA-1 hash of string.
@@ -22,7 +23,6 @@ function sha1(msg) {
2223
var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6], i, j;
2324

2425
// PREPROCESSING
25-
2626
msg += String.fromCharCode(0x80); // add trailing '1' bit (+ 0's padding) to string [§5.1.1]
2727

2828
// convert string msg into 512-bit/16-integer blocks arrays of ints [§5.2.1]

lib/extractors/CompositeExtractor.js

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

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

0 commit comments

Comments
 (0)