Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Commit

Permalink
Replaced kevee/quail with quailjs/quail
Browse files Browse the repository at this point in the history
  • Loading branch information
honzi authored and jessebeach committed Mar 15, 2015
1 parent 8f99f3b commit 27ac013
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://secure.travis-ci.org/quailjs/quail.png?branch=master)](http://travis-ci.org/kevee/quail)
[![Build Status](https://secure.travis-ci.org/quailjs/quail.png?branch=master)](http://travis-ci.org/quailjs/quail)

# Development

Expand Down Expand Up @@ -55,7 +55,7 @@ You can include Quail into your project using Bower by using the command `bower

Building Quail
--------------
If you are not familiar with using grunt or just want to download a pre-built version of quail, [visit the releases page for the project](https://github.com/kevee/quail/releases).
If you are not familiar with using grunt or just want to download a pre-built version of quail, [visit the releases page for the project](https://github.com/quailjs/quail/releases).

If you are checking out quail from a repository, you will notice there is no `/dist` directory, quail must be built using [Grunt](http://gruntjs.com/). Use the following steps to get started (this is assuming you already have [Node](http://nodejs.org/) installed on your machine):

Expand Down
4 changes: 2 additions & 2 deletions docs/building.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Building QUAIL
==============

For most purposes, you can simply `download the latest release of Quail <https://github.com/kevee/quail/releases>`_, which is pre-built. However, if you want to customize your build or use the `dev` branch of the project, you will need to use the following tools to build the project.
For most purposes, you can simply `download the latest release of Quail <https://github.com/quailjs/quail/releases>`_, which is pre-built. However, if you want to customize your build or use the `dev` branch of the project, you will need to use the following tools to build the project.

Quail is built using `Grunt <http://gruntjs.com/>`_ and `Bower <http://bower.io>`_, and hence requires having `Node.js <http://nodejs.org>`_ installed on your machine. Once you check out the code, follow the below commands:

Expand All @@ -11,4 +11,4 @@ npm install
grunt build
```

This will install all the developer dependencies and create a new `dist` directory with a pre-built version of quail and all the guideline or test files exported to JSON format.
This will install all the developer dependencies and create a new `dist` directory with a pre-built version of quail and all the guideline or test files exported to JSON format.
2 changes: 1 addition & 1 deletion docs/server-scanning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Scanning other websites with QUAIL

Since QUAIL is now a jQuery plugin, it's no longer possible to run it natively in PHP. If you would like to scan other sites (without, say, getting your own javascript on their page a-la Google Analytics), then you'll need to run JavaScript on your backend.

QUAIL already does this sort of thing in our continuous integration service on `Travis.org <https://travis-ci.org/kevee/quail/builds/7219577>`_ using `PhantomJS <http://phantomjs.org/>`_. PhantomJS is a full browser implementation that can do JavaScript tests and basically works like a browser.
QUAIL already does this sort of thing in our continuous integration service on `Travis.org <https://travis-ci.org/quailjs/quail/builds/7219577>`_ using `PhantomJS <http://phantomjs.org/>`_. PhantomJS is a full browser implementation that can do JavaScript tests and basically works like a browser.

Others have used QUAIL in combination with `Cheerio for NodeJS <https://github.com/MatthewMueller/cheerio>`_. Cheerio is an implementation of jQuery for NodeJS; however, certain tests that work with user interactions or JavaScript events will not work.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/kevee/quail.git"
"url": "git://github.com/quailjs/quail.git"
},
"main": "./quail.js",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions quail.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"title": "Quail",
"description": "Accessibility testing in the browser and on the server.",
"version": "2.1.0",
"homepage": "https://github.com/kevee/quail",
"homepage": "https://github.com/quailjs/quail",
"author": {
"name": "Kevin Miller",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/kevee/quail.git"
"url": "git://github.com/quailjs/quail.git"
},
"bugs": {
"url": "https://github.com/kevee/quail/issues"
"url": "https://github.com/quailjs/quail/issues"
},
"licenses": [
{
Expand All @@ -28,4 +28,4 @@
"options" : {
"banner" : "/*! QUAIL quailjs.org | quailjs.org/license */"
}
}
}
2 changes: 1 addition & 1 deletion src/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ var quail = {
},

/**
* Read more about this function here: https://github.com/kevee/quail/wiki/Layout-versus-data-tables
* Read more about this function here: https://github.com/quailjs/quail/wiki/Layout-versus-data-tables
*/
isDataTable : function(table) {
// If there are less than three rows, why do a table?
Expand Down

0 comments on commit 27ac013

Please sign in to comment.