/[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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 827 by dpavlin, Tue Dec 9 22:50:07 2008 UTC revision 828 by dpavlin, Sat Dec 13 11:05:30 2008 UTC
# Line 1  Line 1 
1  cd static/js || exit  cd static/js || exit
2    
3  svn co http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid  svn co http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid
4    
5  wget -nc http://extjs.com/deploy/ext-2.2.zip  wget -nc http://extjs.com/deploy/ext-2.2.zip
6  unzip -u `ls -c ext*.zip | head -1`  unzip -u `ls -c ext*.zip | head -1`
7    
8  wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip  wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip
9  unzip -u sql*.zip  unzip -u sql*.zip
10    
11  svn checkout http://inputex.googlecode.com/svn/trunk/ inputex  svn checkout http://inputex.googlecode.com/svn/trunk/ inputex
12  svn checkout http://wireit.googlecode.com/svn/trunk/ wireit  svn checkout http://wireit.googlecode.com/svn/trunk/ wireit
13  test -d jquery-keyboard-navigation && cd jquery-keyboard-navigation && git pull || git clone git://github.com/BrianTheCoder/jquery-keyboard-navigation.git && cd -  
14    function git_upstream() {
15            url=$1
16            dir=`echo $1 | sed -e 's!^.*/\([^/]*\).git$!\1!'`
17            echo "** git $url -> $dir"
18            test -d $dir/.git && cd $dir && git pull || git clone $url && cd -
19    }
20    
21    git_upstream git://github.com/BrianTheCoder/jquery-keyboard-navigation.git
22    
23  wget -nc http://blog.thejit.org/wp-content/jit.zip  wget -nc http://blog.thejit.org/wp-content/jit.zip
24  unzip -u `ls -c jit*.zip | head -1`  unzip -u `ls -c jit*.zip | head -1`
25  git clone git://github.com/nostrademons/jquery-combobox.git  
26    git_upstream git://github.com/nostrademons/jquery-combobox.git
27    
28    function hg_upstream() {
29            url=$1
30            dir=`echo $1 | sed -e 's!^.*/\([^/]*\)$!\1!'`
31            echo "** hg $url -> $dir"
32            test -d $dir/.hg && cd $dir && hg pull || hg clone $url && cd -
33    }
34    
35    hg_upstream http://hg.mozilla.org/users/bsmedberg_mozilla.com/wordmap

Legend:
Removed from v.827  
changed lines
  Added in v.828

  ViewVC Help
Powered by ViewVC 1.1.26