/[Frey]/trunk/bin/checkout-js.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/bin/checkout-js.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 856 - (show annotations)
Tue Dec 16 14:09:50 2008 UTC (15 years, 4 months ago) by dpavlin
File MIME type: application/x-sh
File size: 1272 byte(s)
create svn_upstream, cleanup, added flot
1 cd static/js || exit
2
3 function svn_upstream() {
4 url=$1
5 dir=$2
6 echo "** svn $url -> $dir"
7 test -d $dir/.svn && cd $dir && svn update || svn co $url $dir && cd -
8 }
9 function git_upstream() {
10 url=$1
11 dir=`echo $1 | sed -e 's!^.*/\([^/]*\).git$!\1!'`
12 echo "** git $url -> $dir"
13 test -d $dir/.git && cd $dir && git pull || git clone $url && cd -
14 }
15
16 function hg_upstream() {
17 url=$1
18 dir=`echo $1 | sed -e 's!^.*/\([^/]*\)$!\1!'`
19 echo "** hg $url -> $dir"
20 test -d $dir/.hg && cd $dir && hg pull || hg clone $url && cd -
21 }
22
23
24 wget -nc http://extjs.com/deploy/ext-2.2.zip
25 unzip -u `ls -c ext*.zip | head -1`
26
27 wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip
28 unzip -u sql*.zip
29
30 # YUI
31
32 svn_upstream http://inputex.googlecode.com/svn/trunk/ inputex
33 svn_upstream http://wireit.googlecode.com/svn/trunk/ wireit
34
35 # jquery based
36
37 svn_upstream http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid
38
39 git_upstream git://github.com/BrianTheCoder/jquery-keyboard-navigation.git
40
41 git_upstream git://github.com/nostrademons/jquery-combobox.git
42
43 # graphics
44
45 wget -nc http://blog.thejit.org/wp-content/jit.zip
46 unzip -u `ls -c jit*.zip | head -1`
47
48 hg_upstream http://hg.mozilla.org/users/bsmedberg_mozilla.com/wordmap
49
50 svn_upstream http://flot.googlecode.com/svn/trunk/ flot

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26