From 77c47044cfd1e78614dd91a5c2e4e75185e1d40b Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Tue, 19 Aug 2014 20:37:06 -0700 Subject: [PATCH] Remove misc references to CoffeeScript. https://github.com/ariya/phantomjs/issues/12410 --- README.md | 2 +- third-party.txt | 4 ---- tools/import-coffee-script.sh | 26 -------------------------- 3 files changed, 1 insertion(+), 31 deletions(-) delete mode 100755 tools/import-coffee-script.sh diff --git a/README.md b/README.md index 809b5823..45dc3d13 100644 --- a/README.md +++ b/README.md @@ -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 "Sakura"). Follow the official Twitter stream [@PhantomJS](http://twitter.com/PhantomJS) to get the frequent development updates. diff --git a/third-party.txt b/third-party.txt index abda106a..e62419e9 100644 --- a/third-party.txt +++ b/third-party.txt @@ -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 diff --git a/tools/import-coffee-script.sh b/tools/import-coffee-script.sh deleted file mode 100755 index 46d7f544..00000000 --- a/tools/import-coffee-script.sh +++ /dev/null @@ -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 -