cssom/README

Mon, 21 Apr 2014 00:56:01 +0900

author
Koji Ishii <kojiishi@gluesoft.co.jp>
date
Mon, 21 Apr 2014 00:56:01 +0900
changeset 13776
af81fe99a748
parent 8215
e8c2e21bd61e
permissions
-rwxr-xr-x

[css-text] issues-lc-2013 updated up to 45

     1 BUILDING
     3 1. Satisfy all build dependencies (see next section below).
     4 2. Execute "git clone https://github.com/whatwg/xref.git data".
     5 3. Run make (no arguments).
     6 4. Open the resulting output file Overview.html.
     8 BUILD DEPENDENCIES
    10 In order to build the CSSOM related specification, you must install and
    11 configure the following:
    13 * anolis (http://wiki.whatwg.org/wiki/Anolis)
    15 The following shows a detailed version (with comments) of the above steps
    16 performed on MacOSX 10.8.2, assuming your current directory is the same
    17 directory that contains this README:
    19 # Start from CSSOM directory.
    20 % export CSSOM_HOME=`pwd`
    22 # Make tools directory if needed.
    23 % if [ ! -d tools ] ; then mkdir tools ; fi
    24 % export CSSOM_TOOLS=$CSSOM_HOME/tools
    25 % cd $CSSOM_TOOLS
    27 # Fetch anolis and make sure it is in $PATH.
    28 % hg clone https://bitbucket.org/ms2ger/anolis $CSSOM_TOOLS/anolis
    29 % sudo ln -s $CSSOM_TOOLS/anolis/anolis /usr/local/bin/anolis
    31 COMMITTING CHANGES
    33 1. hg pull
    34 2. hg update
    35 3. make
    36 4. hg commit -m 'comment'
    37 5. hg push
    39 If your change involved changes to xref:
    41 1. cd data
    42 2. git pull
    43 3. git commit -am 'sync cssom'
    44 4. git push

mercurial