Skip to content

Commit

Permalink
chore(copyright): 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
localnerve committed Feb 1, 2019
1 parent 6bdfc84 commit 42efa23
Show file tree
Hide file tree
Showing 54 changed files with 54 additions and 54 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2013-2018 Alex Grant, LocalNerve, contributors
Copyright (c) 2013-2019 Alex Grant, LocalNerve, contributors

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion examples/custom/myFilter.js
@@ -1,6 +1,6 @@
/*
* Example custom filter for html-snapshots.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Processes the snapshot output before it is finalized.
*/
Expand Down
2 changes: 1 addition & 1 deletion examples/custom/snapshot.js
@@ -1,6 +1,6 @@
/*
* Snapshot an example website.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Use sitemap.xml to snapshot an entire site.
* Use a customFilter to update the output before the snapshots are written.
Expand Down
2 changes: 1 addition & 1 deletion examples/debug-phantomjs/snapshot.js
@@ -1,6 +1,6 @@
/*
* Debug PhantomJS processing of a page on a sample website.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Uses sitemap.xml to snapshot a sample website, but holds one page for debugging.
*
Expand Down
2 changes: 1 addition & 1 deletion examples/html5rocks/snapshot.js
@@ -1,6 +1,6 @@
/*
* Snapshot multiple pages using arrays.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Use an array to snapshot specific urls.
* Use per-page selectors.
Expand Down
2 changes: 1 addition & 1 deletion examples/process-limit/snapshot.js
@@ -1,6 +1,6 @@
/*
* Process limit snapshots example.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Uses robots.txt to drive website snapshot.
* Limits the number of browser processes to 1 (1 at a time).
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-promise/snapshot.js
@@ -1,6 +1,6 @@
/*
* Simple page snapshots example.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Use array input to snapshot individual pages.
*/
Expand Down
2 changes: 1 addition & 1 deletion examples/sitemap-index/snapshot.js
@@ -1,6 +1,6 @@
/*
* Simple page snapshots example.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Use sitemap index to drive input to snapshot individual pages.
*/
Expand Down
2 changes: 1 addition & 1 deletion examples/utils/index.js
@@ -1,6 +1,6 @@
/**
* Utilities for the examples.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion examples/verbose/snapshot.js
@@ -1,6 +1,6 @@
/*
* Snapshot an example website.
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* Use sitemap.xml to snapshot an entire site.
* Use the verbose option to debug the loading of one of the pages.
Expand Down
2 changes: 1 addition & 1 deletion lib/async/exists.js
Expand Up @@ -5,7 +5,7 @@
* Empirically, I found that either one of these NodeJS checks can fail,
* but both don't. This is a workaround.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/async/index.js
Expand Up @@ -4,7 +4,7 @@
* Async stuff for html-snapshots
* Notifier class
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global Promise */
Expand Down
2 changes: 1 addition & 1 deletion lib/common/index.js
@@ -1,7 +1,7 @@
/**
* common code
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/common/node.js
@@ -1,7 +1,7 @@
/***
* nodeCall
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global Promise */
Expand Down
2 changes: 1 addition & 1 deletion lib/common/sitemap.js
Expand Up @@ -4,7 +4,7 @@
* An input generator for html-snapshots that uses a sitemap.xml file.
* Creates the snapshot arguments driven from sitemap.xml urls.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/html-snapshots.js
Expand Up @@ -6,7 +6,7 @@
* By default, uses a selector to search content to determine if
* a page is "ready" for its html snapshot.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global Promise */
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/_base.js
Expand Up @@ -3,7 +3,7 @@
*
* The common, base functionality of an input generator.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/array.js
Expand Up @@ -4,7 +4,7 @@
* An input generator for html-snapshots that uses a javascript array
* to generate snapshot input from the host relative page urls.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global Promise */
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/index.js
Expand Up @@ -4,7 +4,7 @@
* Input generator factory
* Create an input generator that produces snapshots arguments
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/robots.js
Expand Up @@ -6,7 +6,7 @@
* Does not support wildcards.
* If you need wildcards, use the sitemap input generator.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/sitemap-index.js
Expand Up @@ -4,7 +4,7 @@
* An input generator for html-snapshots that uses a sitemap index xml file.
* Creates the snapshot arguments driven from multiple sitemap.xml urls.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global Promise */
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/sitemap.js
Expand Up @@ -4,7 +4,7 @@
* An input generator for html-snapshots that uses a sitemap.xml file.
* Creates the snapshot arguments driven from sitemap.xml urls.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/input-generators/textfile.js
Expand Up @@ -4,7 +4,7 @@
* An input generator for html-snapshots that uses a simple text file
* with the host relative page urls, one per line.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/customFilter.js
Expand Up @@ -7,7 +7,7 @@
*
* This is a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
var selectorDetect = require("./modules/selectorDetect");
Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/default.js
Expand Up @@ -6,7 +6,7 @@
*
* This is a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
var selectorDetect = require("./modules/selectorDetect");
Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/modules/cli.js
Expand Up @@ -6,7 +6,7 @@
*
* This is a module for a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/modules/detectors.js
Expand Up @@ -11,7 +11,7 @@
*
* This is a module for a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global document, $ */
Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/modules/globals.js
Expand Up @@ -5,7 +5,7 @@
*
* This is a module for a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global phantom */
Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/modules/selectorDetect.js
Expand Up @@ -5,7 +5,7 @@
*
* This is a module for a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/modules/verbose.js
Expand Up @@ -5,7 +5,7 @@
*
* This is a module for a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
/* global window */
Expand Down
2 changes: 1 addition & 1 deletion lib/phantom/removeScripts.js
Expand Up @@ -7,7 +7,7 @@
*
* This is a phantomJS script that runs in phantomjs.
*
* Copyright (c) 2013 - 2018 Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019 Alex Grant, LocalNerve, contributors
* Licensed under the MIT license.
*/
var selectorDetect = require("./modules/selectorDetect");
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "html-snapshots",
"version": "0.15.0",
"version": "0.15.1",
"author": {
"name": "Alex Grant",
"email": "alex@localnerve.com",
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/options.js
@@ -1,7 +1,7 @@
/*
* options.js
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*
* A test helper to decorate html-snapshots options
*
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/result.js
@@ -1,7 +1,7 @@
/**
* Asserts error is error.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
var assert = require("assert");

Expand Down
2 changes: 1 addition & 1 deletion test/helpers/sitemap.js
@@ -1,7 +1,7 @@
/*
* Helper to add dynamic url nodes to a test sitemap.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
var smLib = require("sitemap-xml");
var urlLib = require("url");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/async/test.js
@@ -1,7 +1,7 @@
/**
* Async module tests.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global describe, beforeEach, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/common/helpers.js
@@ -1,7 +1,7 @@
/**
* Helpers tests.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global describe, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/common/node.js
@@ -1,7 +1,7 @@
/**
* Common node tests.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global describe, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/common/test.js
@@ -1,7 +1,7 @@
/**
* Common module tests.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global describe, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/html-snapshots/basics.js
@@ -1,7 +1,7 @@
/**
* Basic library tests.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global module, require, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/html-snapshots/myFilter.js
Expand Up @@ -2,7 +2,7 @@
* In-test, custom filter script.
* Adds a custom tag onto the body.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
module.exports = function(content) {
console.log("IN THE CUSTOMFILTER");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/html-snapshots/phantomjs-options.js
@@ -1,7 +1,7 @@
/**
* Library tests focused on the phantomjsOptions option.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global module, require, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/html-snapshots/process-limit.js
@@ -1,7 +1,7 @@
/**
* Library tests focused on the processLimit option.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global module, require, process, clearInterval, setInterval, it */
var assert = require("assert");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/html-snapshots/robots.js
@@ -1,7 +1,7 @@
/**
* Library tests that use robots.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global module, require, it */
var path = require("path");
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/html-snapshots/sitemap-index.js
@@ -1,7 +1,7 @@
/**
* Library tests that use sitemap-index.
*
* Copyright (c) 2013 - 2018, Alex Grant, LocalNerve, contributors
* Copyright (c) 2013 - 2019, Alex Grant, LocalNerve, contributors
*/
/* global require, module, it */
var assert = require("assert");
Expand Down

0 comments on commit 42efa23

Please sign in to comment.