diff --git a/devel/jquery.sh b/devel/jquery.sh deleted file mode 100755 index 155ceb0576..0000000000 --- a/devel/jquery.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -# -# Install JQuery /assets/twbs/jquery/ -# - -echo $(tput setaf 7)"JQUERY"$(tput sgr0) - -# download -echo -n $(tput setaf 4)"Go to LMS root dir: "$(tput sgr0) -cd .. -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# download -echo $(tput setaf 4)"Downloading: "$(tput sgr0) -wget http://code.jquery.com/jquery-latest.min.js -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# creating -echo -n $(tput setaf 4)"Creating dir: "$(tput sgr0) -mkdir -p assets/twbs/jquery -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# merging -echo -n $(tput setaf 4)"Merging: "$(tput sgr0) -mv jquery-latest.min.js assets/twbs/jquery/. -echo $(tput setaf 2)"DONE"$(tput sgr0) diff --git a/devel/navgoco.sh b/devel/navgoco.sh deleted file mode 100755 index 42546dfc2c..0000000000 --- a/devel/navgoco.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -# -# Install Navgoco /assets/twbs/navgoco/ -# - -RELEASE="0.2.1" -echo $(tput setaf 7)"NAVGOCO $RELEASE"$(tput sgr0) - -# download -echo -n $(tput setaf 4)"Go to LMS root dir: "$(tput sgr0) -cd .. -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# download -echo $(tput setaf 4)"Downloading: "$(tput sgr0) -wget https://github.com/tefra/navgoco/archive/${RELEASE}.zip -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# extracting package -echo -n $(tput setaf 4)"Extracting: "$(tput sgr0) -unzip ${RELEASE}.zip -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# creating -#echo -n $(tput setaf 4)"Creating dir: "$(tput sgr0) -#mkdir assets -#echo $(tput setaf 2)"DONE"$(tput sgr0) - -# merging -echo -n $(tput setaf 4)"Merging: "$(tput sgr0) -mv navgoco-${RELEASE}/ assets/twbs/navgoco -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# cleanup -echo -n $(tput setaf 4)"Cleaning up... " $(tput sgr0) -rm -Rf navgoco-${RELEASE} ${RELEASE}.zip -echo $(tput setaf 2)"DONE"$(tput sgr0) \ No newline at end of file diff --git a/devel/twitter_bootstrap.sh b/devel/twitter_bootstrap.sh deleted file mode 100755 index f569dc96a4..0000000000 --- a/devel/twitter_bootstrap.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -# -# Install Twitter Bootstrap framework to /assets/bootstrap/* -# - -RELEASE="3.3.1" -echo $(tput setaf 7)"TWBS $RELEASE"$(tput sgr0) - -# download -echo -n $(tput setaf 4)"Go to LMS root dir: "$(tput sgr0) -cd .. -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# download -echo $(tput setaf 4)"Downloading: "$(tput sgr0) -wget https://github.com/twbs/bootstrap/releases/download/v${RELEASE}/bootstrap-${RELEASE}-dist.zip -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# extracting package -echo -n $(tput setaf 4)"Extracting: "$(tput sgr0) -unzip bootstrap-${RELEASE}-dist.zip -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# creating -echo -n $(tput setaf 4)"Creating dir: "$(tput sgr0) -mkdir assets -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# merging -echo -n $(tput setaf 4)"Merging: "$(tput sgr0) -mv dist/ assets/bootstrap/ -echo $(tput setaf 2)"DONE"$(tput sgr0) - -# cleanup -echo -n $(tput setaf 4)"Cleaning up... " $(tput sgr0) -rm -Rf dist bootstrap-${RELEASE}-dist.zip -echo $(tput setaf 2)"DONE"$(tput sgr0) \ No newline at end of file