10 |
|
## Config |
11 |
|
|
12 |
|
# HTTP Server. This is the source of all downloads. |
13 |
< |
HTTPSERVER="http://www.i-scream.org.uk/downloads/lib/" |
13 |
> |
HTTPSERVER="http://www.i-scream.org/pub/i-scream/cms/lib/" |
14 |
|
|
15 |
|
# This script uses wget, set it's path and parameters here |
16 |
|
WGETPARAM="-nv" |
48 |
|
## Cache javadoc API package-list files |
49 |
|
echo "> Caching remote API's" |
50 |
|
|
51 |
< |
JDKURL="http://java.sun.com/j2se/1.4.1/docs/api/" |
51 |
> |
JDKURL="http://java.sun.com/j2se/1.4.2/docs/api/" |
52 |
|
mkdir -p ${SRCROOT}/.api-cache/jdk |
53 |
|
cd ${SRCROOT}/.api-cache/jdk |
54 |
|
if test -r "package-list"; then \ |
58 |
|
${WGET} ${JDKURL}package-list; \ |
59 |
|
fi |
60 |
|
|
61 |
< |
UTILURL="http://www.i-scream.org.uk/javadoc/util/" |
61 |
> |
UTILURL="http://www.i-scream.org/javadoc/util/" |
62 |
|
mkdir -p ${SRCROOT}/.api-cache/util |
63 |
|
cd ${SRCROOT}/.api-cache/util |
64 |
|
if test -r "package-list"; then \ |