source: trunk/gsdl3/gs3-prepare.bat@ 7779

Last change on this file since 7779 was 7779, checked in by kjdon, 20 years ago

new version of tomcat

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1@echo off
2
3:: ---- Check that %GSDL3HOME% is set ----
4if not "%GSDL3HOME%" == "" goto start
5 echo You need to run gs3-setup.bat before running this file
6 goto exit
7
8:start
9:: ---- Make sure we have the current GSDL3 (also prunes empty directories) ----
10cvs update -dRP
11
12:: ---- Check out MGPP ----
13cd %GSDL3HOME%\packages
14cvs checkout mgpp
15
16:: ---- Unpack Tomcat and rename folder ----
17echo Unpacking Tomcat...
18cd %GSDL3HOME%\comms\jakarta
19"%GSDL3HOME%\winutil\gunzip.exe" tomcat-4.1.30.zip
20ren jakarta-tomcat-4.1.30 tomcat
21del tomcat-4.1.30.zip
22
23:: ---- Edit the Tomcat setclasspath script to add our classpath ----
24echo Fixing setclasspath.bat...
25cd %GSDL3HOME%\comms\jakarta\tomcat\bin
26ren setclasspath.bat setclasspath.bat.orig
27"%GSDL3HOME%\winutil\sed.exe" 's,set CLASSPATH=,set CLASSPATH=%%CLASSPATH%%;,' setclasspath.bat.orig > setclasspath.bat
28
29:: ---- Unpack the sample collections ----
30echo Unpacking sample collections...
31cd %GSDL3HOME%\web\sites\localsite\collect
32
33cd chinesedemo\index
34"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
35"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
36del indexfiles.tar
37cd ..\..
38
39cd demo\index
40"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
41"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
42del indexfiles.tar
43cd ..\..
44
45cd gberg\index
46"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
47"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
48del indexfiles.tar
49cd ..\..
50
51cd mgppdemo\index
52"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
53"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
54del indexfiles.tar
55cd ..\..
56
57cd nzmaps\index
58"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
59"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
60del indexfiles.tar
61cd ..\..
62
63cd %GSDL3HOME%
64
65:exit
Note: See TracBrowser for help on using the repository browser.