/[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 855 by dpavlin, Sat Dec 13 11:05:30 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    
3  svn co http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid  function svn_upstream() {
4            url=$1
5  wget -nc http://extjs.com/deploy/ext-2.2.zip          dir=$2
6  unzip -u `ls -c ext*.zip | head -1`          echo "** svn $url -> $dir"
7            test -d $dir/.svn && cd $dir && svn update || svn co $url $dir && cd -
8  wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip  }
 unzip -u sql*.zip  
   
 svn checkout http://inputex.googlecode.com/svn/trunk/ inputex  
 svn checkout http://wireit.googlecode.com/svn/trunk/ wireit  
   
9  function git_upstream() {  function git_upstream() {
10          url=$1          url=$1
11          dir=`echo $1 | sed -e 's!^.*/\([^/]*\).git$!\1!'`          dir=`echo $1 | sed -e 's!^.*/\([^/]*\).git$!\1!'`
# Line 18  function git_upstream() { Line 13  function git_upstream() {
13          test -d $dir/.git && cd $dir && git pull || git clone $url && cd -          test -d $dir/.git && cd $dir && git pull || git clone $url && cd -
14  }  }
15    
 git_upstream git://github.com/BrianTheCoder/jquery-keyboard-navigation.git  
   
 wget -nc http://blog.thejit.org/wp-content/jit.zip  
 unzip -u `ls -c jit*.zip | head -1`  
   
 git_upstream git://github.com/nostrademons/jquery-combobox.git  
   
16  function hg_upstream() {  function hg_upstream() {
17          url=$1          url=$1
18          dir=`echo $1 | sed -e 's!^.*/\([^/]*\)$!\1!'`          dir=`echo $1 | sed -e 's!^.*/\([^/]*\)$!\1!'`
# Line 32  function hg_upstream() { Line 20  function hg_upstream() {
20          test -d $dir/.hg && cd $dir && hg pull || hg clone $url && cd -          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  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.855  
changed lines
  Added in v.856

  ViewVC Help
Powered by ViewVC 1.1.26