From 992cdfd8fe2c96d6acbb707d77da47c82cc6d037 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 26 Apr 2016 01:46:59 +0200 Subject: [PATCH] Add copyright notice in code --- src/app.js | 5 +++++ src/bin/www.js | 5 +++++ src/public/components/about.js | 5 +++++ src/public/components/app.js | 5 +++++ src/public/components/authenticate.js | 5 +++++ src/public/components/duplicate-finder-box.js | 5 +++++ src/public/components/duplicate.js | 5 +++++ src/public/components/duplicates-box.js | 5 +++++ src/public/components/playlist-box.js | 5 +++++ src/public/index.html | 5 +++++ src/public/script.js | 5 +++++ src/public/style.css | 5 +++++ 12 files changed, 60 insertions(+) diff --git a/src/app.js b/src/app.js index 431b2f2..099e3ac 100644 --- a/src/app.js +++ b/src/app.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + /** * This is an example of a basic node.js script that performs * the Authorization Code oAuth2 flow to authenticate against diff --git a/src/bin/www.js b/src/bin/www.js index b576998..ebd1d74 100644 --- a/src/bin/www.js +++ b/src/bin/www.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; require('dotenv').config({silent: true}); var throng = require('throng'); diff --git a/src/public/components/about.js b/src/public/components/about.js index f68f047..a0d3a75 100644 --- a/src/public/components/about.js +++ b/src/public/components/about.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); diff --git a/src/public/components/app.js b/src/public/components/app.js index 0c3d67f..6c0cf6c 100644 --- a/src/public/components/app.js +++ b/src/public/components/app.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); var $ = require('jquery'); diff --git a/src/public/components/authenticate.js b/src/public/components/authenticate.js index 6a7434c..0c463b5 100644 --- a/src/public/components/authenticate.js +++ b/src/public/components/authenticate.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); var ReactBootstrap = require('react-bootstrap'); diff --git a/src/public/components/duplicate-finder-box.js b/src/public/components/duplicate-finder-box.js index 071ee4a..a1dbfa0 100644 --- a/src/public/components/duplicate-finder-box.js +++ b/src/public/components/duplicate-finder-box.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); var ReactBootstrap = require('react-bootstrap'); diff --git a/src/public/components/duplicate.js b/src/public/components/duplicate.js index 45ecf06..de60d46 100644 --- a/src/public/components/duplicate.js +++ b/src/public/components/duplicate.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); var ReactBootstrap = require('react-bootstrap'); diff --git a/src/public/components/duplicates-box.js b/src/public/components/duplicates-box.js index 2e826b5..a14e11f 100644 --- a/src/public/components/duplicates-box.js +++ b/src/public/components/duplicates-box.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); var ReactBootstrap = require('react-bootstrap'); diff --git a/src/public/components/playlist-box.js b/src/public/components/playlist-box.js index 2da1498..5e11fb6 100644 --- a/src/public/components/playlist-box.js +++ b/src/public/components/playlist-box.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; var React = require('react'); var ReactBootstrap = require('react-bootstrap'); diff --git a/src/public/index.html b/src/public/index.html index cc684d5..7679697 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -1,4 +1,9 @@ + + DAVIDS • DuplicAtes VIewer and Detector for Spotify diff --git a/src/public/script.js b/src/public/script.js index b57adfb..5f19b4c 100644 --- a/src/public/script.js +++ b/src/public/script.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + 'use strict'; window.$ = window.jQuery = require('jquery'); require('bootstrap'); diff --git a/src/public/style.css b/src/public/style.css index 6fbca68..2bc3698 100644 --- a/src/public/style.css +++ b/src/public/style.css @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2016 Gabriel Augendre + * Free software under MIT License. See LICENSE file. + */ + .spotify-logo { height: 20px; margin-right: 10px;