diff --git a/README.md b/README.md index 66f1582..0d0f877 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -pa11y-dashboard +Pa11y Dashboard =============== -pa11y-dashboard is a web interface to the [pa11y][pa11y] accessibility reporter; allowing you to focus on *fixing* issues rather than hunting them down. +Pa11y Dashboard is a web interface to the [Pa11y][pa11y] accessibility reporter; allowing you to focus on *fixing* issues rather than hunting them down. ![Version][shield-version] [![Node.js version support][shield-node]][info-node] @@ -10,7 +10,7 @@ pa11y-dashboard is a web interface to the [pa11y][pa11y] accessibility reporter; --- -✨ 🔜 ✨ The Pa11y team is very excited to announce plans for the successor to pa11y-dashboard and pa11y-webservice, codename "Sidekick". Help us define the features that you want to see by visiting the [proposal][sidekick-proposal]. ✨ +✨ 🔜 ✨ The Pa11y team is very excited to announce plans for the successor to Pa11y Dashboard and Pa11y Webservice, codename "Sidekick". Help us define the features that you want to see by visiting the [proposal][sidekick-proposal]. ✨ --- @@ -22,7 +22,7 @@ pa11y-dashboard is a web interface to the [pa11y][pa11y] accessibility reporter; Setup ----- -pa11y-dashboard requires [Node.js][node] 0.10+ and [PhantomJS][phantom]. See the [pa11y][pa11y] documentation for detailed instructions on how to install these dependencies on your operating system. +Pa11y Dashboard requires [Node.js][node] 0.10+ and [PhantomJS][phantom]. See the [Pa11y][pa11y] documentation for detailed instructions on how to install these dependencies on your operating system. You'll also need to have [MongoDB][mongo] installed and running. See the [MongoDB install guide][mongo-install] for more information on this. @@ -62,7 +62,7 @@ See [development instructions](#development) for more information about running Configurations -------------- -The boot configurations for pa11y-dashboard are as follows. Look at the sample JSON files in the repo for example usage. +The boot configurations for Pa11y Dashboard are as follows. Look at the sample JSON files in the repo for example usage. ### port *(number)* The port to run the application on. Set via a config file or the `PORT` environment variable. @@ -77,13 +77,13 @@ The boot configurations for pa11y-dashboard are as follows. Look at the sample J *(string)* A message to display prominently on the site home page. Defaults to `null`. ### webservice -This can either be an object containing [pa11y-webservice configurations][pa11y-webservice-config], or a string which is the base URL of a [pa11y-webservice][pa11y-webservice] instance you are running separately. If using environment variables, prefix the webservice vars with `WEBSERVICE_`. +This can either be an object containing [Pa11y Webservice configurations][pa11y-webservice-config], or a string which is the base URL of a [Pa11y Webservice][pa11y-webservice] instance you are running separately. If using environment variables, prefix the webservice vars with `WEBSERVICE_`. Development ----------- -To develop pa11y-dashboard, you'll need to clone the repo and get set up as outlined in the [setup guide](#setup). +To develop Pa11y Dashboard, you'll need to clone the repo and get set up as outlined in the [setup guide](#setup). You'll need to start the application in test mode with: @@ -117,7 +117,7 @@ Useful Resources License ------- -pa11y-dashboard is licensed under the [GNU General Public License 3.0][info-license]. +Pa11y Dashboard is licensed under the [GNU General Public License 3.0][info-license]. Copyright © 2013–2016, Springer Nature @@ -127,17 +127,17 @@ Copyright © 2013–2016, Springer Nature [mongo-install]: https://docs.mongodb.org/manual/installation/ [node]: http://nodejs.org/ [pa11y]: https://github.com/pa11y/pa11y -[pa11y-webservice-config]: https://github.com/pa11y/pa11y-webservice#configurations +[pa11y-webservice-config]: https://github.com/pa11y/webservice#configurations [phantom]: http://phantomjs.org/ [resource-una-k]: https://una.im/pa11y-dash/ [sidekick-proposal]: https://github.com/pa11y/sidekick/blob/master/PROPOSAL.md -[travis]: https://travis-ci.org/pa11y/pa11y-dashboard -[travis-img]: https://travis-ci.org/pa11y/pa11y-dashboard.png?branch=master +[travis]: https://travis-ci.org/pa11y/dashboard +[travis-img]: https://travis-ci.org/pa11y/dashboard.png?branch=master [info-license]: LICENSE [info-node]: package.json -[info-build]: https://travis-ci.org/pa11y/pa11y-dashboard +[info-build]: https://travis-ci.org/pa11y/dashboard [shield-license]: https://img.shields.io/badge/license-GPL%203.0-blue.svg [shield-node]: https://img.shields.io/badge/node.js%20support-0.10–6-brightgreen.svg [shield-version]: https://img.shields.io/badge/version-1.12.0-blue.svg -[shield-build]: https://img.shields.io/travis/pa11y/pa11y-dashboard/master.svg +[shield-build]: https://img.shields.io/travis/pa11y/dashboard/master.svg diff --git a/app.js b/app.js index 7236513..f16efe2 100644 --- a/app.js +++ b/app.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; @@ -112,7 +112,7 @@ function initApp(config, callback) { app.express.use(function(err, req, res, next) { /* jshint unused: false */ if (err.code === 'ECONNREFUSED') { - err = new Error('Could not connect to pa11y-webservice'); + err = new Error('Could not connect to Pa11y Webservice'); } app.emit('route-error', err); if (process.env.NODE_ENV !== 'production') { diff --git a/config.js b/config.js index 330c6d8..fcd3039 100644 --- a/config.js +++ b/config.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/data/standards.js b/data/standards.js index d8984f0..b2bf512 100644 --- a/data/standards.js +++ b/data/standards.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . // jscs:disable maximumLineLength 'use strict'; diff --git a/index.js b/index.js index b3b2828..caeb586 100644 --- a/index.js +++ b/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; @@ -26,7 +26,7 @@ process.on('SIGINT', function() { require('./app')(config, function(err, app) { console.log(''); - console.log(chalk.underline.magenta('pa11y-dashboard started')); + console.log(chalk.underline.magenta('Pa11y Dashboard started')); console.log(chalk.grey('mode: %s'), process.env.NODE_ENV); console.log(chalk.grey('uri: %s'), app.address); @@ -42,7 +42,7 @@ require('./app')(config, function(err, app) { if (typeof config.webservice === 'object') { require('pa11y-webservice')(config.webservice, function(err, webservice) { console.log(''); - console.log(chalk.underline.cyan('pa11y-webservice started')); + console.log(chalk.underline.cyan('Pa11y Webservice started')); console.log(chalk.grey('mode: %s'), process.env.NODE_ENV); console.log(chalk.grey('uri: %s'), webservice.server.info.uri); }); diff --git a/package.json b/package.json index 605cd7f..b84f5ff 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.12.0", "private": true, - "description": "pa11y-dashboard is a visual web interface to the pa11y accessibility reporter", + "description": "Pa11y Dashboard is a visual web interface to the Pa11y accessibility reporter", "keywords": [ "accessibility", "analysis", "report" ], "contributors": [ "Perry Harlock (http://www.phwebs.co.uk/)", @@ -12,10 +12,10 @@ "repository": { "type": "git", - "url": "https://github.com/pa11y/pa11y-dashboard.git" + "url": "https://github.com/pa11y/dashboard.git" }, - "homepage": "https://github.com/pa11y/pa11y-dashboard", - "bugs": "https://github.com/pa11y/pa11y-dashboard/issues", + "homepage": "https://github.com/pa11y/dashboard", + "bugs": "https://github.com/pa11y/dashboard/issues", "engines": { "node": ">=0.10" diff --git a/public/js/site.js b/public/js/site.js index 5a8acdc..e809331 100644 --- a/public/js/site.js +++ b/public/js/site.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . $(document).ready(function(){ diff --git a/public/less/site-ie8and.less b/public/less/site-ie8and.less index 5bbaa96..3f5684a 100644 --- a/public/less/site-ie8and.less +++ b/public/less/site-ie8and.less @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . // Making up for the non support of IE8 and IE7 in Bootstrap 3 .ie7, .ie8 { diff --git a/public/less/site-nojavascript.less b/public/less/site-nojavascript.less index 435d6de..f05c55e 100644 --- a/public/less/site-nojavascript.less +++ b/public/less/site-nojavascript.less @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . /* No javascript */ .no-javascript { diff --git a/public/less/site-responsive.less b/public/less/site-responsive.less index 25a8aec..f2eb7d0 100644 --- a/public/less/site-responsive.less +++ b/public/less/site-responsive.less @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . /* Media queries */ @media (max-width:991px) { diff --git a/public/less/site.less b/public/less/site.less index 40ed6a7..f23db7a 100644 --- a/public/less/site.less +++ b/public/less/site.less @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . /* Site specific styling */ diff --git a/route/index.js b/route/index.js index 0749fd9..e1ff56c 100644 --- a/route/index.js +++ b/route/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/new.js b/route/new.js index a5bd5cc..ccc6f35 100644 --- a/route/new.js +++ b/route/new.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/result/download.js b/route/result/download.js index 3dece92..43c1a09 100644 --- a/route/result/download.js +++ b/route/result/download.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/result/index.js b/route/result/index.js index f9cbc53..0db177f 100644 --- a/route/result/index.js +++ b/route/result/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/task/delete.js b/route/task/delete.js index 92aea64..fb41331 100644 --- a/route/task/delete.js +++ b/route/task/delete.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/task/edit.js b/route/task/edit.js index 4fa2c69..43c1d09 100644 --- a/route/task/edit.js +++ b/route/task/edit.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/task/index.js b/route/task/index.js index ee0e4cd..c6ad4bd 100644 --- a/route/task/index.js +++ b/route/task/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/route/task/run.js b/route/task/run.js index 5648d8c..a509ffc 100644 --- a/route/task/run.js +++ b/route/task/run.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/helper/navigate.js b/test/integration/helper/navigate.js index 8df60e5..4ea7419 100644 --- a/test/integration/helper/navigate.js +++ b/test/integration/helper/navigate.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/helper/webservice.js b/test/integration/helper/webservice.js index d09eaf4..8d0306e 100644 --- a/test/integration/helper/webservice.js +++ b/test/integration/helper/webservice.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/index.js b/test/integration/route/index.js index c241f61..39a57c6 100644 --- a/test/integration/route/index.js +++ b/test/integration/route/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/new.js b/test/integration/route/new.js index 00407ed..02efd11 100644 --- a/test/integration/route/new.js +++ b/test/integration/route/new.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/result/download.js b/test/integration/route/result/download.js index 61af277..12c7fbc 100644 --- a/test/integration/route/result/download.js +++ b/test/integration/route/result/download.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/result/index.js b/test/integration/route/result/index.js index 0dde0d5..26f2b71 100644 --- a/test/integration/route/result/index.js +++ b/test/integration/route/result/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/task/delete.js b/test/integration/route/task/delete.js index ce7217d..511f7a7 100644 --- a/test/integration/route/task/delete.js +++ b/test/integration/route/task/delete.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/task/edit.js b/test/integration/route/task/edit.js index b7070cc..b1d711b 100644 --- a/test/integration/route/task/edit.js +++ b/test/integration/route/task/edit.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/task/index.js b/test/integration/route/task/index.js index 6787e62..bd2ca1e 100644 --- a/test/integration/route/task/index.js +++ b/test/integration/route/task/index.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/route/task/run.js b/test/integration/route/task/run.js index e3ecbe1..41fd9eb 100644 --- a/test/integration/route/task/run.js +++ b/test/integration/route/task/run.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/test/integration/setup.js b/test/integration/setup.js index dc7c48c..b1f07f4 100644 --- a/test/integration/setup.js +++ b/test/integration/setup.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/view/404.html b/view/404.html index dee7db7..92c91bd 100644 --- a/view/404.html +++ b/view/404.html @@ -1,18 +1,18 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }}

Hmmm, this page indicates a 404 error.

diff --git a/view/500.html b/view/500.html index f2ba3df..bd28c34 100644 --- a/view/500.html +++ b/view/500.html @@ -1,18 +1,18 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }}

