/[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 828 - (hide annotations)
Sat Dec 13 11:05:30 2008 UTC (15 years, 5 months ago) by dpavlin
File MIME type: application/x-sh
File size: 1029 byte(s)
added wordmap canvas js from http://benjamin.smedbergs.us/wordmap/wordmap.html
cleanup upstream checkout/update script for git and hg
1 dpavlin 159 cd static/js || exit
2 dpavlin 828
3 dpavlin 159 svn co http://ext-ux-livegrid.googlecode.com/svn/trunk/ ext-ux-livegrid
4 dpavlin 828
5 dpavlin 193 wget -nc http://extjs.com/deploy/ext-2.2.zip
6     unzip -u `ls -c ext*.zip | head -1`
7 dpavlin 828
8 dpavlin 173 wget -nc http://ondras.zarovi.cz/sql/sql-2.1.1.zip
9     unzip -u sql*.zip
10 dpavlin 828
11 dpavlin 173 svn checkout http://inputex.googlecode.com/svn/trunk/ inputex
12 dpavlin 193 svn checkout http://wireit.googlecode.com/svn/trunk/ wireit
13 dpavlin 828
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 dpavlin 284 wget -nc http://blog.thejit.org/wp-content/jit.zip
24     unzip -u `ls -c jit*.zip | head -1`
25 dpavlin 828
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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26