For anyone who'se looking to do some javascript/jquery/d3 hacking on a plane without internet, here's the API references I've been able to dig up.
HTML/CSS/SVG
The official spec at www.w3.org is fine as a reference and the non-draft standards have a PDF option to download the spec. See generally http://www.w3.org/standards/webdesign/, and for HTML/CSS/SVG specifically the most recent ones as of this post seem to be:
Javascript
The best doc I could find is in CHM (windows help file format). You can read this file with xchm (e.g.,
sudo aptitude install xchm
). The file itself is at:
http://starcraft73.tripod.com/javascript/javascript.zip
Jquery and Jquery-UI
There's a single CHM file that includes docs for both jquery and jquery-ui at
https://github.com/Yahasana/jqdoc-parser/blob/master/jQuery-UI-Reference-1.8.chm?raw=true
There's a PDF version of just JQuery at
https://bitbucket.org/greydwarf/jquerydoc/downloads/jquery_ref.pdf
Getting D3 docs available offline requires a bit more work. Following roughly
this guide, here are the steps:
sudo aptitude install libxml2-dev libxslt-dev ruby1.8
gem install gollum
git clone https://github.com/mbostock/d3.wiki.git d3.wiki
cd d3.wiki ; gollum
- Navigate your browser to http://localhost:4567/ or whatever port gollum starts up on (it prints it out when it starts up).
Thanks for sharing. Its good to see fresh content always.
ReplyDeletethanks that means a lot for me. - besabestin
ReplyDeleteThanks!
ReplyDeletegreat
ReplyDelete