author | wenzelm |
Sun, 12 Jun 2011 16:19:29 +0200 | |
changeset 43368 | 0dc67b3cf8a5 |
parent 43320 | 657635e0445a |
child 43369 | 4c86b3405010 |
permissions | -rwxr-xr-x |
34333 | 1 |
#!/usr/bin/env bash |
2 |
# |
|
34664 | 3 |
# Author: Makarius |
4 |
# |
|
5 |
# DESCRIPTION: Isabelle/jEdit interface wrapper |
|
6 |
||
34333 | 7 |
|
43285 | 8 |
## sources |
9 |
||
43320 | 10 |
declare -a SOURCES=( |
43285 | 11 |
"src/dockable.scala" |
12 |
"src/document_model.scala" |
|
13 |
"src/document_view.scala" |
|
14 |
"src/html_panel.scala" |
|
15 |
"src/isabelle_encoding.scala" |
|
16 |
"src/isabelle_hyperlinks.scala" |
|
17 |
"src/isabelle_markup.scala" |
|
18 |
"src/isabelle_options.scala" |
|
19 |
"src/isabelle_sidekick.scala" |
|
20 |
"src/output_dockable.scala" |
|
21 |
"src/plugin.scala" |
|
22 |
"src/protocol_dockable.scala" |
|
23 |
"src/raw_output_dockable.scala" |
|
24 |
"src/scala_console.scala" |
|
25 |
"src/session_dockable.scala" |
|
26 |
) |
|
27 |
||
43320 | 28 |
declare -a RESOURCES=( |
43286 | 29 |
"src/actions.xml" |
30 |
"src/dockables.xml" |
|
31 |
"src/Isabelle.props" |
|
32 |
"src/services.xml" |
|
43285 | 33 |
) |
34 |
||
35 |
||
34333 | 36 |
## diagnostics |
37 |
||
34664 | 38 |
PRG="$(basename "$0")" |
39 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
40 |
function usage() |
34333 | 41 |
{ |
42 |
echo |
|
34664 | 43 |
echo "Usage: isabelle $PRG [OPTIONS] [FILES ...]" |
34333 | 44 |
echo |
45 |
echo " Options are:" |
|
46 |
echo " -J OPTION add JVM runtime option" |
|
34409 | 47 |
echo " (default JEDIT_JAVA_OPTIONS=$JEDIT_JAVA_OPTIONS)" |
43285 | 48 |
echo " -b build only" |
34691 | 49 |
echo " -d enable debugger" |
43285 | 50 |
echo " -f fresh build" |
34333 | 51 |
echo " -j OPTION add jEdit runtime option" |
52 |
echo " (default JEDIT_OPTIONS=$JEDIT_OPTIONS)" |
|
53 |
echo " -l NAME logic image name (default ISABELLE_LOGIC=$ISABELLE_LOGIC)" |
|
54 |
echo " -m MODE add print mode for output" |
|
55 |
echo |
|
34664 | 56 |
echo "Start jEdit with Isabelle plugin setup and opens theory FILES" |
34333 | 57 |
echo |
58 |
exit 1 |
|
59 |
} |
|
60 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
61 |
function fail() |
34333 | 62 |
{ |
63 |
echo "$1" >&2 |
|
64 |
exit 2 |
|
65 |
} |
|
66 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
67 |
function failed() |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
68 |
{ |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
69 |
fail "Failed!" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
70 |
} |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
71 |
|
34333 | 72 |
|
73 |
## process command line |
|
74 |
||
75 |
# options |
|
76 |
||
43285 | 77 |
BUILD_ONLY=false |
78 |
BUILD_JARS="jars" |
|
34333 | 79 |
JEDIT_LOGIC="$ISABELLE_LOGIC" |
80 |
JEDIT_PRINT_MODE="" |
|
81 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
82 |
function getoptions() |
34780 | 83 |
{ |
84 |
OPTIND=1 |
|
43285 | 85 |
while getopts "J:bdfj:l:m:" OPT |
34780 | 86 |
do |
87 |
case "$OPT" in |
|
88 |
J) |
|
89 |
JAVA_ARGS["${#JAVA_ARGS[@]}"]="$OPTARG" |
|
90 |
;; |
|
43285 | 91 |
b) |
92 |
BUILD_ONLY=true |
|
93 |
;; |
|
34780 | 94 |
d) |
95 |
JAVA_ARGS["${#JAVA_ARGS[@]}"]="-Xdebug" |
|
96 |
JAVA_ARGS["${#JAVA_ARGS[@]}"]="-Xrunjdwp:transport=dt_socket,server=y,suspend=n" |
|
97 |
;; |
|
43285 | 98 |
f) |
99 |
BUILD_JARS="jars_fresh" |
|
100 |
;; |
|
34780 | 101 |
j) |
102 |
ARGS["${#ARGS[@]}"]="$OPTARG" |
|
103 |
;; |
|
104 |
l) |
|
105 |
JEDIT_LOGIC="$OPTARG" |
|
106 |
;; |
|
107 |
m) |
|
108 |
if [ -z "$JEDIT_PRINT_MODE" ]; then |
|
109 |
JEDIT_PRINT_MODE="$OPTARG" |
|
110 |
else |
|
111 |
JEDIT_PRINT_MODE="$JEDIT_PRINT_MODE,$OPTARG" |
|
112 |
fi |
|
113 |
;; |
|
114 |
\?) |
|
115 |
usage |
|
116 |
;; |
|
117 |
esac |
|
118 |
done |
|
119 |
} |
|
34581
abab3a577e10
slightly more robust treatment of options via arrays;
wenzelm
parents:
34412
diff
changeset
|
120 |
|
38257
f0fd14a9c11f
clarified JEDIT_JAVA_OPTIONS vs. JEDIT_SYSTEM_OPTIONS -- discontinued JEDIT_APPLE_PROPERTIES;
wenzelm
parents:
34881
diff
changeset
|
121 |
declare -a JAVA_ARGS; eval "JAVA_ARGS=($JEDIT_JAVA_OPTIONS $JEDIT_SYSTEM_OPTIONS)" |
34843
eb8806a2e348
define scala.home, for more robust startup of Scala tools, notably the compiler;
wenzelm
parents:
34790
diff
changeset
|
122 |
[ -n "$SCALA_HOME" ] && JAVA_ARGS["${#JAVA_ARGS[@]}"]="-Dscala.home=$SCALA_HOME" |
eb8806a2e348
define scala.home, for more robust startup of Scala tools, notably the compiler;
wenzelm
parents:
34790
diff
changeset
|
123 |
|
34780 | 124 |
declare -a ARGS; eval "ARGS=($JEDIT_OPTIONS)" |
34333 | 125 |
|
34780 | 126 |
declare -a OPTIONS; eval "OPTIONS=($ISABELLE_JEDIT_OPTIONS)" |
127 |
getoptions "${OPTIONS[@]}" |
|
128 |
||
129 |
getoptions "$@" |
|
34333 | 130 |
shift $(($OPTIND - 1)) |
131 |
||
132 |
||
133 |
# args |
|
134 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
135 |
while [ "$#" -gt 0 ] |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
136 |
do |
40574
226563829580
refrain from opening Scratch.thy by default, to avoid bombing the editor with old/long theory text;
wenzelm
parents:
40565
diff
changeset
|
137 |
ARGS["${#ARGS[@]}"]="$(jvmpath "$1")" |
226563829580
refrain from opening Scratch.thy by default, to avoid bombing the editor with old/long theory text;
wenzelm
parents:
40565
diff
changeset
|
138 |
shift |
226563829580
refrain from opening Scratch.thy by default, to avoid bombing the editor with old/long theory text;
wenzelm
parents:
40565
diff
changeset
|
139 |
done |
34333 | 140 |
|
141 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
142 |
## dependencies |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
143 |
|
43285 | 144 |
pushd "$JEDIT_HOME" >/dev/null || failed |
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
145 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
146 |
JEDIT_JAR="$ISABELLE_JEDIT_BUILD_HOME/contrib/$ISABELLE_JEDIT_BUILD_VERSION/jedit.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
147 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
148 |
JEDIT_JARS=( |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
149 |
"$ISABELLE_JEDIT_BUILD_HOME/contrib/Console.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
150 |
"$ISABELLE_JEDIT_BUILD_HOME/contrib/ErrorList.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
151 |
"$ISABELLE_JEDIT_BUILD_HOME/contrib/Hyperlinks.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
152 |
"$ISABELLE_JEDIT_BUILD_HOME/contrib/SideKick.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
153 |
"$ISABELLE_JEDIT_BUILD_HOME/contrib/cobra.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
154 |
"$ISABELLE_JEDIT_BUILD_HOME/contrib/js.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
155 |
) |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
156 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
157 |
SCALA_JARS=( |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
158 |
"$SCALA_HOME/lib/scala-compiler.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
159 |
"$SCALA_HOME/lib/scala-library.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
160 |
"$SCALA_HOME/lib/scala-swing.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
161 |
) |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
162 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
163 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
164 |
# target |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
165 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
166 |
TARGET="dist/jars/Isabelle-jEdit.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
167 |
|
43285 | 168 |
if [ "$BUILD_JARS" = jars_fresh ]; then |
169 |
OUTDATED=true |
|
170 |
else |
|
171 |
OUTDATED=false |
|
43368
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
172 |
if [ ! -e "$TARGET" ]; then |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
173 |
OUTDATED=true |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
174 |
elif [ -n "$ISABELLE_JEDIT_BUILD_HOME" ]; then |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
175 |
for SOURCE in "${SOURCES[@]}" "${RESOURCES[@]}" "$JEDIT_JAR" "${JEDIT_JARS[@]}" |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
176 |
do |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
177 |
[ ! -e "$SOURCE" ] && fail "Missing file: $SOURCE" |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
178 |
[ "$SOURCE" -nt "$TARGET" ] && OUTDATED=true |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
179 |
done |
0dc67b3cf8a5
check source dependencies only if jedit_build component is available;
wenzelm
parents:
43320
diff
changeset
|
180 |
fi |
43285 | 181 |
fi |
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
182 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
183 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
184 |
# build |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
185 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
186 |
if [ "$OUTDATED" = true ] |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
187 |
then |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
188 |
[ -z "$SCALA_HOME" ] && fail "Unknown SCALA_HOME -- Scala unavailable" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
189 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
190 |
[ -z "$ISABELLE_JEDIT_BUILD_HOME" ] && \ |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
191 |
fail "Unknown ISABELLE_JEDIT_BUILD_HOME -- missing auxiliary component" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
192 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
193 |
[ -e "$ISABELLE_HOME/Admin/build" ] && \ |
43285 | 194 |
{ "$ISABELLE_HOME/Admin/build" "$BUILD_JARS" || exit $?; } |
195 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
196 |
|
43285 | 197 |
echo "###" |
198 |
echo "### Building Isabelle/jEdit ..." |
|
199 |
echo "###" |
|
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
200 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
201 |
rm -rf dist || failed |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
202 |
mkdir -p dist dist/classes || failed |
43287 | 203 |
|
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
204 |
cp -a "$ISABELLE_JEDIT_BUILD_HOME/contrib/$ISABELLE_JEDIT_BUILD_VERSION/." dist/. |
43320 | 205 |
cp -a "${RESOURCES[@]}" dist/classes/. |
43287 | 206 |
cp src/jEdit.props dist/properties/. |
207 |
cp -a src/modes/. dist/modes/. |
|
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
208 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
209 |
perl -i -e 'while (<>) { if (m/NAME="javacc"/) { |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
210 |
print qq,<MODE NAME="isabelle" FILE="isabelle.xml" FILE_NAME_GLOB="*.thy"/>\n\n,; |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
211 |
print qq,<MODE NAME="isabelle-session" FILE="isabelle-session.xml" FILE_NAME_GLOB="session.root"/>\n\n,; } |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
212 |
print; }' dist/modes/catalog |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
213 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
214 |
cp -a "${JEDIT_JARS[@]}" "${SCALA_JARS[@]}" "$ISABELLE_HOME/lib/classes/Pure.jar" \ |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
215 |
dist/jars/. || failed |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
216 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
217 |
( |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
218 |
for JAR in "$JEDIT_JAR" "${JEDIT_JARS[@]}" "$SCALA_HOME/lib/scala-compiler.jar" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
219 |
do |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
220 |
CLASSPATH="$CLASSPATH:$JAR" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
221 |
done |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
222 |
CLASSPATH="$(jvmpath "$CLASSPATH")" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
223 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
224 |
exec "$SCALA_HOME/bin/scalac" -unchecked -deprecation \ |
43320 | 225 |
-d dist/classes -target:jvm-1.5 "${SOURCES[@]}" |
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
226 |
) || fail "Failed to compile sources" |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
227 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
228 |
cd dist/classes |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
229 |
jar cf "../jars/Isabelle-jEdit.jar" * || failed |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
230 |
cd ../.. |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
231 |
rm -rf dist/classes |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
232 |
fi |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
233 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
234 |
popd >/dev/null |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
235 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
236 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
237 |
## main |
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
238 |
|
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
239 |
# perspective |
34880 | 240 |
|
241 |
mkdir -p "$JEDIT_SETTINGS/DockableWindowManager" |
|
242 |
||
243 |
if [ ! -e "$JEDIT_SETTINGS/perspective.xml" ]; then |
|
244 |
cat > "$JEDIT_SETTINGS/DockableWindowManager/perspective-view0.xml" <<EOF |
|
40155
0b57e3d9bc62
dock isabelle-session at bottom (again, cf. 37bdc2220cf8) to ensure that controls are fully visible;
wenzelm
parents:
39815
diff
changeset
|
245 |
<DOCKING LEFT="" TOP="" RIGHT="" BOTTOM="isabelle-session" LEFT_POS="0" TOP_POS="0" RIGHT_POS="250" BOTTOM_POS="250" /> |
34880 | 246 |
EOF |
247 |
cat > "$JEDIT_SETTINGS/perspective.xml" <<EOF |
|
248 |
<?xml version="1.0" encoding="UTF-8" ?> |
|
249 |
<!DOCTYPE PERSPECTIVE SYSTEM "perspective.dtd"> |
|
250 |
<PERSPECTIVE> |
|
251 |
<VIEW PLAIN="FALSE"> |
|
252 |
<GEOMETRY X="0" Y="35" WIDTH="1072" HEIGHT="787" EXT_STATE="0" /> |
|
253 |
</VIEW> |
|
254 |
</PERSPECTIVE> |
|
255 |
EOF |
|
256 |
fi |
|
257 |
||
258 |
||
43284
04d473e883df
build jedit as part of regular startup script (in that case depending on jedit_build component);
wenzelm
parents:
41380
diff
changeset
|
259 |
# run |
34333 | 260 |
|
43285 | 261 |
[ "$BUILD_ONLY" = true ] || { |
262 |
case "$JEDIT_LOGIC" in |
|
263 |
/*) |
|
264 |
;; |
|
265 |
*/*) |
|
266 |
JEDIT_LOGIC="$(pwd -P)/$JEDIT_LOGIC" |
|
267 |
;; |
|
268 |
esac |
|
34333 | 269 |
|
43285 | 270 |
export JEDIT_LOGIC JEDIT_PRINT_MODE |
34333 | 271 |
|
43285 | 272 |
exec "$ISABELLE_TOOL" java "${JAVA_ARGS[@]}" \ |
273 |
-jar "$(jvmpath "$JEDIT_HOME/dist/jedit.jar")" \ |
|
274 |
"-settings=$(jvmpath "$JEDIT_SETTINGS")" "${ARGS[@]}" |
|
275 |
} |