From 65ac665b81d817667bca4be2415e2116463ad29e Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Fri, 10 Nov 2017 14:13:06 -0800 Subject: [PATCH] Removed files that were accidentally added when merging from master --- demos/fixed-advanced/index.html | 45 ------------------------------- demos/fixed-advanced/main.js | 31 --------------------- scripts/.selenium_connect.sh.swp | Bin 12288 -> 0 bytes scripts/get_chromedriver.sh | 17 ------------ scripts/get_geckdriver.sh | 15 ----------- scripts/get_selenium.sh | 14 ---------- scripts/selenium_connect.sh | 10 ------- scripts/setup_linux_env.sh | 8 ------ scripts/setup_osx_env.sh | 8 ------ scripts/test_setup.sh | 23 ---------------- 10 files changed, 171 deletions(-) delete mode 100644 demos/fixed-advanced/index.html delete mode 100644 demos/fixed-advanced/main.js delete mode 100644 scripts/.selenium_connect.sh.swp delete mode 100755 scripts/get_chromedriver.sh delete mode 100755 scripts/get_geckdriver.sh delete mode 100755 scripts/get_selenium.sh delete mode 100755 scripts/selenium_connect.sh delete mode 100755 scripts/setup_linux_env.sh delete mode 100755 scripts/setup_osx_env.sh delete mode 100755 scripts/test_setup.sh diff --git a/demos/fixed-advanced/index.html b/demos/fixed-advanced/index.html deleted file mode 100644 index a5630860d..000000000 --- a/demos/fixed-advanced/index.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - Blockly Demo: Fixed Blockly built with Closure Compiler's advanced optimizations - - - - -

- Blockly > - Demos > - Fixed Blockly built with Closure Compiler's advanced optimizations -

- -

- This is a simple demo of injecting Blockly into a fixed-sized 'div' element - from a Closure-compiled source code with advanced optimizations. -

- -

→ More info on injecting fixed-sized Blockly

