136137138139140141142143144145146
boolean started = false; try { QuercusPage page = _quercus.parse(_script); env = createEnv(page, "_quercus_bam_start_service", jid); page.executeTop(env); started = env.getGlobalValue("_quercus_bam_function_return").toBoolean(); } finally { if (env != null)
156157158159160161162163164165166
boolean stoped = false; try { QuercusPage page = _quercus.parse(_script); env = createEnv(page, "_quercus_bam_stop_service", jid); page.executeTop(env); stoped = env.getGlobalValue("_quercus_bam_function_return").toBoolean(); } finally { if (env != null)
170171172173174175176177178179180
if (prependPath == null) env.error(L.l("auto_prepend_file '{0}' not found.", prepend)); else { QuercusPage prependPage = getQuercus().parse(prependPath); prependPage.executeTop(env); } } env.executeTop();
185186187188189190191192193194195
if (appendPath == null) env.error(L.l("auto_append_file '{0}' not found.", append)); else { QuercusPage appendPage = getQuercus().parse(appendPath); appendPage.executeTop(env); } } // return; } catch (QuercusExitException e) {
38533854385538563857385838593860386138623863
if (prependPath == null) error(L.l("auto_prepend_file '{0}' not found.", prepend)); else { QuercusPage prependPage = _quercus.parse(prependPath); prependPage.executeTop(this); } } executeTop();
38693870387138723873387438753876387738783879
if (appendPath == null) error(L.l("auto_append_file '{0}' not found.", append)); else { QuercusPage appendPage = getQuercus().parse(appendPath); appendPage.executeTop(this); } } } /**
179180181182183184185186187188189
194195196197198199200201202203204
188189190191192193194195196197198
203204205206207208209210211212213