From e5550b640d1ee69fa2c6181d36217995e5a58ecd Mon Sep 17 00:00:00 2001 From: Maxim Sobolev Date: Tue, 29 May 2001 12:54:13 +0000 Subject: Update that introduces extra flexibility for the installation process and other improvements in the Makefile. It also introduces quite a few improvements in the `orionctl' script. PR: 27643 Submitted by: maintainer --- www/orion/Makefile | 34 +- www/orion/distinfo | 1 - www/orion/files/orionctl | 80 +++-- www/orion/pkg-plist | 787 ++++++++++++++++++++++++----------------------- 4 files changed, 471 insertions(+), 431 deletions(-) (limited to 'www/orion') diff --git a/www/orion/Makefile b/www/orion/Makefile index 49865b1b38e0..e770fd4e3465 100644 --- a/www/orion/Makefile +++ b/www/orion/Makefile @@ -7,7 +7,7 @@ PORTNAME= orion PORTVERSION= 1.4.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= java www MASTER_SITES= ftp://ftp.sunet.se/pub/database/utils/orionserver/ \ ${MASTER_SITE_LOCAL} \ @@ -18,34 +18,40 @@ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= ernst@jollem.com -RUN_DEPENDS= ${LOCALBASE}/linux-jdk1.3.0/bin/java:${PORTSDIR}/java/linux-jdk13 +RUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/linux-jdk13 USE_ZIP= YES NO_BUILD= YES WRKSRC= ${WRKDIR}/${PORTNAME} -ORION_DESTDIR= ${PREFIX}/${DISTNAME} +PLIST_SUB+= TARGET_PREFIX=${TARGET_PREFIX:S/^${PREFIX}\///} +ORION_HOME= ${PREFIX}/${DISTNAME} PORTTITLE= Orion Server ORIONCTL_NAME= orionctl ORIONCTL_DEST= ${PREFIX}/bin/${ORIONCTL_NAME} RC_SCRIPT= ${PREFIX}/etc/rc.d/${PORTNAME}.sh +JAVA_HOME?= ${LOCALBASE}/linux-jdk1.3.0 +TARGET_PREFIX?= ${PREFIX}/${PKGBASE}${PORTVERSION} .include do-install: - @if [ -d ${ORION_DESTDIR} ]; then \ - ${ECHO} "ERROR: The destination directory ${ORION_DESTDIR} already exists. Cancelling."; \ - exit 65; \ - fi - @${MKDIR} ${ORION_DESTDIR} - @${CP} -R ${WRKSRC}/* ${ORION_DESTDIR} - @${CHMOD} 755 `find ${ORION_DESTDIR} -type d` - @${CP} ${FILESDIR}/${ORIONCTL_NAME} ${ORIONCTL_DEST} + @${MKDIR} ${ORION_HOME} + @${CP} -R ${WRKSRC}/* ${ORION_HOME} + @${CHMOD} 755 `find ${ORION_HOME} -type d` + @${CAT} ${FILESDIR}/${ORIONCTL_NAME} \ + | ${SED} "/%%PORTNAME%%/s//${PORTNAME}/" \ + | ${SED} "/%%PORTVERSION%%/s//${PORTVERSION}/" \ + | ${SED} "/%%ORION_HOME%%/s//${ORION_HOME:S/\//\\\//g}/" \ + | ${SED} "/%%RC_SCRIPT_NAME%%/s//${PORTNAME}.sh/" \ + | ${SED} "/%%JAVA_HOME%%/s//${JAVA_HOME:S/\//\\\//g}/" \ + > ${ORIONCTL_DEST} @${CHMOD} 755 ${ORIONCTL_DEST} - @${LN} -s ${ORIONCTL_DEST} ${RC_SCRIPT} - @${MKDIR} ${ORION_DESTDIR}/application-deployments + @${LN} -sf ${ORIONCTL_DEST} ${RC_SCRIPT} + @${MKDIR} ${ORION_HOME}/application-deployments + @${LN} -sf ${JAVA_HOME}/jre/tools.jar ${ORION_HOME}/tools.jar post-install: - @echo "${PORTTITLE} ${PORTVERSION} has been installed in ${ORION_DESTDIR}." + @echo "${PORTTITLE} ${PORTVERSION} has been installed in ${ORION_HOME}." .include diff --git a/www/orion/distinfo b/www/orion/distinfo index 0043efc11b70..cda402d8eb54 100644 --- a/www/orion/distinfo +++ b/www/orion/distinfo @@ -1,2 +1 @@ MD5 (orion1.4.5.zip) = efdcae8bdcdf6a8bc94ab4982a8192a2 -MD5 (orion.sh.zip) = e362e17c6bfd5c300ca3896a06a94bca diff --git a/www/orion/files/orionctl b/www/orion/files/orionctl index 040da2d1bf47..cd4b252d1491 100644 --- a/www/orion/files/orionctl +++ b/www/orion/files/orionctl @@ -1,68 +1,102 @@ #!/bin/sh -if [ "${LOCALBASE}a" = "a" ]; then - LOCALBASE=/usr/local -fi +# Set some more variables +NAME=%%PORTNAME%% +VERSION=%%PORTVERSION%% +ORION_HOME=%%ORION_HOME%% +LOG=${ORION_HOME}/log/${NAME}.log +PID_FILE=/var/run/${NAME}.pid +JAR_FILE=${ORION_HOME}/${NAME}.jar +MYSELF=`basename $0` -NAME=orion -ORION_HOME=${LOCALBASE}/orion1.4.5 -LOG=${ORION_HOME}/log/orion.log -PID_FILE=/var/run/orion.pid -JAR_FILE=${ORION_HOME}/orion.jar +# Check if we're being run as a shell script or as an rc script +if [ ${MYSELF} = "%%RC_SCRIPT_NAME%%" ]; then + AS_RC_SCRIPT=yes +else + AS_RC_SCRIPT=no +fi +# Check if the JAVA_HOME directory is defined, otherwise set it to the +# fallback default if [ "${JAVA_HOME}a" = "a" ]; then - JAVA_HOME=${LOCALBASE}/linux-jdk1.3.0 + JAVA_HOME=%%JAVA_HOME%% fi JAVA_CMD=${JAVA_HOME}/bin/java -# TODO: Check if we are being run at boot time right now - - case "$1" in start) + # Make sure Orion is not started previously + if [ -e ${PID_FILE} ]; then + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + echo "" + fi + echo "${NAME}: ERROR: Orion has already been started." + echo "${NAME}: ERROR: Found Orion PID file at ${PID_FILE}. Orion is probably already running." + exit 64 + fi + # Make sure the Orion directory does exist if [ ! -d ${ORION_HOME} ]; then - echo "" + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + echo "" + fi echo "${NAME}: ERROR: Unable to find Orion home directory at ${ORION_HOME}." exit 64 fi # Make sure the Orion JAR file exists if [ ! -r ${JAR_FILE} ]; then - echo "" + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + echo "" + fi echo "${NAME}: ERROR: Unable to find Orion JAR file at ${JAR_FILE}." exit 64 fi # Make sure the Java VM can be found if [ ! -x ${JAVA_CMD} ]; then - echo "" + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + echo "" + fi echo "${NAME}: ERROR: Unable to find Java VM at ${JAVA_HOME}." exit 64 fi # Create the process ID file - rm -rf ${PID_FILE} + rm -f ${PID_FILE} touch ${PID_FILE} chown root:wheel ${PID_FILE} chmod 600 ${PID_FILE} - echo -n ' orion' + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + echo -n " ${NAME}" + fi ( cd ${ORION_HOME} && ${JAVA_CMD} -jar orion.jar & echo $! > ${PID_FILE} ) > ${LOG} 2>&1 ;; stop) if [ ! -e ${PID_FILE} ]; then - echo "" - echo "${NAME}: ERROR: Unable to find Orion PID file at ${PID_FILE}." - exit 64 + + # If run as an rc script, die silently... + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + exit 0 + + # ...otherwise complain + else + echo "${NAME}: ERROR: Unable to find Orion PID file at ${PID_FILE}. Orion is probably not running." + exit 64 + fi + else + if [ "${AS_RC_SCRIPT}" = "yes" ]; then + echo -n " ${NAME}" + fi + /bin/kill `cat ${PID_FILE}` + rm ${PID_FILE} fi - /bin/kill `cat ${PID_FILE}` - echo -n ' orion' ;; *) echo "" - echo "Usage: `basename $0` { start | stop }" + echo "Usage: ${MYSELF} { start | stop }" echo "" exit 64 ;; diff --git a/www/orion/pkg-plist b/www/orion/pkg-plist index c173e6c1b49f..554d461cdc90 100644 --- a/www/orion/pkg-plist +++ b/www/orion/pkg-plist @@ -1,395 +1,396 @@ etc/rc.d/orion.sh bin/orionctl -orion1.4.5/config/database-schemas/hypersonic.xml -orion1.4.5/config/database-schemas/ms-access.xml -orion1.4.5/config/database-schemas/ms-sql.xml -orion1.4.5/config/database-schemas/oracle.xml -orion1.4.5/config/database-schemas/postgresql.xml -orion1.4.5/config/database-schemas/sybase.xml -orion1.4.5/config/data-sources.xml -orion1.4.5/config/default-web-site.xml -orion1.4.5/config/global-web-application.xml -orion1.4.5/config/jms.xml -orion1.4.5/config/mime.types -orion1.4.5/config/principals.xml -orion1.4.5/config/rmi.xml -orion1.4.5/config/application.xml -orion1.4.5/config/server.xml -orion1.4.5/default-web-app/examples/cal/TableBean.txt -orion1.4.5/default-web-app/examples/cal/cal1.txt -orion1.4.5/default-web-app/examples/cal/cal2.jsp -orion1.4.5/default-web-app/examples/cal/cal2.txt -orion1.4.5/default-web-app/examples/cal/calendar.html -orion1.4.5/default-web-app/examples/cal/Entries.txt -orion1.4.5/default-web-app/examples/cal/Entry.txt -orion1.4.5/default-web-app/examples/cal/JspCalendar.txt -orion1.4.5/default-web-app/examples/cal/login.html -orion1.4.5/default-web-app/examples/cal/cal1.jsp -orion1.4.5/default-web-app/examples/images/code.gif -orion1.4.5/default-web-app/examples/images/execute.gif -orion1.4.5/default-web-app/examples/images/return.gif -orion1.4.5/default-web-app/examples/jsp/include/foo.html -orion1.4.5/default-web-app/examples/jsp/include/foo.jsp -orion1.4.5/default-web-app/examples/jsp/include/inc.html -orion1.4.5/default-web-app/examples/jsp/include/include.jsp -orion1.4.5/default-web-app/examples/jsp/include/include.txt -orion1.4.5/default-web-app/examples/jsp/checkbox/check.html -orion1.4.5/default-web-app/examples/jsp/checkbox/checkresult.jsp -orion1.4.5/default-web-app/examples/jsp/checkbox/checkresult.txt -orion1.4.5/default-web-app/examples/jsp/checkbox/CheckTest.html -orion1.4.5/default-web-app/examples/jsp/checkbox/cresult.html -orion1.4.5/default-web-app/examples/jsp/colors/clr.html -orion1.4.5/default-web-app/examples/jsp/colors/ColorGameBean.html -orion1.4.5/default-web-app/examples/jsp/colors/colors.html -orion1.4.5/default-web-app/examples/jsp/colors/colors.txt -orion1.4.5/default-web-app/examples/jsp/colors/colrs.jsp -orion1.4.5/default-web-app/examples/jsp/dates/date.html -orion1.4.5/default-web-app/examples/jsp/dates/date.jsp -orion1.4.5/default-web-app/examples/jsp/dates/date.txt -orion1.4.5/default-web-app/examples/jsp/error/er.html -orion1.4.5/default-web-app/examples/jsp/error/err.jsp -orion1.4.5/default-web-app/examples/jsp/error/err.txt -orion1.4.5/default-web-app/examples/jsp/error/error.html -orion1.4.5/default-web-app/examples/jsp/error/errorpge.jsp -orion1.4.5/default-web-app/examples/jsp/forward/forward.jsp -orion1.4.5/default-web-app/examples/jsp/forward/forward.txt -orion1.4.5/default-web-app/examples/jsp/forward/fwd.html -orion1.4.5/default-web-app/examples/jsp/forward/one.jsp -orion1.4.5/default-web-app/examples/jsp/forward/two.html -orion1.4.5/default-web-app/examples/jsp/snp/snoop.html -orion1.4.5/default-web-app/examples/jsp/snp/snoop.jsp -orion1.4.5/default-web-app/examples/jsp/snp/snoop.txt -orion1.4.5/default-web-app/examples/jsp/cal/TableBean.txt -orion1.4.5/default-web-app/examples/jsp/cal/cal1.txt -orion1.4.5/default-web-app/examples/jsp/cal/cal2.jsp -orion1.4.5/default-web-app/examples/jsp/cal/cal2.txt -orion1.4.5/default-web-app/examples/jsp/cal/calendar.html -orion1.4.5/default-web-app/examples/jsp/cal/Entries.txt -orion1.4.5/default-web-app/examples/jsp/cal/Entry.txt -orion1.4.5/default-web-app/examples/jsp/cal/JspCalendar.txt -orion1.4.5/default-web-app/examples/jsp/cal/login.html -orion1.4.5/default-web-app/examples/jsp/cal/cal1.jsp -orion1.4.5/default-web-app/examples/jsp/jsptoserv/hello.jsp -orion1.4.5/default-web-app/examples/jsp/jsptoserv/jsptoservlet.jsp -orion1.4.5/default-web-app/examples/jsp/jsptoserv/jts.html -orion1.4.5/default-web-app/examples/jsp/jsptoserv/jts.txt -orion1.4.5/default-web-app/examples/jsp/jsptoserv/stj.txt -orion1.4.5/default-web-app/examples/jsp/num/numguess.html -orion1.4.5/default-web-app/examples/jsp/num/numguess.jsp -orion1.4.5/default-web-app/examples/jsp/num/numguess.txt -orion1.4.5/default-web-app/examples/jsp/plugin/applet/Clock2.class -orion1.4.5/default-web-app/examples/jsp/plugin/applet/Clock2.java -orion1.4.5/default-web-app/examples/jsp/plugin/plugin.html -orion1.4.5/default-web-app/examples/jsp/plugin/plugin.jsp -orion1.4.5/default-web-app/examples/jsp/plugin/plugin.txt -orion1.4.5/default-web-app/examples/jsp/sessions/carts.html -orion1.4.5/default-web-app/examples/jsp/sessions/carts.jsp -orion1.4.5/default-web-app/examples/jsp/sessions/carts.txt -orion1.4.5/default-web-app/examples/jsp/sessions/crt.html -orion1.4.5/default-web-app/examples/jsp/sessions/DummyCart.html -orion1.4.5/default-web-app/examples/jsp/taglib/loop/META-INF/taglib.tld -orion1.4.5/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class -orion1.4.5/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java -orion1.4.5/default-web-app/examples/jsp/taglib/loop/index.html -orion1.4.5/default-web-app/examples/jsp/taglib/loop/looptag.jsp -orion1.4.5/default-web-app/examples/jsp/taglib/loop/looptag.jsp.txt -orion1.4.5/default-web-app/examples/jsp/taglib/loop/looptags.jar -orion1.4.5/default-web-app/examples/jsp/index.html -orion1.4.5/default-web-app/examples/perl/helloworld.pl -orion1.4.5/default-web-app/examples/perl/post.html -orion1.4.5/default-web-app/examples/perl/post.pl -orion1.4.5/default-web-app/examples/ssi/other.txt -orion1.4.5/default-web-app/examples/ssi/real.txt -orion1.4.5/default-web-app/examples/ssi/ssi.shtml -orion1.4.5/default-web-app/examples/xsl/data.xml -orion1.4.5/default-web-app/examples/xsl/data.xsl -orion1.4.5/default-web-app/examples/xsl/doc.dtd -orion1.4.5/default-web-app/examples/xsl/doc.jsp -orion1.4.5/default-web-app/examples/xsl/doc.xml -orion1.4.5/default-web-app/examples/xsl/doc.xsl -orion1.4.5/default-web-app/WEB-INF/classes/colors/ColorGameBean.class -orion1.4.5/default-web-app/WEB-INF/classes/colors/ColorGameBean.java -orion1.4.5/default-web-app/WEB-INF/classes/num/NumberGuessBean.class -orion1.4.5/default-web-app/WEB-INF/classes/num/NumberGuessBean.java -orion1.4.5/default-web-app/WEB-INF/classes/error/Smart.class -orion1.4.5/default-web-app/WEB-INF/classes/error/Smart.java -orion1.4.5/default-web-app/WEB-INF/classes/sessions/DummyCart.class -orion1.4.5/default-web-app/WEB-INF/classes/sessions/DummyCart.java -orion1.4.5/default-web-app/WEB-INF/classes/dates/JspCalendar.class -orion1.4.5/default-web-app/WEB-INF/classes/dates/JspCalendar.java -orion1.4.5/default-web-app/WEB-INF/classes/cal/TableBean.java -orion1.4.5/default-web-app/WEB-INF/classes/cal/Entries.java -orion1.4.5/default-web-app/WEB-INF/classes/cal/Entry.class -orion1.4.5/default-web-app/WEB-INF/classes/cal/Entry.java -orion1.4.5/default-web-app/WEB-INF/classes/cal/JspCalendar.class -orion1.4.5/default-web-app/WEB-INF/classes/cal/JspCalendar.java -orion1.4.5/default-web-app/WEB-INF/classes/cal/TableBean.class -orion1.4.5/default-web-app/WEB-INF/classes/cal/Entries.class -orion1.4.5/default-web-app/WEB-INF/classes/checkbox/CheckTest.class -orion1.4.5/default-web-app/WEB-INF/classes/checkbox/CheckTest.java -orion1.4.5/default-web-app/WEB-INF/classes/Counter.java -orion1.4.5/default-web-app/WEB-INF/classes/DateServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/DateServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/FingerServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/FingerServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/HelloWorldExample.class -orion1.4.5/default-web-app/WEB-INF/classes/HelloWorldExample.java -orion1.4.5/default-web-app/WEB-INF/classes/HelloWorldServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/HelloWorldServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/LinkCheckerServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/LinkCheckerServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/LocalStrings.properties -orion1.4.5/default-web-app/WEB-INF/classes/ParameterBean.class -orion1.4.5/default-web-app/WEB-INF/classes/ParameterBean.java -orion1.4.5/default-web-app/WEB-INF/classes/RedirectServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/RedirectServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/RequestHeaderExample.class -orion1.4.5/default-web-app/WEB-INF/classes/RequestHeaderExample.java -orion1.4.5/default-web-app/WEB-INF/classes/RequestInfoExample.class -orion1.4.5/default-web-app/WEB-INF/classes/RequestInfoExample.java -orion1.4.5/default-web-app/WEB-INF/classes/RequestParamExample.class -orion1.4.5/default-web-app/WEB-INF/classes/RequestParamExample.java -orion1.4.5/default-web-app/WEB-INF/classes/SessionExample.class -orion1.4.5/default-web-app/WEB-INF/classes/SessionExample.java -orion1.4.5/default-web-app/WEB-INF/classes/SessionServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/SessionServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/SimpleServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/SimpleServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/SnoopServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/SnoopServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/SurveyServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/SurveyServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/ToJSPServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/ToJSPServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/UpperCaseFilter.class -orion1.4.5/default-web-app/WEB-INF/classes/UpperCaseFilter.java -orion1.4.5/default-web-app/WEB-INF/classes/BBoardServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/URLInfo.class -orion1.4.5/default-web-app/WEB-INF/classes/BBoardServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/ConfigServlet.class -orion1.4.5/default-web-app/WEB-INF/classes/ConfigServlet.java -orion1.4.5/default-web-app/WEB-INF/classes/CookieExample.class -orion1.4.5/default-web-app/WEB-INF/classes/CookieExample.java -orion1.4.5/default-web-app/WEB-INF/classes/Counter.class -orion1.4.5/default-web-app/WEB-INF/web.xml -orion1.4.5/default-web-app/index.html -orion1.4.5/applications/news.ear -orion1.4.5/applications/atm.ear -orion1.4.5/applications/estore-bugs.txt -orion1.4.5/applications/estore-install.txt -orion1.4.5/applications/estore-orionadapter.jar -orion1.4.5/applications/estore-patched.ear -orion1.4.5/applications/news-install.txt -orion1.4.5/applications/atm-install.txt -orion1.4.5/demo/ejb/cart/META-INF/application-client.xml -orion1.4.5/demo/ejb/cart/META-INF/ejb-jar.xml -orion1.4.5/demo/ejb/cart/META-INF/MANIFEST.MF -orion1.4.5/demo/ejb/cart/Cart.java -orion1.4.5/demo/ejb/cart/CartClient.class -orion1.4.5/demo/ejb/cart/CartClient.java -orion1.4.5/demo/ejb/cart/CartEJB.class -orion1.4.5/demo/ejb/cart/CartEJB.java -orion1.4.5/demo/ejb/cart/CartHome.class -orion1.4.5/demo/ejb/cart/CartHome.java -orion1.4.5/demo/ejb/cart/jndi.properties -orion1.4.5/demo/ejb/cart/NotInCartException.class -orion1.4.5/demo/ejb/cart/NotInCartException.java -orion1.4.5/demo/ejb/cart/Cart.class -orion1.4.5/demo/ejb/cart/orion-cart.jar -orion1.4.5/demo/ejb/META-INF/application.xml -orion1.4.5/demo/ejb/product/META-INF/application-client.xml -orion1.4.5/demo/ejb/product/META-INF/ejb-jar.xml -orion1.4.5/demo/ejb/product/META-INF/MANIFEST.MF -orion1.4.5/demo/ejb/product/orion-product.jar -orion1.4.5/demo/ejb/product/Product.class -orion1.4.5/demo/ejb/product/Product.java -orion1.4.5/demo/ejb/product/product.skeleton -orion1.4.5/demo/ejb/product/ProductClient.class -orion1.4.5/demo/ejb/product/ProductClient.java -orion1.4.5/demo/ejb/product/ProductEJB.class -orion1.4.5/demo/ejb/product/ProductEJB.java -orion1.4.5/demo/ejb/product/ProductHome.class -orion1.4.5/demo/ejb/product/ProductHome.java -orion1.4.5/demo/ejb/product/ProductServlet.class -orion1.4.5/demo/ejb/product/jndi.properties -orion1.4.5/demo/ejb/product/ProductServlet.java -orion1.4.5/demo/ejb/usermanager/META-INF/ejb-jar.xml -orion1.4.5/demo/ejb/install.txt -orion1.4.5/demo/jms/coffeemaker/META-INF/application-client.xml -orion1.4.5/demo/jms/coffeemaker/META-INF/MANIFEST.MF -orion1.4.5/demo/jms/coffeemaker/META-INF/orion-application-client.xml -orion1.4.5/demo/jms/coffeemaker/CoffeeMachine.class -orion1.4.5/demo/jms/coffeemaker/CoffeeMachine.java -orion1.4.5/demo/jms/coffeemaker/CoffeeMaker.class -orion1.4.5/demo/jms/coffeemaker/CoffeeMaker.java -orion1.4.5/demo/jms/coffeemaker/jndi.properties -orion1.4.5/demo/jms/jmschat/META-INF/application-client.xml -orion1.4.5/demo/jms/jmschat/META-INF/MANIFEST.MF -orion1.4.5/demo/jms/jmschat/META-INF/orion-application-client.xml -orion1.4.5/demo/jms/jmschat/JMSChat$1.class -orion1.4.5/demo/jms/jmschat/JMSChat.class -orion1.4.5/demo/jms/jmschat/JMSChat.java -orion1.4.5/demo/jms/jmschat/jndi.properties -orion1.4.5/demo/jms/coffeemaker.jar -orion1.4.5/demo/jms/jmschat.jar -orion1.4.5/demo/jms/jmsdemo-readme.txt -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemClient.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.java -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.class -orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class -orion1.4.5/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml -orion1.4.5/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class -orion1.4.5/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java -orion1.4.5/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class -orion1.4.5/demo/news-app/news-client-source/META-INF/application-client.xml -orion1.4.5/demo/news-app/news-client-source/META-INF/MANIFEST.MF -orion1.4.5/demo/news-app/news-web/admin/editnews.jsp -orion1.4.5/demo/news-app/news-web/admin/editnews_done.jsp -orion1.4.5/demo/news-app/news-web/WEB-INF/lib/ejbtags.jar -orion1.4.5/demo/news-app/news-web/WEB-INF/lib/utiltags.jar -orion1.4.5/demo/news-app/news-web/WEB-INF/web.xml -orion1.4.5/demo/news-app/news-web/border.html -orion1.4.5/demo/news-app/news-web/checks.jsp -orion1.4.5/demo/news-app/news-web/index.html -orion1.4.5/demo/news-app/news-web/initviews.jsp -orion1.4.5/demo/news-app/news-web/login-error.html -orion1.4.5/demo/news-app/news-web/addnews.jsp -orion1.4.5/demo/news-app/news-web/loginbox.jsp -orion1.4.5/demo/news-app/news-web/logout.jsp -orion1.4.5/demo/news-app/news-web/news-body.jsp -orion1.4.5/demo/news-app/news-web/news.jsp -orion1.4.5/demo/news-app/news-web/newsdetail.jsp -orion1.4.5/demo/news-app/news-web/newssearch.jsp -orion1.4.5/demo/news-app/news-web/usertest.jsp -orion1.4.5/demo/news-app/news-web/login.html -orion1.4.5/demo/news-app/news-web/addnews_done.jsp -orion1.4.5/demo/news-app/META-INF/application.xml -orion1.4.5/demo/news-app/news-web.war -orion1.4.5/demo/news-app/news-client.jar -orion1.4.5/demo/news-app/news-ejb.jar -orion1.4.5/demo/news-app/counter.jar -orion1.4.5/demo/rmi/RMIApp.class -orion1.4.5/demo/rmi/RMIApp.java -orion1.4.5/demo/ssl/ssl-user-registration.jsp -orion1.4.5/demo/messagelogger.ear -orion1.4.5/lib/hsql.jar -orion1.4.5/loadbalancer.jar -orion1.4.5/jta.jar -orion1.4.5/jsse.jar -orion1.4.5/jnet.jar -orion1.4.5/jndi.jar -orion1.4.5/jdbc.jar -orion1.4.5/jcert.jar -orion1.4.5/jaxp.jar -orion1.4.5/ejbmaker.jar -orion1.4.5/ejbassembler.jar -orion1.4.5/ejb.jar -orion1.4.5/earassembler.jar -orion1.4.5/clientassembler.jar -orion1.4.5/changes.txt -orion1.4.5/autoupdate.properties -orion1.4.5/autoupdate.jar -orion1.4.5/assemblerlauncher.jar -orion1.4.5/applicationlauncher.jar -orion1.4.5/admin.jar -orion1.4.5/activation.jar -orion1.4.5/Readme.txt -orion1.4.5/xerces.jar -orion1.4.5/Copyright.txt -orion1.4.5/xalan.jar -orion1.4.5/webappassembler.jar -orion1.4.5/taglibassembler.jar -orion1.4.5/parser.jar -orion1.4.5/orionconsole.jar -orion1.4.5/orion.jar -orion1.4.5/mail.jar -@dirrm orion1.4.5/application-deployments -@dirrm orion1.4.5/config/database-schemas -@dirrm orion1.4.5/config -@dirrm orion1.4.5/default-web-app/examples/cal -@dirrm orion1.4.5/default-web-app/examples/images -@dirrm orion1.4.5/default-web-app/examples/jsp/include -@dirrm orion1.4.5/default-web-app/examples/jsp/checkbox -@dirrm orion1.4.5/default-web-app/examples/jsp/colors -@dirrm orion1.4.5/default-web-app/examples/jsp/dates -@dirrm orion1.4.5/default-web-app/examples/jsp/error -@dirrm orion1.4.5/default-web-app/examples/jsp/forward -@dirrm orion1.4.5/default-web-app/examples/jsp/snp -@dirrm orion1.4.5/default-web-app/examples/jsp/cal -@dirrm orion1.4.5/default-web-app/examples/jsp/jsptoserv -@dirrm orion1.4.5/default-web-app/examples/jsp/num -@dirrm orion1.4.5/default-web-app/examples/jsp/plugin/applet -@dirrm orion1.4.5/default-web-app/examples/jsp/plugin -@dirrm orion1.4.5/default-web-app/examples/jsp/sessions -@dirrm orion1.4.5/default-web-app/examples/jsp/taglib/loop/META-INF -@dirrm orion1.4.5/default-web-app/examples/jsp/taglib/loop/taglib -@dirrm orion1.4.5/default-web-app/examples/jsp/taglib/loop -@dirrm orion1.4.5/default-web-app/examples/jsp/taglib -@dirrm orion1.4.5/default-web-app/examples/jsp -@dirrm orion1.4.5/default-web-app/examples/perl -@dirrm orion1.4.5/default-web-app/examples/ssi -@dirrm orion1.4.5/default-web-app/examples/xsl -@dirrm orion1.4.5/default-web-app/examples -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/colors -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/num -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/error -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/sessions -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/dates -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/cal -@dirrm orion1.4.5/default-web-app/WEB-INF/classes/checkbox -@dirrm orion1.4.5/default-web-app/WEB-INF/classes -@dirrm orion1.4.5/default-web-app/WEB-INF -@dirrm orion1.4.5/default-web-app -@dirrm orion1.4.5/applications -@dirrm orion1.4.5/database -@dirrm orion1.4.5/demo/ejb/cart/META-INF -@dirrm orion1.4.5/demo/ejb/cart -@dirrm orion1.4.5/demo/ejb/META-INF -@dirrm orion1.4.5/demo/ejb/product/META-INF -@dirrm orion1.4.5/demo/ejb/product -@dirrm orion1.4.5/demo/ejb/usermanager/META-INF -@dirrm orion1.4.5/demo/ejb/usermanager -@dirrm orion1.4.5/demo/ejb -@dirrm orion1.4.5/demo/jms/coffeemaker/META-INF -@dirrm orion1.4.5/demo/jms/coffeemaker -@dirrm orion1.4.5/demo/jms/jmschat/META-INF -@dirrm orion1.4.5/demo/jms/jmschat -@dirrm orion1.4.5/demo/jms -@dirrm orion1.4.5/demo/news-app/news-ejb-source/com/evermind/ejb -@dirrm orion1.4.5/demo/news-app/news-ejb-source/com/evermind -@dirrm orion1.4.5/demo/news-app/news-ejb-source/com -@dirrm orion1.4.5/demo/news-app/news-ejb-source/META-INF -@dirrm orion1.4.5/demo/news-app/news-ejb-source -@dirrm orion1.4.5/demo/news-app/news-client-source/com/evermind/ejb -@dirrm orion1.4.5/demo/news-app/news-client-source/com/evermind -@dirrm orion1.4.5/demo/news-app/news-client-source/com -@dirrm orion1.4.5/demo/news-app/news-client-source/META-INF -@dirrm orion1.4.5/demo/news-app/news-client-source -@dirrm orion1.4.5/demo/news-app/news-web/admin -@dirrm orion1.4.5/demo/news-app/news-web/WEB-INF/classes -@dirrm orion1.4.5/demo/news-app/news-web/WEB-INF/lib -@dirrm orion1.4.5/demo/news-app/news-web/WEB-INF -@dirrm orion1.4.5/demo/news-app/news-web -@dirrm orion1.4.5/demo/news-app/META-INF -@dirrm orion1.4.5/demo/news-app -@dirrm orion1.4.5/demo/rmi -@dirrm orion1.4.5/demo/ssl -@dirrm orion1.4.5/demo -@dirrm orion1.4.5/lib -@dirrm orion1.4.5/log -@dirrm orion1.4.5/persistence/ejb -@dirrm orion1.4.5/persistence -@dirrm orion1.4.5 +%%TARGET_PREFIX%%/config/database-schemas/hypersonic.xml +%%TARGET_PREFIX%%/config/database-schemas/ms-access.xml +%%TARGET_PREFIX%%/config/database-schemas/ms-sql.xml +%%TARGET_PREFIX%%/config/database-schemas/oracle.xml +%%TARGET_PREFIX%%/config/database-schemas/postgresql.xml +%%TARGET_PREFIX%%/config/database-schemas/sybase.xml +%%TARGET_PREFIX%%/config/data-sources.xml +%%TARGET_PREFIX%%/config/default-web-site.xml +%%TARGET_PREFIX%%/config/global-web-application.xml +%%TARGET_PREFIX%%/config/jms.xml +%%TARGET_PREFIX%%/config/mime.types +%%TARGET_PREFIX%%/config/principals.xml +%%TARGET_PREFIX%%/config/rmi.xml +%%TARGET_PREFIX%%/config/application.xml +%%TARGET_PREFIX%%/config/server.xml +%%TARGET_PREFIX%%/default-web-app/examples/cal/TableBean.txt +%%TARGET_PREFIX%%/default-web-app/examples/cal/cal1.txt +%%TARGET_PREFIX%%/default-web-app/examples/cal/cal2.jsp +%%TARGET_PREFIX%%/default-web-app/examples/cal/cal2.txt +%%TARGET_PREFIX%%/default-web-app/examples/cal/calendar.html +%%TARGET_PREFIX%%/default-web-app/examples/cal/Entries.txt +%%TARGET_PREFIX%%/default-web-app/examples/cal/Entry.txt +%%TARGET_PREFIX%%/default-web-app/examples/cal/JspCalendar.txt +%%TARGET_PREFIX%%/default-web-app/examples/cal/login.html +%%TARGET_PREFIX%%/default-web-app/examples/cal/cal1.jsp +%%TARGET_PREFIX%%/default-web-app/examples/images/code.gif +%%TARGET_PREFIX%%/default-web-app/examples/images/execute.gif +%%TARGET_PREFIX%%/default-web-app/examples/images/return.gif +%%TARGET_PREFIX%%/default-web-app/examples/jsp/include/foo.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/include/foo.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/include/inc.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/include/include.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/include/include.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/checkbox/check.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/checkbox/checkresult.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/checkbox/checkresult.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/checkbox/CheckTest.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/checkbox/cresult.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/colors/clr.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/colors/ColorGameBean.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/colors/colors.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/colors/colors.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/colors/colrs.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/dates/date.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/dates/date.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/dates/date.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/error/er.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/error/err.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/error/err.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/error/error.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/error/errorpge.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/forward/forward.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/forward/forward.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/forward/fwd.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/forward/one.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/forward/two.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/snp/snoop.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/snp/snoop.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/snp/snoop.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/TableBean.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/cal1.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/cal2.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/cal2.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/calendar.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/Entries.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/Entry.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/JspCalendar.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/login.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/cal/cal1.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/jsptoserv/hello.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/jsptoserv/jsptoservlet.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/jsptoserv/jts.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/jsptoserv/jts.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/jsptoserv/stj.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/num/numguess.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/num/numguess.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/num/numguess.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin/applet/Clock2.class +%%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin/applet/Clock2.java +%%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin/plugin.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin/plugin.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin/plugin.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/sessions/carts.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/sessions/carts.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/sessions/carts.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/sessions/crt.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/sessions/DummyCart.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/META-INF/taglib.tld +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.class +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/taglib/LoopTag.java +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/index.html +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/looptag.jsp.txt +%%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/looptags.jar +%%TARGET_PREFIX%%/default-web-app/examples/jsp/index.html +%%TARGET_PREFIX%%/default-web-app/examples/perl/helloworld.pl +%%TARGET_PREFIX%%/default-web-app/examples/perl/post.html +%%TARGET_PREFIX%%/default-web-app/examples/perl/post.pl +%%TARGET_PREFIX%%/default-web-app/examples/ssi/other.txt +%%TARGET_PREFIX%%/default-web-app/examples/ssi/real.txt +%%TARGET_PREFIX%%/default-web-app/examples/ssi/ssi.shtml +%%TARGET_PREFIX%%/default-web-app/examples/xsl/data.xml +%%TARGET_PREFIX%%/default-web-app/examples/xsl/data.xsl +%%TARGET_PREFIX%%/default-web-app/examples/xsl/doc.dtd +%%TARGET_PREFIX%%/default-web-app/examples/xsl/doc.jsp +%%TARGET_PREFIX%%/default-web-app/examples/xsl/doc.xml +%%TARGET_PREFIX%%/default-web-app/examples/xsl/doc.xsl +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/colors/ColorGameBean.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/num/NumberGuessBean.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/error/Smart.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/error/Smart.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/sessions/DummyCart.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/sessions/DummyCart.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/dates/JspCalendar.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/dates/JspCalendar.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/TableBean.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/Entries.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/Entry.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/Entry.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/JspCalendar.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/JspCalendar.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/TableBean.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal/Entries.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/checkbox/CheckTest.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/Counter.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/DateServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/DateServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/FingerServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/FingerServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/HelloWorldExample.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/HelloWorldExample.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/HelloWorldServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/HelloWorldServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/LinkCheckerServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/LocalStrings.properties +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/ParameterBean.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/ParameterBean.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RedirectServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RedirectServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RequestHeaderExample.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RequestHeaderExample.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RequestInfoExample.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RequestInfoExample.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RequestParamExample.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/RequestParamExample.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SessionExample.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SessionExample.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SessionServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SessionServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SimpleServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SimpleServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SnoopServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SnoopServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SurveyServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/SurveyServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/ToJSPServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/ToJSPServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/UpperCaseFilter.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/UpperCaseFilter.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/BBoardServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/URLInfo.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/BBoardServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/ConfigServlet.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/ConfigServlet.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/CookieExample.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/CookieExample.java +%%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/Counter.class +%%TARGET_PREFIX%%/default-web-app/WEB-INF/web.xml +%%TARGET_PREFIX%%/default-web-app/index.html +%%TARGET_PREFIX%%/applications/news.ear +%%TARGET_PREFIX%%/applications/atm.ear +%%TARGET_PREFIX%%/applications/estore-bugs.txt +%%TARGET_PREFIX%%/applications/estore-install.txt +%%TARGET_PREFIX%%/applications/estore-orionadapter.jar +%%TARGET_PREFIX%%/applications/estore-patched.ear +%%TARGET_PREFIX%%/applications/news-install.txt +%%TARGET_PREFIX%%/applications/atm-install.txt +%%TARGET_PREFIX%%/demo/ejb/cart/META-INF/application-client.xml +%%TARGET_PREFIX%%/demo/ejb/cart/META-INF/ejb-jar.xml +%%TARGET_PREFIX%%/demo/ejb/cart/META-INF/MANIFEST.MF +%%TARGET_PREFIX%%/demo/ejb/cart/Cart.java +%%TARGET_PREFIX%%/demo/ejb/cart/CartClient.class +%%TARGET_PREFIX%%/demo/ejb/cart/CartClient.java +%%TARGET_PREFIX%%/demo/ejb/cart/CartEJB.class +%%TARGET_PREFIX%%/demo/ejb/cart/CartEJB.java +%%TARGET_PREFIX%%/demo/ejb/cart/CartHome.class +%%TARGET_PREFIX%%/demo/ejb/cart/CartHome.java +%%TARGET_PREFIX%%/demo/ejb/cart/jndi.properties +%%TARGET_PREFIX%%/demo/ejb/cart/NotInCartException.class +%%TARGET_PREFIX%%/demo/ejb/cart/NotInCartException.java +%%TARGET_PREFIX%%/demo/ejb/cart/Cart.class +%%TARGET_PREFIX%%/demo/ejb/cart/orion-cart.jar +%%TARGET_PREFIX%%/demo/ejb/META-INF/application.xml +%%TARGET_PREFIX%%/demo/ejb/product/META-INF/application-client.xml +%%TARGET_PREFIX%%/demo/ejb/product/META-INF/ejb-jar.xml +%%TARGET_PREFIX%%/demo/ejb/product/META-INF/MANIFEST.MF +%%TARGET_PREFIX%%/demo/ejb/product/orion-product.jar +%%TARGET_PREFIX%%/demo/ejb/product/Product.class +%%TARGET_PREFIX%%/demo/ejb/product/Product.java +%%TARGET_PREFIX%%/demo/ejb/product/product.skeleton +%%TARGET_PREFIX%%/demo/ejb/product/ProductClient.class +%%TARGET_PREFIX%%/demo/ejb/product/ProductClient.java +%%TARGET_PREFIX%%/demo/ejb/product/ProductEJB.class +%%TARGET_PREFIX%%/demo/ejb/product/ProductEJB.java +%%TARGET_PREFIX%%/demo/ejb/product/ProductHome.class +%%TARGET_PREFIX%%/demo/ejb/product/ProductHome.java +%%TARGET_PREFIX%%/demo/ejb/product/ProductServlet.class +%%TARGET_PREFIX%%/demo/ejb/product/jndi.properties +%%TARGET_PREFIX%%/demo/ejb/product/ProductServlet.java +%%TARGET_PREFIX%%/demo/ejb/usermanager/META-INF/ejb-jar.xml +%%TARGET_PREFIX%%/demo/ejb/install.txt +%%TARGET_PREFIX%%/demo/jms/coffeemaker/META-INF/application-client.xml +%%TARGET_PREFIX%%/demo/jms/coffeemaker/META-INF/MANIFEST.MF +%%TARGET_PREFIX%%/demo/jms/coffeemaker/META-INF/orion-application-client.xml +%%TARGET_PREFIX%%/demo/jms/coffeemaker/CoffeeMachine.class +%%TARGET_PREFIX%%/demo/jms/coffeemaker/CoffeeMachine.java +%%TARGET_PREFIX%%/demo/jms/coffeemaker/CoffeeMaker.class +%%TARGET_PREFIX%%/demo/jms/coffeemaker/CoffeeMaker.java +%%TARGET_PREFIX%%/demo/jms/coffeemaker/jndi.properties +%%TARGET_PREFIX%%/demo/jms/jmschat/META-INF/application-client.xml +%%TARGET_PREFIX%%/demo/jms/jmschat/META-INF/MANIFEST.MF +%%TARGET_PREFIX%%/demo/jms/jmschat/META-INF/orion-application-client.xml +%%TARGET_PREFIX%%/demo/jms/jmschat/JMSChat$1.class +%%TARGET_PREFIX%%/demo/jms/jmschat/JMSChat.class +%%TARGET_PREFIX%%/demo/jms/jmschat/JMSChat.java +%%TARGET_PREFIX%%/demo/jms/jmschat/jndi.properties +%%TARGET_PREFIX%%/demo/jms/coffeemaker.jar +%%TARGET_PREFIX%%/demo/jms/jmschat.jar +%%TARGET_PREFIX%%/demo/jms/jmsdemo-readme.txt +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemClient.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemEJB.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemHome.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItemServlet.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSession.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionEJB.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsSessionHome.java +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsView.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb/NewsItem.class +%%TARGET_PREFIX%%/demo/news-app/news-ejb-source/META-INF/ejb-jar.xml +%%TARGET_PREFIX%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.class +%%TARGET_PREFIX%%/demo/news-app/news-client-source/com/evermind/ejb/NewsClient.java +%%TARGET_PREFIX%%/demo/news-app/news-client-source/com/evermind/ejb/NewsItemClient.class +%%TARGET_PREFIX%%/demo/news-app/news-client-source/META-INF/application-client.xml +%%TARGET_PREFIX%%/demo/news-app/news-client-source/META-INF/MANIFEST.MF +%%TARGET_PREFIX%%/demo/news-app/news-web/admin/editnews.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/admin/editnews_done.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/WEB-INF/lib/ejbtags.jar +%%TARGET_PREFIX%%/demo/news-app/news-web/WEB-INF/lib/utiltags.jar +%%TARGET_PREFIX%%/demo/news-app/news-web/WEB-INF/web.xml +%%TARGET_PREFIX%%/demo/news-app/news-web/border.html +%%TARGET_PREFIX%%/demo/news-app/news-web/checks.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/index.html +%%TARGET_PREFIX%%/demo/news-app/news-web/initviews.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/login-error.html +%%TARGET_PREFIX%%/demo/news-app/news-web/addnews.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/loginbox.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/logout.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/news-body.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/news.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/newsdetail.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/newssearch.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/usertest.jsp +%%TARGET_PREFIX%%/demo/news-app/news-web/login.html +%%TARGET_PREFIX%%/demo/news-app/news-web/addnews_done.jsp +%%TARGET_PREFIX%%/demo/news-app/META-INF/application.xml +%%TARGET_PREFIX%%/demo/news-app/news-web.war +%%TARGET_PREFIX%%/demo/news-app/news-client.jar +%%TARGET_PREFIX%%/demo/news-app/news-ejb.jar +%%TARGET_PREFIX%%/demo/news-app/counter.jar +%%TARGET_PREFIX%%/demo/rmi/RMIApp.class +%%TARGET_PREFIX%%/demo/rmi/RMIApp.java +%%TARGET_PREFIX%%/demo/ssl/ssl-user-registration.jsp +%%TARGET_PREFIX%%/demo/messagelogger.ear +%%TARGET_PREFIX%%/lib/hsql.jar +%%TARGET_PREFIX%%/loadbalancer.jar +%%TARGET_PREFIX%%/jta.jar +%%TARGET_PREFIX%%/jsse.jar +%%TARGET_PREFIX%%/jnet.jar +%%TARGET_PREFIX%%/jndi.jar +%%TARGET_PREFIX%%/jdbc.jar +%%TARGET_PREFIX%%/jcert.jar +%%TARGET_PREFIX%%/jaxp.jar +%%TARGET_PREFIX%%/ejbmaker.jar +%%TARGET_PREFIX%%/ejbassembler.jar +%%TARGET_PREFIX%%/ejb.jar +%%TARGET_PREFIX%%/earassembler.jar +%%TARGET_PREFIX%%/clientassembler.jar +%%TARGET_PREFIX%%/changes.txt +%%TARGET_PREFIX%%/autoupdate.properties +%%TARGET_PREFIX%%/autoupdate.jar +%%TARGET_PREFIX%%/assemblerlauncher.jar +%%TARGET_PREFIX%%/applicationlauncher.jar +%%TARGET_PREFIX%%/admin.jar +%%TARGET_PREFIX%%/activation.jar +%%TARGET_PREFIX%%/Readme.txt +%%TARGET_PREFIX%%/xerces.jar +%%TARGET_PREFIX%%/Copyright.txt +%%TARGET_PREFIX%%/xalan.jar +%%TARGET_PREFIX%%/webappassembler.jar +%%TARGET_PREFIX%%/taglibassembler.jar +%%TARGET_PREFIX%%/parser.jar +%%TARGET_PREFIX%%/orionconsole.jar +%%TARGET_PREFIX%%/orion.jar +%%TARGET_PREFIX%%/tools.jar +%%TARGET_PREFIX%%/mail.jar +@dirrm %%TARGET_PREFIX%%/application-deployments +@dirrm %%TARGET_PREFIX%%/config/database-schemas +@dirrm %%TARGET_PREFIX%%/config +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/cal +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/images +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/include +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/checkbox +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/colors +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/dates +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/error +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/forward +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/snp +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/cal +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/jsptoserv +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/num +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin/applet +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/plugin +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/sessions +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/META-INF +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop/taglib +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib/loop +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp/taglib +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/jsp +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/perl +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/ssi +@dirrm %%TARGET_PREFIX%%/default-web-app/examples/xsl +@dirrm %%TARGET_PREFIX%%/default-web-app/examples +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/colors +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/num +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/error +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/sessions +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/dates +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/cal +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes/checkbox +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF/classes +@dirrm %%TARGET_PREFIX%%/default-web-app/WEB-INF +@dirrm %%TARGET_PREFIX%%/default-web-app +@dirrm %%TARGET_PREFIX%%/applications +@dirrm %%TARGET_PREFIX%%/database +@dirrm %%TARGET_PREFIX%%/demo/ejb/cart/META-INF +@dirrm %%TARGET_PREFIX%%/demo/ejb/cart +@dirrm %%TARGET_PREFIX%%/demo/ejb/META-INF +@dirrm %%TARGET_PREFIX%%/demo/ejb/product/META-INF +@dirrm %%TARGET_PREFIX%%/demo/ejb/product +@dirrm %%TARGET_PREFIX%%/demo/ejb/usermanager/META-INF +@dirrm %%TARGET_PREFIX%%/demo/ejb/usermanager +@dirrm %%TARGET_PREFIX%%/demo/ejb +@dirrm %%TARGET_PREFIX%%/demo/jms/coffeemaker/META-INF +@dirrm %%TARGET_PREFIX%%/demo/jms/coffeemaker +@dirrm %%TARGET_PREFIX%%/demo/jms/jmschat/META-INF +@dirrm %%TARGET_PREFIX%%/demo/jms/jmschat +@dirrm %%TARGET_PREFIX%%/demo/jms +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind/ejb +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com/evermind +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-ejb-source/com +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-ejb-source/META-INF +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-ejb-source +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-client-source/com/evermind/ejb +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-client-source/com/evermind +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-client-source/com +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-client-source/META-INF +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-client-source +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-web/admin +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-web/WEB-INF/classes +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-web/WEB-INF/lib +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-web/WEB-INF +@dirrm %%TARGET_PREFIX%%/demo/news-app/news-web +@dirrm %%TARGET_PREFIX%%/demo/news-app/META-INF +@dirrm %%TARGET_PREFIX%%/demo/news-app +@dirrm %%TARGET_PREFIX%%/demo/rmi +@dirrm %%TARGET_PREFIX%%/demo/ssl +@dirrm %%TARGET_PREFIX%%/demo +@dirrm %%TARGET_PREFIX%%/lib +@dirrm %%TARGET_PREFIX%%/log +@dirrm %%TARGET_PREFIX%%/persistence/ejb +@dirrm %%TARGET_PREFIX%%/persistence +@dirrm %%TARGET_PREFIX%% -- cgit v1.2.3