source: main/branches/stable_trunk/gli/gli.bat@ 23575

Last change on this file since 23575 was 22088, checked in by dmn, 14 years ago

message tidying

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 6.2 KB
Line 
1@echo off
2color 0A
3pushd "%CD%"
4CD /D "%~dp0"
5set GLILANG=en
6
7if "%GLIMODE%" == "" set GLIMODE=local
8
9:: -------- Run the Greenstone Librarian Interface --------
10
11:: This script must be run from within the directory in which it lives
12if exist gli.bat goto start
13 if "%GLILANG%" == "en" echo This script must be run from the directory in which it resides.
14 if "%GLILANG%" == "es" echo Este gui¢n deber  ejecutarse desde el directorio en el que reside.
15 if "%GLILANG%" == "fr" echo Ce script doit ˆtre ex‚cut‚ …
16 partir du r‚pertoire dans lequel il se trouve.
17 if "%GLILANG%" == "ru" echo â®â áªàš¯â €®«Š¥­ ¡ëâì ¢§ïâ š§ €šà¥ªâ®àšš, ¢ ª®â®à®© ®­ à á¯®«®Š¥­
18 goto exit
19
20:start
21if "%OS%" == "Windows_NT" goto progName
22 :: Invoke a new command processor to ensure there's enough environment space
23 if "%1" == "Second" goto progName
24 command /E:2048 /C %0 Second %1 %2 %3 %4 %5 %6 %7 %8 %9
25 goto done
26
27
28:progName
29if not "%PROGNAME%" == "" goto findGSDL
30 :: otherwise PROGNAME was not set, so default to the Greenstone Librarian Interface (GLI) program
31 if "%GLILANG%" == "es" set PROGNAME=Biblioteca Digital Greenstone
32 if "%GLILANG%" == "fr" set PROGNAME=Bibliothécaire Greenstone
33 if "%GLILANG%" == "ru" set PROGNAME=ÉÎÔÅÒÆÅÊÓ Greenstone
34 :: if the PROGNAME is still not set, then set the language to English
35 if "%PROGNAME%" == "" set PROGNAME=Greenstone Librarian Interface
36
37
38if "%PROGABBR%" == "" set PROGABBR=GLI
39if "%PROGNAME_EN%" == "" set PROGNAME_EN=Greenstone Librarian Interface
40
41:: Now need to work out the _VERSION, GSDLHOME (and if GS3, then GSDL3SRCHOME and GSDL3HOME)
42:findGSDL
43call findgsdl.bat
44if "%GSDLHOME%" == "" goto exit
45
46:: Now need to find Perl. If found, PERLPATH will be set
47call findperl.bat
48if "%PERLPATH%" == "" goto exit
49
50:: Need to find Java. If found, JAVA_EXECUTABLE will be set
51call findjava.bat
52if "%JAVA_EXECUTABLE%" == "" goto exit
53
54
55:checkGLI
56:: ---- Check that the GLI has been compiled ----
57if exist "classes/org/greenstone/gatherer/Gatherer.class" goto runGLI
58if exist "GLI.jar" goto runGLI
59 echo.
60 if "%GLILANG%" == "en" echo You need to compile the Greenstone Librarian Interface (using makegli.bat)
61 if "%GLILANG%" == "en" echo before running this script.
62
63 if "%GLILANG%" == "es" echo Usted necesita compilar la Interfaz de la Biblioteca Digital Greenstone
64 if "%GLILANG%" == "es" echo (por medio de makegli.bat) antes de ejecutar este gui¢n.
65
66 if "%GLILANG%" == "fr" echo Vous devez compiler le Greenstone Interface (en utilisant makegli.bat)
67 if "%GLILANG%" == "fr" echo avant d'ex‚cuter ce script.
68
69 if "%GLILANG%" == "ru" echo ‚ë €®«Š­ë ª®¬¯š«šà®¢ âì ¡š¡«š®â¥ç­ë© š­â¥à䥩á Greenstone (šá¯®«ì§ãï makegli.bat)
70 if "%GLILANG%" == "ru" echo ¯¥à¥€ ¢¢®€®¬ í⮣® áªàš¯â 
71 goto exit
72
73
74:runGLI
75
76if not "%_VERSION%" == "" (
77 echo Greenstone Major Version : %_VERSION%
78 echo.
79)
80
81if not "%GSDL3SRCHOME%" == "" (
82 echo GSDL3SRCHOME:
83 echo %GSDL3SRCHOME%
84 echo.
85)
86
87if not "%GSDL3HOME%" == "" (
88 echo GSDL3HOME:
89 echo %GSDL3HOME%
90 echo.
91)
92
93if not "%GSDLHOME%" == "" (
94 echo GSDLHOME:
95 echo %GSDLHOME%
96 echo.
97)
98
99:: ---- Explain how to bypass Imagemagick and Ghostscript bundled with Greenstone if needed ----
100echo.
101if exist "%GSDLHOME%\bin\windows\ghostscript\bin\*.*" echo GhostScript bundled with Greenstone will be used, if you wish to use the version installed on your system (if any) please go to %GSDLHOME%\bin\windows and rename the folder called ghostscript to something else.
102echo.
103echo.
104if exist "%GSDLHOME%\bin\windows\imagemagick\*.*" echo ImageMagick bundled with Greenstone will be used, if you wish to use the version installed on your system (if any) please go to %GSDLHOME%\bin\windows and rename the folder called imagemagick to something else.
105echo.
106echo.
107
108
109:: ---- Finally, run the GLI ----
110if "%GLILANG%" == "en" echo Running the %PROGNAME%...
111if "%GLILANG%" == "es" echo Ejecutando la %PROGNAME%...
112if "%GLILANG%" == "fr" echo Ex‚cution de %PROGNAME%
113if "%GLILANG%" == "ru" echo ’¥ªãéš© ¡š¡«š %PROGNAME%...
114
115:: -Xms32M To set minimum memory
116:: -Xmx32M To set maximum memory
117:: -verbose:gc To set garbage collection messages
118:: -Xincgc For incremental garbage collection
119:: -Xprof Function call profiling
120:: -Xloggc:<file> Write garbage collection log
121
122
123:: Run GS3 if version = 3
124if "%_VERSION%" == "3" "%JAVA_EXECUTABLE%" -cp classes/;GLI.jar;lib/apache.jar;lib/qfslib.jar org.greenstone.gatherer.GathererProg -gsdl "%GSDLHOME%" -gsdlos %GSDLOS% -gsdl3 "%GSDL3HOME%" -gsdl3src "%GSDL3SRCHOME%" -perl "%PERLPATH%" %1 %2 %3 %4 %5 %6 %7 %8 %9
125if "%_VERSION%" == "3" goto finRun
126
127:: Run GS2 since version is 2:
128:: if FLI is running, we don't want the local Greenstone library server running
129if "%PROGABBR%" == "FLI" goto webLib
130 :: Else we're running GLI, so we want the local Greenstone library server (if server.exe/gs2-server.bat exists, otherwise it will be webLib)
131 if not exist "%GSDLHOME%\server.exe" if not exist "%GSDLHOME%\gs2-server.bat" goto webLib
132
133:localLib
134 if exist "%GSDLHOME%\server.exe" (
135 set locallib=%GSDLHOME%\server.exe
136 ) else (
137 set locallib=%GSDLHOME%\gs2-server.bat
138 )
139
140 "%JAVA_EXECUTABLE%" -Xmx128M -cp classes/;GLI.jar;lib/apache.jar;lib/qfslib.jar org.greenstone.gatherer.GathererProg -gsdl "%GSDLHOME%" -gsdlos %GSDLOS% -perl "%PERLPATH%" -local_library "%locallib%" %1 %2 %3 %4 %5 %6 %7 %8 %9
141 if ERRORLEVEL 2 (
142 goto localLib
143 )
144 goto finRun
145
146:webLib
147 "%JAVA_EXECUTABLE%" -Xmx128M -cp classes/;GLI.jar;lib/apache.jar;lib/qfslib.jar org.greenstone.gatherer.GathererProg -gsdl "%GSDLHOME%" -gsdlos %GSDLOS% -perl "%PERLPATH%" %1 %2 %3 %4 %5 %6 %7 %8 %9
148 if ERRORLEVEL 2 (
149 goto webLib
150 )
151 goto finRun
152
153:finRun
154 if "%GLILANG%" == "en" echo Done!
155 if "%GLILANG%" == "es" echo ­Hecho!
156 if "%GLILANG%" == "fr" echo Termin‚!
157 if "%GLILANG%" == "ru" echo ‚믮«­¥­®!
158 goto done
159
160
161:exit
162echo.
163pause
164color 07
165popd
166
167:done
168:: ---- Clean up ----
169set PERLPATH=
170set JAVA_EXECUTABLE=
171set GLIMODE=
172set PROGNAME=
173set PROGNAME_EN=
174set PROGFULLNAME=
175set PROGABBR=
176color 07
177popd
Note: See TracBrowser for help on using the repository browser.