- -
- - - - - diff --git a/demos/fixed-advanced/main.js b/demos/fixed-advanced/main.js deleted file mode 100644 index 5276e03d3..000000000 --- a/demos/fixed-advanced/main.js +++ /dev/null @@ -1,31 +0,0 @@ -/** - * @fileoverview Main file (entry point) for the advanced compilation demo. - */ -'use strict'; - -goog.provide('Demo'); - -// messages (in some language) -goog.require('Blockly.Msg.en'); -// core -goog.require('Blockly'); -// blocks -goog.require('Blockly.Constants.Colour'); -goog.require('Blockly.Constants.Lists'); -goog.require('Blockly.Constants.Logic'); -goog.require('Blockly.Constants.Loops'); -goog.require('Blockly.Constants.Math'); -goog.require('Blockly.Blocks.procedures'); -goog.require('Blockly.Constants.Text'); -goog.require('Blockly.Constants.Variables'); - - -Demo.init = function() { - Blockly.inject('blocklyDiv', { - 'media': '../../media/', - 'toolbox': document.getElementById('toolbox') - }); -} - -window.addEventListener('load', Demo.init); - diff --git a/scripts/.selenium_connect.sh.swp b/scripts/.selenium_connect.sh.swp deleted file mode 100644 index ceaa1343a7a3758645119db5fdfd201a3863485f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12288 zcmeI2!EV$r5Qe8n97~~y`!u_v7wl|X5Ta7Wg$oD7350|y>LlJ>ce8P@v%6ZczzgsW zNIV9DC*Z^j@C1kpoH#MwBwawNRH-M>So&j4@_TH5&Lzquy~p<-;B9#ms9gql|MuIH zcVDhuyp;p^p>esMSE>jPPj4%q7^^g~c2qhmomFF*T35<}wS!zsc(pRdnV!Z?D3aW! zqkJCw)S0sKvDdjS%w+s5wMC)RO8VjHlk*cMzy!`nU>){$cY49xiMH_S=A$!?V;d7- z0!)AjFaajO1egF5U;_UGfvQ}C*R+uf&1SAN{n}rB6LQA{m;e)C0!)AjFaajO1egF5 zU;<2l3H*ZuR0eRk4)Bo_{{Oe%|35YWzLP$Y-jEig8R;QupVT33k~T;`F9Cce3DOPH z*CyYGkdqq|U;<2l2`~XBzyz286JP>NfC-$RfKG=NBh|08n<)S z$8PCO7D2ck9F-o0?&AUnPM50@O)RGM{ROJo2)AF9&J-1PcVBKF0UWETLUF7dihDDi zWX?>rlLMWOtgM3rDdS~ahky9ep|fM%8lyU_eev%>gp}kYy|JRwzB(xi7hXG>Rd^~( z&s1&;E%szj?#QsL>j*WI%FRtNz@~s4E4$igJw9rTOL#akc~1Ta`UbEJ5sEuV+=w4w zoifpV>-5Un+-}Xm8?|1QJFT)gx=B%lb tmp.zip && unzip -o tmp.zip && rm tmp.zip - # wait until download finish - sleep 5 -elif [[ $os_name == 'Darwin' && ! -f $chromedriver_dir/chromedriver ]]; then - cd chromedriver && curl -L https://chromedriver.storage.googleapis.com/2.29/chromedriver_mac64.zip | tar xz - sleep 5 -fi diff --git a/scripts/get_geckdriver.sh b/scripts/get_geckdriver.sh deleted file mode 100755 index 77fecd4ec..000000000 --- a/scripts/get_geckdriver.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -os_name=`uname` - -if [ -f geckodriver ]; then - exit 0 -fi -echo "downloading gechdriver" - -if [[ $os_name == 'Linux' ]]; then - cd ../ && curl -L https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-linux64.tar.gz | tar xz - sleep 5 -elif [[ $os_name == 'Darwin' ]]; then - cd ../ && curl -L https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-macos.tar.gz | tar xz - sleep 5 -fi diff --git a/scripts/get_selenium.sh b/scripts/get_selenium.sh deleted file mode 100755 index 0dac3e9b5..000000000 --- a/scripts/get_selenium.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -DIR="../webdriverio-test" -FILE=selenium-server-standalone-3.0.1.jar - -if [ ! -d $DIR ]; then - mkdir $DIR -fi - -echo "downloading selenium jar" - -if [ ! -f $DIR/$FILE ]; then - cd $DIR && curl -O http://selenium-release.storage.googleapis.com/3.0/selenium-server-standalone-3.0.1.jar - sleep 5 -fi diff --git a/scripts/selenium_connect.sh b/scripts/selenium_connect.sh deleted file mode 100755 index 3fae90576..000000000 --- a/scripts/selenium_connect.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -#check if selenium server is up running -pid=`lsof -ti tcp:4444` -if [ $? -eq 0 ] -then - kill -9 $pid -fi -java -jar -Dwebdriver.gecko.driver=../geckodriver -Dwebdriver.chrome.driver="chromedriver/chromedriver" ../webdriverio-test/selenium-server-standalone-3.0.1.jar & - diff --git a/scripts/setup_linux_env.sh b/scripts/setup_linux_env.sh deleted file mode 100755 index da3d0ce6c..000000000 --- a/scripts/setup_linux_env.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -if [ "${TRAVIS_OS_NAME}" == "linux" ] - then - export CHROME_BIN="/usr/bin/google-chrome" - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start & -fi diff --git a/scripts/setup_osx_env.sh b/scripts/setup_osx_env.sh deleted file mode 100755 index 92891f966..000000000 --- a/scripts/setup_osx_env.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -if [ "${TRAVIS_OS_NAME}" == "osx" ] - then - brew cask install google-chrome - sudo Xvfb :99 -ac -screen 0 1024x768x8 & - export CHROME_BIN="/Applications/Google Chrome.app" -fi diff --git a/scripts/test_setup.sh b/scripts/test_setup.sh deleted file mode 100755 index 4220923f3..000000000 --- a/scripts/test_setup.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -EXIT_STATUS=0 - -function check_command { - "$@" - local STATUS=$? - if [ $STATUS -ne 0 ]; then - echo "error with $1 ($STATUS)" >&2 - EXIT_STATUS=$STATUS - fi - } - -check_command scripts/get_geckdriver.sh -sleep 5 -check_command scripts/get_selenium.sh -sleep 5 -check_command scripts/get_chromedriver.sh -sleep 10 -check_command scripts/selenium_connect.sh -sleep 10 - -exit $EXIT_STATUS