dirkschulze / respec

Specification Edition Support Tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ReSpec

Build Status

ReSpec is a JS library that makes it easier to write technical specifications, or documents that tend to be technical in nature in general. It was originally designed for the purpose of writing W3C specifications, but has since grown to be able to support other outputs as well.

Important Note

ReSpec is not endorsed by W3C and nobody should expect the W3C Webmaster to provide advice on problems encountered with ReSpec, or on why it may be failing to produce pubrules-compliant content.

Want to change a bibliographical reference?

Bibliographical references have been moved out of ReSpec. You want to use this: https://github.com/tobie/specref

What is this version of ReSpec?

There is the original version of ReSpec that can be found in http://dev.w3.org/2009/dap/ReSpec.js/, known as v1. That version is the most popular, but is restricted to producing W3C specifications and the code was organically grown over time in a manner that is not extremely user-friendly or easy to maintain.

Then there is ReSpec v2 which can be found at http://dvcs.w3.org/hg/respec2/. It is flexible, modular, and has a number of nice features. But the problem is that it was never completely finished, and in the meantime v1 has continued to be patched for bugs. This leads to a situation in which v2 is not a proper superset of v1, and patches to the latter have to be rewritten completely to also apply to v2. Obviously, that's not a desirable situation.

The version in this repository here is “ReSpec: Evolution”. What I've done is essentially that I've imported the v1 source here. I am very quickly going to make a few very small changes to it so as to make it 100% compatible with the existing v1 but to start making use of the flexible loading facility included in v2. Then I will cease all development on the other two versions, making this the only canonical option. Since it will start off v1 it will be guaranteed compatible, but it will progressively be rewritten over time to attain v2's features — without the synchronisation problems.

How to contribute?

It is common for people to contribute to RS, notably to make changes to the biblio references. You certainly are welcome to submit whatever change you wish to (though if it's a complex feature please try to coordinate with others first to avoid working long on something that will then be rejected).

If you're familiar with GitHub then contributing is simple: just fork and make pull requests. Please just be careful to note that the primary branch is gh-pages and not master (this ensures that the result gets published on the Web). More importantly, please note that the development branch is develop. If you are making patches and pull requests, please base them off this branch.

If you're not familiar with GitHub, you need to follow the following steps:

  • Get a GitHub account. This is done quickly, and the GH people will not bother you at all. Plus, it's pretty much a requirement for the majority of OSS communities these days.
  • If all you want to make is a small, simple change, you can use the Web interface. Navigate to the file that you want to change, click “Edit this file” in the toolbar, then save your changes — they will get sent to the project for approval (which ought to be quick).
  • If you wish to make more complex changes, you will need to fork the project (click “Fork”), clone the resulting repository, make the changes there, and push it back. Then click the “Pull Request” button. This allows you to request that the project integrate your changes. Those should normally get processed relatively fast (depending on how complex they are).

Running the test suite

Respec runs a number of high level, end-to-end tests using Jasmine. These tests are run by Travis, a hosted continuous integration solution, on each pull requests.

There are two options to run these tests locally: in a browser or using PhantomJS.

Running the test suite in a browser

Tests need to be served from the root of the repository to function properly. Any server will do, but here's an example using Python's SimpleHTTPServer:

$ cd /path/to/repo/
$ python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...

Navigating to http://localhost:8000/tests/SpecRunner.html with any recent browser will launch the test suite.

Running the test suite in PhantomJS

PhantomJS is a headless, WebKit-based browser. It allows running the tests directly from the command line.

In order to run the test from the command line, you need to install Node, npm and PhantomJS. Note that npm comes bundled with recent versions of Node.

Once these dependencies are installed, running the test suite should be as simple as:

$ npm test

Building ReSpec

Normally, producing a build of ReSpec should not be necessary for anyone, unless you're on the core development team. Certrainly don't bother with this if you are providing pull requests. But on occasion it can be useful in order to debug a painful corner-case, so here are the instructions. This not being something normally exposed to the world, they are a bit convoluted (and may be simplified).

  1. Make sure you are up to date and on the develop branch (git up; git checkout develop)
  2. You will need to have git flow
  3. Get the current version (grep version package.json) and increment it in your head (or, you know, on a piece of paper).
  4. Start a new release in git flow using v$NEW_VERSION as the name, e.g. "git flow release start v3.1.61" if you are currently on 3.1.60.
  5. Update the version in package.json
  6. Run the build script (node tools/build-w3c-common.js). This should respond "OK!" (if not, fix the issue).
  7. Add the new build (git add builds/respec-w3c-common-3.1.61.js).
  8. Commit your changes (git commit -am v3.1.61)
  9. Finish the release git flow (git flow release finish v3.1.61). This should prompt you to enter a message for the tag.
  10. Push everything back to the server (make sure you are pushing at least the develop and gh-pages branches).

That should be all. Normally, within a few minutes the W3C server will have picked up, gzipped, and published the latest and greatest version.

About

Specification Edition Support Tool


Languages

Language:JavaScript 97.7%Language:CSS 2.3%