Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
BUILDING

1. Satisfy all build dependencies (see next section below).
2. Execute "git clone https://github.com/whatwg/xref.git data".
3. Run make (no arguments).
4. Open the resulting output file Overview.html.

BUILD DEPENDENCIES

In order to build the CSSOM related specification, you must install and
configure the following:

* anolis (http://wiki.whatwg.org/wiki/Anolis)

The following shows a detailed version (with comments) of the above steps
performed on MacOSX 10.8.2, assuming your current directory is the same
directory that contains this README:

# Start from CSSOM directory.
% export CSSOM_HOME=`pwd`

# Make tools directory if needed.
% if [ ! -d tools ] ; then mkdir tools ; fi
% export CSSOM_TOOLS=$CSSOM_HOME/tools
% cd $CSSOM_TOOLS

# Fetch anolis and make sure it is in $PATH.
% hg clone https://bitbucket.org/ms2ger/anolis $CSSOM_TOOLS/anolis
% sudo ln -s $CSSOM_TOOLS/anolis/anolis /usr/local/bin/anolis

COMMITTING CHANGES

1. hg pull
2. hg update
3. make
4. hg commit -m 'comment'
5. hg push

If your change involved changes to xref:

1. cd data
2. git pull
3. git commit -am 'sync cssom'
4. git push