├── jquery └── 1.8.2 │ ├── version.txt │ ├── get.sh │ └── serve.lisp ├── tinymce └── 4.0.4 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── codemirror └── 3.20 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── jquery-seq ├── 0.0.1 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── 0.0.2 │ ├── version.txt │ ├── serve.lisp │ └── get.sh └── 0.0.3 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── jquery-fancybox └── 2.1.5 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── jquery-sisyphus └── 1.1.103 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── jquery-waypoints └── 2.0.4 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── twitter-bootstrap └── 2.2.1 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── weblocks-jquery ├── 0.1.4 │ ├── version.txt │ ├── get.sh │ └── serve.lisp ├── 0.1.5 │ ├── version.txt │ ├── get.sh │ └── serve.lisp └── 0.2.0 │ ├── version.txt │ ├── get.sh │ └── serve.lisp ├── bootstrap-datepicker └── 1.2.0 │ ├── version.txt │ ├── get.sh │ └── serve.lisp ├── bootstrap-timepicker └── 0.2.3 │ ├── version.txt │ ├── get.sh │ └── serve.lisp ├── jquery-iframe-transport ├── 22bf3 │ ├── version.txt │ ├── serve.lisp │ └── get.sh └── 74e9e │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── jquery-tristate-checkbox └── 1.1.3 │ ├── version.txt │ ├── get.sh │ └── serve.lisp ├── codemirror-mustache-addon ├── rev-1 │ ├── version.txt │ ├── serve.lisp │ └── get.sh └── rev-2 │ ├── version.txt │ ├── serve.lisp │ └── get.sh ├── tinymce-russian-lang └── 2013-10-14 │ ├── version.txt │ ├── serve.lisp │ └── get.sh └── README /jquery/1.8.2/version.txt: -------------------------------------------------------------------------------- 1 | jquery-1.8.2 2 | -------------------------------------------------------------------------------- /tinymce/4.0.4/version.txt: -------------------------------------------------------------------------------- 1 | tinymce-4.0.4 2 | -------------------------------------------------------------------------------- /codemirror/3.20/version.txt: -------------------------------------------------------------------------------- 1 | codemirror-3.20 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.1/version.txt: -------------------------------------------------------------------------------- 1 | jquery-seq-0.0.1 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.2/version.txt: -------------------------------------------------------------------------------- 1 | jquery-seq-0.0.2 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.3/version.txt: -------------------------------------------------------------------------------- 1 | jquery-seq-0.0.3 2 | -------------------------------------------------------------------------------- /jquery-fancybox/2.1.5/version.txt: -------------------------------------------------------------------------------- 1 | jquery-fancybox-2.1.5 2 | -------------------------------------------------------------------------------- /jquery-sisyphus/1.1.103/version.txt: -------------------------------------------------------------------------------- 1 | jquery-sisyphus-1.1.103 2 | -------------------------------------------------------------------------------- /jquery-waypoints/2.0.4/version.txt: -------------------------------------------------------------------------------- 1 | jquery-waypoints-2.0.4 2 | -------------------------------------------------------------------------------- /twitter-bootstrap/2.2.1/version.txt: -------------------------------------------------------------------------------- 1 | twitter-bootstrap-2.2.1 2 | -------------------------------------------------------------------------------- /weblocks-jquery/0.1.4/version.txt: -------------------------------------------------------------------------------- 1 | weblocks-jquery-0.1.4 2 | -------------------------------------------------------------------------------- /weblocks-jquery/0.1.5/version.txt: -------------------------------------------------------------------------------- 1 | weblocks-jquery-0.1.5 2 | -------------------------------------------------------------------------------- /weblocks-jquery/0.2.0/version.txt: -------------------------------------------------------------------------------- 1 | weblocks-jquery-0.2.0 2 | -------------------------------------------------------------------------------- /jquery/1.8.2/get.sh: -------------------------------------------------------------------------------- 1 | wget http://code.jquery.com/jquery-1.8.2.js 2 | -------------------------------------------------------------------------------- /bootstrap-datepicker/1.2.0/version.txt: -------------------------------------------------------------------------------- 1 | bootstrap-datepicker-1.2.0 2 | -------------------------------------------------------------------------------- /bootstrap-timepicker/0.2.3/version.txt: -------------------------------------------------------------------------------- 1 | bootstrap-timepicker-0.2.3 2 | -------------------------------------------------------------------------------- /jquery-iframe-transport/22bf3/version.txt: -------------------------------------------------------------------------------- 1 | jquery-iframe-transport-22bf3 2 | -------------------------------------------------------------------------------- /jquery-iframe-transport/74e9e/version.txt: -------------------------------------------------------------------------------- 1 | jquery-iframe-transport-74e9e 2 | -------------------------------------------------------------------------------- /jquery-tristate-checkbox/1.1.3/version.txt: -------------------------------------------------------------------------------- 1 | jquery-tristate-checkbox-1.1.3 2 | -------------------------------------------------------------------------------- /tinymce/4.0.4/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-directory "tinymce/js/tinymce" "tinymce") 2 | -------------------------------------------------------------------------------- /codemirror-mustache-addon/rev-1/version.txt: -------------------------------------------------------------------------------- 1 | codemirror-mustache-addon-rev-1 2 | -------------------------------------------------------------------------------- /codemirror-mustache-addon/rev-2/version.txt: -------------------------------------------------------------------------------- 1 | codemirror-mustache-addon-rev-2 2 | -------------------------------------------------------------------------------- /tinymce-russian-lang/2013-10-14/version.txt: -------------------------------------------------------------------------------- 1 | tinymce-russian-lang-2013-10-14 2 | -------------------------------------------------------------------------------- /jquery-fancybox/2.1.5/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-directory "fancyBox-2.1.5" "/pub/fancyBox") 2 | -------------------------------------------------------------------------------- /codemirror/3.20/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-directory "codemirror-3.20" "/pub/scripts/codemirror") 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.1/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jquery-seq.js" "/pub/scripts/jquery-seq.js") 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.2/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jquery-seq.js" "/pub/scripts/jquery-seq.js") 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.3/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jquery-seq.js" "/pub/scripts/jquery-seq.js") 2 | -------------------------------------------------------------------------------- /jquery/1.8.2/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jquery-1.8.2.js" "/pub/scripts/jquery-1.8.2.js") 2 | -------------------------------------------------------------------------------- /twitter-bootstrap/2.2.1/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-directory "bootstrap/docs/assets" "bootstrap") 2 | -------------------------------------------------------------------------------- /jquery-waypoints/2.0.4/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-directory "jquery-waypoints-2.0.4" "/pub/waypoints") 2 | -------------------------------------------------------------------------------- /tinymce-russian-lang/2013-10-14/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "langs/ru.js" "tinymce/langs/ru.js") 2 | -------------------------------------------------------------------------------- /jquery-sisyphus/1.1.103/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-directory "sisyphus-1.1.103" "/pub/scripts/jquery-sisyphus") 2 | -------------------------------------------------------------------------------- /codemirror-mustache-addon/rev-1/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "codemirror-mustache.js" "/pub/scripts/codemirror-mustache.js") 2 | -------------------------------------------------------------------------------- /jquery-fancybox/2.1.5/get.sh: -------------------------------------------------------------------------------- 1 | wget https://github.com/fancyapps/fancyBox/archive/v2.1.5.tar.gz 2 | tar zxvf v2.1.5.tar.gz 3 | -------------------------------------------------------------------------------- /jquery-iframe-transport/22bf3/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jquery.iframe-transport.js" "/pub/scripts/jquery.iframe-transport.js") 2 | -------------------------------------------------------------------------------- /jquery-iframe-transport/74e9e/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jquery.iframe-transport.js" "/pub/scripts/jquery.iframe-transport.js") 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.1/get.sh: -------------------------------------------------------------------------------- 1 | wget https://raw.github.com/html/jquery-seq/8f1c86c8a21a35578760aa3efd6da3a318fec936/jquery-seq.js 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.2/get.sh: -------------------------------------------------------------------------------- 1 | wget https://raw.github.com/html/jquery-seq/c63d5deda44d52dc75091b0ce2709e00be748e3d/jquery-seq.js 2 | -------------------------------------------------------------------------------- /jquery-seq/0.0.3/get.sh: -------------------------------------------------------------------------------- 1 | wget https://raw.github.com/html/jquery-seq/accfd715128a0251e768a2c8acb907fa5eeba42d/jquery-seq.js 2 | -------------------------------------------------------------------------------- /codemirror/3.20/get.sh: -------------------------------------------------------------------------------- 1 | wget http://codemirror.net/codemirror-3.20.zip 2 | unzip -x codemirror-3.20.zip 3 | rm codemirror-3.20.zip 4 | -------------------------------------------------------------------------------- /jquery-sisyphus/1.1.103/get.sh: -------------------------------------------------------------------------------- 1 | wget https://github.com/simsalabim/sisyphus/archive/v1.1.103.tar.gz 2 | tar zxvf v1.1.103.tar.gz 3 | -------------------------------------------------------------------------------- /jquery-waypoints/2.0.4/get.sh: -------------------------------------------------------------------------------- 1 | wget https://github.com/imakewebthings/jquery-waypoints/archive/v2.0.4.tar.gz 2 | tar zxvf v2.0.4.tar.gz 3 | -------------------------------------------------------------------------------- /codemirror-mustache-addon/rev-1/get.sh: -------------------------------------------------------------------------------- 1 | wget https://gist.github.com/html/8015604/raw/c27985ab121a3fc248e8b85f4fa247e556872fba/codemirror-mustache.js 2 | -------------------------------------------------------------------------------- /jquery-tristate-checkbox/1.1.3/get.sh: -------------------------------------------------------------------------------- 1 | wget https://github.com/jlbruno/jQuery-Tristate-Checkbox-plugin/archive/1.1.3.tar.gz 2 | tar zxvf 1.1.3.tar.gz 3 | -------------------------------------------------------------------------------- /tinymce-russian-lang/2013-10-14/get.sh: -------------------------------------------------------------------------------- 1 | wget "http://www.tinymce.com/i18n/download.php?download=ru" -O lang.zip 2 | unzip -x lang.zip 3 | rm lang.zip 4 | -------------------------------------------------------------------------------- /tinymce/4.0.4/get.sh: -------------------------------------------------------------------------------- 1 | wget "http://download.moxiecode.com/tinymce/tinymce_4.0.4_dev.zip" 2 | unzip -x tinymce_4.0.4_dev.zip 3 | rm tinymce_4.0.4_dev.zip 4 | -------------------------------------------------------------------------------- /bootstrap-datepicker/1.2.0/get.sh: -------------------------------------------------------------------------------- 1 | wget https://github.com/eternicode/bootstrap-datepicker/archive/1.2.0.tar.gz 2 | tar zxvf 1.2.0.tar.gz 3 | rm 1.2.0.tar.gz 4 | -------------------------------------------------------------------------------- /jquery-iframe-transport/22bf3/get.sh: -------------------------------------------------------------------------------- 1 | wget https://raw.github.com/html/jquery-iframe-transport/22bf3d05f979811827e5c8c001098d24d9c801b2/jquery.iframe-transport.js 2 | -------------------------------------------------------------------------------- /jquery-iframe-transport/74e9e/get.sh: -------------------------------------------------------------------------------- 1 | wget https://raw.github.com/html/jquery-iframe-transport/74e9eb794b60281f6772f1e0b79aeba006d98c6f/jquery.iframe-transport.js 2 | -------------------------------------------------------------------------------- /weblocks-jquery/0.1.4/get.sh: -------------------------------------------------------------------------------- 1 | git clone https://github.com/html/weblocks-jquery.git 2 | cd weblocks-jquery && git reset --hard 6ea5213e610c90256baa54b56c3b1bc9ce54a0ad 3 | -------------------------------------------------------------------------------- /weblocks-jquery/0.1.5/get.sh: -------------------------------------------------------------------------------- 1 | git clone https://github.com/html/weblocks-jquery.git 2 | cd weblocks-jquery && git reset --hard 29b204d5807a2139177c4c3ee7fb669c0013d8fd 3 | -------------------------------------------------------------------------------- /weblocks-jquery/0.2.0/get.sh: -------------------------------------------------------------------------------- 1 | git clone https://github.com/html/weblocks-jquery.git 2 | cd weblocks-jquery && git reset --hard 2228856844f0d8e50e4b0d469b57628258e54950 3 | -------------------------------------------------------------------------------- /twitter-bootstrap/2.2.1/get.sh: -------------------------------------------------------------------------------- 1 | wget "https://github.com/twbs/bootstrap/archive/v2.2.1.tar.gz" 2 | tar zxvf v2.2.1.tar.gz 3 | ln -s bootstrap-2.2.1 bootstrap 4 | rm v2.2.1.tar.gz 5 | -------------------------------------------------------------------------------- /bootstrap-timepicker/0.2.3/get.sh: -------------------------------------------------------------------------------- 1 | git clone https://github.com/jdewit/bootstrap-timepicker.git 2 | cd bootstrap-timepicker && git reset --hard 796688ba405916186aeae4326165b219f4c6659d 3 | -------------------------------------------------------------------------------- /codemirror-mustache-addon/rev-2/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "codemirror-mustache.js" "/pub/scripts/codemirror-mustache.js") 2 | (serve-file "mustache-mode.css" "/pub/stylesheets/mustache-mode.css") 3 | -------------------------------------------------------------------------------- /weblocks-jquery/0.1.4/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "weblocks-jquery/weblocks-jquery.js" "/pub/scripts/weblocks-jquery.js") 2 | (serve-file "weblocks-jquery/dialog-jquery.js" "/pub/scripts/dialog-jquery.js") 3 | -------------------------------------------------------------------------------- /weblocks-jquery/0.1.5/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "weblocks-jquery/weblocks-jquery.js" "/pub/scripts/weblocks-jquery.js") 2 | (serve-file "weblocks-jquery/dialog-jquery.js" "/pub/scripts/dialog-jquery.js") 3 | -------------------------------------------------------------------------------- /weblocks-jquery/0.2.0/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "weblocks-jquery/weblocks-jquery.js" "/pub/scripts/weblocks-jquery.js") 2 | (serve-file "weblocks-jquery/dialog-jquery.js" "/pub/scripts/dialog-jquery.js") 3 | -------------------------------------------------------------------------------- /codemirror-mustache-addon/rev-2/get.sh: -------------------------------------------------------------------------------- 1 | wget https://gist.github.com/html/8015604/raw/c27985ab121a3fc248e8b85f4fa247e556872fba/codemirror-mustache.js 2 | echo ".cm-mustache {color: #0ca;}" > mustache-mode.css 3 | -------------------------------------------------------------------------------- /bootstrap-timepicker/0.2.3/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "bootstrap-timepicker/compiled/timepicker.css" "/pub/stylesheets/bootstrap-timepicker.css") 2 | (serve-file "bootstrap-timepicker/js/bootstrap-timepicker.js" "/pub/scripts/bootstrap-timepicker.js") 3 | -------------------------------------------------------------------------------- /jquery-tristate-checkbox/1.1.3/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "jQuery-Tristate-Checkbox-plugin-1.1.3/jquery.tristate.js" "/pub/scripts/jquery.tristate.js") 2 | (serve-file "jQuery-Tristate-Checkbox-plugin-1.1.3/jquery.tristate.min.js" "/pub/scripts/jquery.tristate.min.js") 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Assets repository for weblocks 2 | 3 | Here is example of using jQuery assets package. 4 | 5 | (weblocks-utils:require-assets 6 | "https://raw.github.com/html/weblocks-assets/master/jquery/1.8.2/") 7 | 8 | For more information see Weblocks-utils package README https://github.com/html/weblocks-utils 9 | -------------------------------------------------------------------------------- /bootstrap-datepicker/1.2.0/serve.lisp: -------------------------------------------------------------------------------- 1 | (serve-file "bootstrap-datepicker-1.2.0/css/datepicker.css" "/pub/stylesheets/bootstrap-datepicker.css") 2 | (serve-file "bootstrap-datepicker-1.2.0/js/bootstrap-datepicker.js" "/pub/scripts/bootstrap-datepicker.js") 3 | (serve-directory "bootstrap-datepicker-1.2.0/js/locales" "/pub/scripts/bootstrap-datepicker-locales") 4 | --------------------------------------------------------------------------------