Remove misc references to CoffeeScript.

https://github.com/ariya/phantomjs/issues/12410
2.0
Ariya Hidayat 2014-08-19 20:37:06 -07:00
parent 5e018bd650
commit 77c47044cf
3 changed files with 1 additions and 31 deletions

View File

@ -1,6 +1,6 @@
# [PhantomJS](http://phantomjs.org) - Scriptable Headless WebKit
PhantomJS ([www.phantomjs.org](http://phantomjs.org)) is a headless WebKit scriptable with JavaScript or CoffeeScript. It is used by hundreds of [developers](http://phantomjs.org/buzz.html) and dozens of [organizations](http://phantomjs.org/users.html) for web-related development workflow.
PhantomJS ([www.phantomjs.org](http://phantomjs.org)) is a headless WebKit scriptable with JavaScript. It is used by hundreds of [developers](http://phantomjs.org/buzz.html) and dozens of [organizations](http://phantomjs.org/users.html) for web-related development workflow.
The latest [stable release](http://phantomjs.org/release-1.9.html) is version 1.9 (codenamed <a href="http://phantomjs.org/release-names.html">"Sakura"</a>). Follow the official Twitter stream [@PhantomJS](http://twitter.com/PhantomJS) to get the frequent development updates.

View File

@ -35,10 +35,6 @@ QCommandLine - http://xf.iksaif.net/dev/qcommandline.html
License: GNU Lesser General Public License (LGPL) version 2.1.
Reference: http://dev.iksaif.net/projects/qcommandline/repository/revisions/master/entry/COPYING
CoffeeScript - http://coffeescript.org/
License: MIT.
Reference: https://github.com/jashkenas/coffee-script/blob/master/README.
GIFLIB - http://giflib.sourceforge.net/
License: MIT
Reference: http://giflib.cvs.sourceforge.net/viewvc/giflib/giflib/COPYING

View File

@ -1,26 +0,0 @@
#!/usr/bin/env bash
SOURCE="$0"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
COFFEESCRIPT_PATH="$DIR/../src/coffee-script"
TAG_OR_BRANCH="1.3.3"
DOWNLOAD_URL="https://github.com/jashkenas/coffee-script/tarball/$TAG_OR_BRANCH"
# Download CoffeeScript and untar it
mkdir $COFFEESCRIPT_PATH
wget -O coffee-script.tar.gz $DOWNLOAD_URL
tar -xzf coffee-script.tar.gz --strip-components=1 -C $COFFEESCRIPT_PATH
rm -r "$COFFEESCRIPT_PATH/bin"
rm -r "$COFFEESCRIPT_PATH/documentation"
rm -r "$COFFEESCRIPT_PATH/examples"
rm "$COFFEESCRIPT_PATH/extras/jsl.conf"
rm -r "$COFFEESCRIPT_PATH/src"
rm -r "$COFFEESCRIPT_PATH/test"
rm "$COFFEESCRIPT_PATH/Cakefile"
rm "$COFFEESCRIPT_PATH/Rakefile"
rm "$COFFEESCRIPT_PATH/CNAME"
rm "$COFFEESCRIPT_PATH/index.html"
rm coffee-script.tar.gz