Eeek! 500 error. This is serious.

diff --git a/view/helper/date.js b/view/helper/date.js index cdbf43e..4d5c1b5 100644 --- a/view/helper/date.js +++ b/view/helper/date.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/view/helper/url.js b/view/helper/url.js index 5414c89..d8f739c 100644 --- a/view/helper/url.js +++ b/view/helper/url.js @@ -1,17 +1,17 @@ -// This file is part of pa11y-dashboard. +// This file is part of Pa11y Dashboard. // -// pa11y-dashboard is free software: you can redistribute it and/or modify +// Pa11y Dashboard is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// pa11y-dashboard is distributed in the hope that it will be useful, +// Pa11y Dashboard is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with pa11y-dashboard. If not, see . +// along with Pa11y Dashboard. If not, see . 'use strict'; diff --git a/view/index.html b/view/index.html index e20fe22..77110c7 100644 --- a/view/index.html +++ b/view/index.html @@ -1,20 +1,20 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }} -{{#content "title"}}pa11y-dashboard{{/content}} +{{#content "title"}}Pa11y Dashboard{{/content}}
diff --git a/view/layout/default.html b/view/layout/default.html index 8e4f4a0..491b233 100644 --- a/view/layout/default.html +++ b/view/layout/default.html @@ -1,18 +1,18 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }} diff --git a/view/new.html b/view/new.html index d42af9a..842e563 100644 --- a/view/new.html +++ b/view/new.html @@ -1,18 +1,18 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }} {{#content "title"}} diff --git a/view/partial/breadcrumb.html b/view/partial/breadcrumb.html index 453ccc5..b43b653 100644 --- a/view/partial/breadcrumb.html +++ b/view/partial/breadcrumb.html @@ -1,18 +1,18 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }} {{#unless isHomePage}}
diff --git a/view/partial/graph.html b/view/partial/graph.html index 7028d55..10633be 100644 --- a/view/partial/graph.html +++ b/view/partial/graph.html @@ -1,18 +1,18 @@ {{! -This file is part of pa11y-dashboard. +This file is part of Pa11y Dashboard. -pa11y-dashboard is free software: you can redistribute it and/or modify +Pa11y Dashboard is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -pa11y-dashboard is distributed in the hope that it will be useful, +Pa11y Dashboard is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with pa11y-dashboard. If not, see . +along with Pa11y Dashboard. If not, see . }}
@@ -58,8 +58,8 @@ along with pa11y-dashboard. If not, see .