-
Notifications
You must be signed in to change notification settings - Fork 791
Expand file tree
/
Copy pathREADME
More file actions
executable file
·44 lines (32 loc) · 1.1 KB
/
README
File metadata and controls
executable file
·44 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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