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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 856 - (hide annotations)
Tue Dec 16 14:09:50 2008 UTC (15 years, 5 months ago) by dpavlin
File MIME type: application/x-sh
File size: 1272 byte(s)
create svn_upstream, cleanup, added flot
1 dpavlin 159 cd static/js || exit
2 dpavlin 828
3 dpavlin 856 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 dpavlin 828
16 dpavlin 856 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 dpavlin 193 wget -nc http://extjs.com/deploy/ext-2.2.zip
25     unzip -u `ls -c ext*.zip | head -1`
26 dpavlin 828
27 dpavlin 173 wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip
28     unzip -u sql*.zip
29 dpavlin 828
30 dpavlin 856 # YUI
31 dpavlin 828
32 dpavlin 856 svn_upstream http://inputex.googlecode.com/svn/trunk/ inputex
33     svn_upstream http://wireit.googlecode.com/svn/trunk/ wireit
34 dpavlin 828
35 dpavlin 856 # jquery based
36    
37     svn_upstream http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid
38    
39 dpavlin 828 git_upstream git://github.com/BrianTheCoder/jquery-keyboard-navigation.git
40    
41 dpavlin 856 git_upstream git://github.com/nostrademons/jquery-combobox.git
42    
43     # graphics
44    
45 dpavlin 284 wget -nc http://blog.thejit.org/wp-content/jit.zip
46     unzip -u `ls -c jit*.zip | head -1`
47 dpavlin 828
48 dpavlin 856 hg_upstream http://hg.mozilla.org/users/bsmedberg_mozilla.com/wordmap
49 dpavlin 828
50 dpavlin 856 svn_upstream http://flot.googlecode.com/svn/trunk/ flot

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26