/[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 787 by dpavlin, Tue Dec 9 22:50:07 2008 UTC revision 856 by dpavlin, Tue Dec 16 14:09:50 2008 UTC
# Line 1  Line 1 
1  cd static/js || exit  cd static/js || exit
2  svn co http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid  
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  wget -nc http://extjs.com/deploy/ext-2.2.zip
25  unzip -u `ls -c ext*.zip | head -1`  unzip -u `ls -c ext*.zip | head -1`
26    
27  wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip  wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip
28  unzip -u sql*.zip  unzip -u sql*.zip
29  svn checkout http://inputex.googlecode.com/svn/trunk/ inputex  
30  svn checkout http://wireit.googlecode.com/svn/trunk/ wireit  # YUI
31  test -d jquery-keyboard-navigation && cd jquery-keyboard-navigation && git pull || git clone git://github.com/BrianTheCoder/jquery-keyboard-navigation.git && cd -  
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  wget -nc http://blog.thejit.org/wp-content/jit.zip
46  unzip -u `ls -c jit*.zip | head -1`  unzip -u `ls -c jit*.zip | head -1`
47  git clone git://github.com/nostrademons/jquery-combobox.git  
48    hg_upstream http://hg.mozilla.org/users/bsmedberg_mozilla.com/wordmap
49    
50    svn_upstream http://flot.googlecode.com/svn/trunk/ flot

Legend:
Removed from v.787  
changed lines
  Added in v.856

  ViewVC Help
Powered by ViewVC 1.1.26