Compare commits

..

4 Commits
2.1.1 ... 2.1.2

Author SHA1 Message Date
Rowan Manning
6d0c6e821b Version 2.1.2 2016-12-12 11:49:01 +00:00
Usman Iqbal
cc5b3f19e5 Remove Add new URL button when readonly is true (#166) 2016-12-12 11:47:04 +00:00
Rowan Manning
11e64e27c4 Add a contributing guide (#163) 2016-12-01 15:04:30 +00:00
Rowan Manning
ff4a9fa7b0 Use two spaces in package.json (#162) 2016-11-25 13:25:47 +00:00
5 changed files with 95 additions and 71 deletions

View File

@@ -1,6 +1,11 @@
# Changelog # Changelog
## 2.1.2 (2016-12-12)
* Hide the "add" button in readonly mode
* Add a contributing guide
## 2.1.1 (2016-11-20) ## 2.1.1 (2016-11-20)
* Use arrows instead of plus and minus for collapsibles/expanders * Use arrows instead of plus and minus for collapsibles/expanders

21
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,21 @@
Contributing Guide
==================
Thanks for getting involved :tada:
The Pa11y team loves to see new contributors, and we strive to provide a welcoming and inclusive environment. We ask that all contributors read and follow [our code of conduct][code-of-conduct] before joining. If you represent an organisation, then you might find our [guide for companies][companies] helpful.
Our website outlines the many ways that you can contribute to Pa11y:
- [Help us to talk to our users][communications]
- [Help us out with design][designers]
- [Help us with our code][developers]
[code-of-conduct]: http://pa11y.org/contributing/code-of-conduct/
[communications]: http://pa11y.org/contributing/communications/
[companies]: http://pa11y.org/contributing/companies/
[designers]: http://pa11y.org/contributing/designers/
[developers]: http://pa11y.org/contributing/developers/

View File

@@ -82,10 +82,12 @@ The boot configurations for Pa11y Dashboard are as follows. Look at the sample J
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 Contributing
----------- ------------
To develop Pa11y Dashboard, you'll need to clone the repo and get set up as outlined in the [setup guide](#setup). There are many ways to contribute to Pa11y Dashboard, we cover these in the [contributing guide](CONTRIBUTING.md) for this repo.
If you're ready to contribute some code, 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: You'll need to start the application in test mode with:
@@ -157,5 +159,5 @@ Copyright © 20132016, Springer Nature
[info-build]: https://travis-ci.org/pa11y/dashboard [info-build]: https://travis-ci.org/pa11y/dashboard
[shield-license]: https://img.shields.io/badge/license-GPL%203.0-blue.svg [shield-license]: https://img.shields.io/badge/license-GPL%203.0-blue.svg
[shield-node]: https://img.shields.io/badge/node.js%20support-46-brightgreen.svg [shield-node]: https://img.shields.io/badge/node.js%20support-46-brightgreen.svg
[shield-version]: https://img.shields.io/badge/version-2.1.1-blue.svg [shield-version]: https://img.shields.io/badge/version-2.1.2-blue.svg
[shield-build]: https://img.shields.io/travis/pa11y/dashboard/master.svg [shield-build]: https://img.shields.io/travis/pa11y/dashboard/master.svg

View File

@@ -1,52 +1,52 @@
{ {
"name": "pa11y-dashboard", "name": "pa11y-dashboard",
"version": "2.1.1", "version": "2.1.2",
"private": true, "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": [
"keywords": [ "accessibility", "analysis", "report" ], "accessibility",
"contributors": [ "analysis",
"Perry Harlock (http://www.phwebs.co.uk/)", "report"
"Rowan Manning (http://rowanmanning.com/)" ],
], "contributors": [
"Perry Harlock (http://www.phwebs.co.uk/)",
"repository": { "Rowan Manning (http://rowanmanning.com/)"
"type": "git", ],
"url": "https://github.com/pa11y/dashboard.git" "repository": {
}, "type": "git",
"homepage": "https://github.com/pa11y/dashboard", "url": "https://github.com/pa11y/dashboard.git"
"bugs": "https://github.com/pa11y/dashboard/issues", },
"license": "GPL-3.0", "homepage": "https://github.com/pa11y/dashboard",
"bugs": "https://github.com/pa11y/dashboard/issues",
"engines": { "license": "GPL-3.0",
"node": ">=4" "engines": {
}, "node": ">=4"
"dependencies": { },
"body-parser": "~1.15", "dependencies": {
"chalk": "~1.1", "body-parser": "~1.15",
"compression": "~1.6", "chalk": "~1.1",
"express": "~4.14", "compression": "~1.6",
"express-hbs": "~1.0", "express": "~4.14",
"http-headers": "^3.0.1", "express-hbs": "~1.0",
"moment": "~2.13", "http-headers": "^3.0.1",
"pa11y-webservice": "^2.1.2", "moment": "~2.13",
"pa11y-webservice-client-node": "^1.2.1", "pa11y-webservice": "^2.1.2",
"underscore": "~1.8" "pa11y-webservice-client-node": "^1.2.1",
}, "underscore": "~1.8"
"devDependencies": { },
"bower": "~1.7", "devDependencies": {
"cheerio": "~0.20", "bower": "~1.7",
"jscs": "^2", "cheerio": "~0.20",
"jshint": "^2", "jscs": "^2",
"less": "~2.7", "jshint": "^2",
"mocha": "^2", "less": "~2.7",
"proclaim": "^3", "mocha": "^2",
"request": "^2.74", "proclaim": "^3",
"uglify-js": "~2.6" "request": "^2.74",
}, "uglify-js": "~2.6"
},
"scripts": { "scripts": {
"start": "node index.js", "start": "node index.js",
"test": "make ci" "test": "make ci"
} }
} }

View File

@@ -16,19 +16,15 @@ along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
}} }}
<ul class="list-unstyled clearfix crunch-bottom"> <ul class="list-unstyled clearfix crunch-bottom">
<li class="col-md-4 col-sm-6 task-card add-task">
{{#if readonly}} {{#unless readonly}}
<span class="well task-card-link crunch-bottom"> <li class="col-md-4 col-sm-6 task-card add-task">
<p class="h3 crunch">Add new URL</p>
<p class="supersize-me crunch">+</p>
</span>
{{else}}
<a class="well task-card-link crunch-bottom" data-role="add-task" href="/new" data-test="add-task"> <a class="well task-card-link crunch-bottom" data-role="add-task" href="/new" data-test="add-task">
<p class="h3 crunch">Add new URL</p> <p class="h3 crunch">Add new URL</p>
<p class="supersize-me crunch">+</p> <p class="supersize-me crunch">+</p>
</a> </a>
{{/if}} </li>
</li> {{/unless}}
{{#each tasks}} {{#each tasks}}
<li class="col-md-4 col-sm-6 task-card" data-test="task" data-role="task" data-keywords="{{lowercase name}} {{lowercase standard}} {{simplify-url url}}"> <li class="col-md-4 col-sm-6 task-card" data-test="task" data-role="task" data-keywords="{{lowercase name}} {{lowercase standard}} {{simplify-url url}}">
<a class="well task-card-link crunch-bottom" title="Details for URL {{simplify-url url}}" href="{{href}}"> <a class="well task-card-link crunch-bottom" title="Details for URL {{simplify-url url}}" href="{{href}}">
@@ -49,14 +45,14 @@ along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
</a> </a>
{{#unless ../readonly}} {{#unless ../readonly}}
<div class="btn-group options-button text-right"> <div class="btn-group options-button text-right">
<button type="button" class="btn btn-info btn-xs dropdown-toggle" data-toggle="dropdown"><span class="sr-only">Options</span><span class="glyphicon glyphicon-cog"></span></button> <button type="button" class="btn btn-info btn-xs dropdown-toggle" data-toggle="dropdown"><span class="sr-only">Options</span><span class="glyphicon glyphicon-cog"></span></button>
<ul class="dropdown-menu pull-right" role="menu"> <ul class="dropdown-menu pull-right" role="menu">
<li><a href="{{href}}/edit">Edit this task</a></li> <li><a href="{{href}}/edit">Edit this task</a></li>
<li><a href="{{href}}/delete">Delete this task</a></li> <li><a href="{{href}}/delete">Delete this task</a></li>
<li class="divider"></li> <li class="divider"></li>
<li><a href="{{href}}/run" data-test="run-task">Run Pa11y</a></li> <li><a href="{{href}}/run" data-test="run-task">Run Pa11y</a></li>
</ul> </ul>
</div> </div>
{{/unless}} {{/unless}}
</li> </li>
{{/each}} {{/each}}