debian/0000755000000000000000000000000012250271534007167 5ustar debian/README.Debian0000644000000000000000000000220012247001374011221 0ustar jetty for Debian ---------------- This debian package installs Jetty 8 into /usr/share/jetty8 and other directories under /var and /etc, which are linked to from the /usr/share/jetty8 directory. The configuration of the server is in /etc/jetty8. The configuration files listed in /etc/jetty8/jetty.conf are passed to the command line of Jetty when it is started by /etc/init.d/jetty8 Webapps can be deployed by placing them in /var/lib/jetty8/webapps (linked from /usr/share/jetty8/webapps) Additional contexts can be configured and (hot) deployed via the /etc/jetty8/contexts directory (linked from /usr/share/jetty8/contexts). Installing: $ sudo apt-get install libjetty8-java $ sudo apt-get install libjetty8-extra-java $ sudo apt-get install jetty8 Starting: Edit /etc/default/jetty8 Set: NO_START=0 Then do: $ sudo service jetty8 start Stopping: $ sudo service jetty8 stop -- This packaging is heavily based on the work done by Philipp Meier and Michael Koch . -- Greg Wilkins Thu Nov 8 18:10:06 EST 2007 David Yu Thu May 21 15:06:30 EST 2009 debian/TODO0000644000000000000000000000033312247001374007655 0ustar TODO List for jetty in debian * evaluate authbind Modules to add: jetty-terracota jetty-xbean - spring-framework must be available as a deb package (build dependency) - xbean must include the module xbean-spring debian/compat0000644000000000000000000000000212247001374010364 0ustar 7 debian/jetty-extra.conf0000644000000000000000000000054412247001374012320 0ustar # list of jetty configuration and property files # Replace jetty.conf with this file to use the extra features /etc/jetty/jetty-logging.xml /etc/jetty/jetty-jmx.xml /etc/jetty/jetty.xml /etc/jetty/jetty-shared-webapps.xml /etc/jetty/jetty-plus.xml /etc/jetty/jetty-ajp.xml /etc/jetty/jetty-ssl.xml /etc/jetty/jetty-sslengine.xml /etc/jetty/jetty-stats.xml debian/jetty-shared-webapps.xml0000644000000000000000000000434512247001374013760 0ustar /usr/share/jetty8/webapps false true false /etc/webdefault.xml debian/jetty.conf0000644000000000000000000000021212247001374011167 0ustar # list of jetty configuration and property files /etc/jetty8/jetty-logging.xml /etc/jetty8/jetty.xml /etc/jetty8/jetty-shared-webapps.xml debian/jetty8.cron.daily0000644000000000000000000000073212247001374012403 0ustar #!/bin/sh NAME=jetty8 DEFAULT=/etc/default/$NAME # The following variables can be overwritten in $DEFAULT # Default for number of days to keep old log files in /var/log/jetty/ LOGFILE_DAYS=14 # End of variables that can be overwritten in $DEFAULT # overwrite settings from default file if [ -f "$DEFAULT" ]; then . "$DEFAULT" fi if [ -d /var/log/$NAME ]; then find /var/log/$NAME/ -name \*.log -mtime +$LOGFILE_DAYS -print0 \ | xargs --no-run-if-empty -0 rm -- fi debian/jetty8.default0000644000000000000000000000273412247001374011771 0ustar # Defaults for jetty see /etc/init.d/jetty8 for more # change to 0 to allow Jetty to start NO_START=1 # change to 'no' or uncomment to use the default setting in /etc/default/rcS VERBOSE=yes # Run Jetty as this user ID (default: jetty) # Set this to an empty string to prevent Jetty from starting automatically #JETTY_USER=jetty # Listen to connections from this network host # Use 0.0.0.0 as host to accept all connections. # Uncomment to restrict access to localhost #JETTY_HOST=$(uname -n) # The network port used by Jetty #JETTY_PORT=8080 # Timeout in seconds for the shutdown of all webapps #JETTY_SHUTDOWN=30 # Additional arguments to pass to Jetty #JETTY_ARGS= # Extra options to pass to the JVM #JAVA_OPTIONS="-Xmx256m -Djava.awt.headless=true" # Home of Java installation. #JAVA_HOME= # The first existing directory is used for JAVA_HOME (if JAVA_HOME is not # defined in /etc/default/jetty). Should contain a list of space separated directories. #JDK_DIRS="/usr/lib/jvm/default-java /usr/lib/jvm/java-6-sun" # Java compiler to use for translating JavaServer Pages (JSPs). You can use all # compilers that are accepted by Ant's build.compiler property. #JSP_COMPILER=jikes # Jetty uses a directory to store temporary files like unpacked webapps #JETTY_TMP=/var/cache/jetty8 # Jetty uses a config file to setup its boot classpath #JETTY_START_CONFIG=/etc/jetty8/start.config # Default for number of days to keep old log files in /var/log/jetty8/ #LOGFILE_DAYS=14 debian/jetty8.dirs0000644000000000000000000000017412247001374011302 0ustar etc/jetty8 etc/jetty8/contexts usr/share/jetty8 usr/share/doc/jetty8 var/lib/jetty8/webapps var/log/jetty8 var/cache/jetty8 debian/jetty8.init0000644000000000000000000003014112247001374011301 0ustar #!/bin/sh -e # # /etc/init.d/jetty8 -- startup script for jetty 8.1.1 # # Written by Philipp Meier # Modified for Jetty 6 by Ludovic Claude # Modified for Jetty 8 by Jakub Adam # ### BEGIN INIT INFO # Provides: jetty8 # Required-Start: $local_fs $remote_fs $network # Required-Stop: $local_fs $remote_fs $network # Should-Start: $named # Should-Stop: $named # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start Jetty # Description: Start Jetty HTTP server and servlet container. ### END INIT INFO # Configuration files # # /etc/default/jetty8 # If it exists, this is read at the start of script. It may perform any # sequence of shell commands, like setting relevant environment variables. # # /etc/jetty8/jetty.conf # If found, the file will be used as this script's configuration. # Each line in the file may contain: # - A comment denoted by the pound (#) sign as first non-blank character. # - The path to a regular file, which will be passed to jetty as a # config.xml file. # - The path to a directory. Each *.xml file in the directory will be # passed to jetty as a config.xml file. # # The files will be checked for existence before being passed to jetty. # # /etc/jetty8/jetty.xml # If found, used as this script's configuration file, but only if # /etc/jetty8/jetty.conf was not present. See above. # # Configuration variables (to define in /etc/default/jetty8) # # JAVA_HOME # Home of Java installation. # # JAVA_OPTIONS # Extra options to pass to the JVM # # JETTY_PORT # Override the default port for Jetty servers. If not set then 8080 # will be used. The java system property "jetty.port" will be set to # this value for use in configure.xml files. For example, the following # idiom is widely used in the demo config files to respect this property # in Listener configuration elements: # # # # JETTY_ARGS # The default arguments to pass to jetty. # # JETTY_USER # if set, then used as a username to run the server as PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin NAME=jetty8 DESC="Jetty servlet engine" JETTY_HOME=/usr/share/$NAME LOGDIR="/var/log/$NAME" START_JAR="$JETTY_HOME/start.jar" DEFAULT=/etc/default/$NAME JVM_TMP=/var/cache/$NAME/tmp if [ `id -u` -ne 0 ]; then echo "You need root privileges to run this script" exit 1 fi # Make sure jetty is started with system locale if [ -r /etc/default/locale ]; then . /etc/default/locale export LANG fi . /lib/lsb/init-functions if [ -r /etc/default/rcS ]; then . /etc/default/rcS fi # The following variables can be overwritten in /etc/default/jetty # Whether to start jetty (as a daemon) or not NO_START=0 # Run Jetty as this user ID (default: jetty) # Set this to an empty string to prevent Jetty from starting automatically JETTY_USER=jetty # Listen to connections from this network host (leave empty to accept all connections) #JETTY_HOST=$(uname -n) JETTY_HOST= # The network port used by Jetty JETTY_PORT=8080 # Additional arguments to pass to Jetty JETTY_ARGS= # Extra options to pass to the JVM # Set java.awt.headless=true if JAVA_OPTIONS is not set so the # Xalan XSL transformer can work without X11 display on JDK 1.4+ # It also sets the maximum heap size to 256M to deal with most cases. JAVA_OPTIONS="-Xmx256m -Djava.awt.headless=true" # The first existing directory is used for JAVA_HOME (if JAVA_HOME is not # defined in /etc/default/jetty). Should contain a list of space separated directories. JDK_DIRS=" /usr/lib/jvm/default-java \ /usr/lib/jvm/java-6-sun \ /usr/lib/jvm/java-6-openjdk \ /usr/lib/jvm/java-1.5.0-sun \ /usr/lib/jvm/java-gcj \ /usr/lib/j2sdk1.6-sun \ /usr/lib/j2sdk1.5-sun \ /usr/lib/j2sdk1.5-ibm \ /usr/lib/j2sdk1.4-sun \ /usr/lib/j2sdk1.4 \ /usr/lib/j2se/1.4 \ /usr/lib/kaffe/ \ " # Timeout in seconds for the shutdown of all webapps JETTY_SHUTDOWN=30 # Jetty uses a directory to store temporary files like unpacked webapps JETTY_TMP=/var/cache/jetty8/data # Jetty uses a config file to setup its boot classpath JETTY_START_CONFIG=/etc/jetty8/start.config # End of variables that can be overwritten in /etc/default/jetty # overwrite settings from default file if [ -f "$DEFAULT" ]; then . "$DEFAULT" fi # Check whether jetty is still installed (it might not be if this package was # removed and not purged) if [ ! -r "$START_JAR" ]; then log_failure_msg "$NAME is not installed" exit 1 fi # Check whether startup has been disabled if [ "$NO_START" != "0" -a "$1" != "stop" ]; then [ "$VERBOSE" != "no" ] && log_failure_msg "Not starting jetty - edit /etc/default/jetty8 and change NO_START to be 0 (or comment it out)." exit 0 fi if [ -z "$JETTY_USER" ]; then log_failure_msg "Not starting/stopping $DESC as configured" log_failure_msg "(JETTY_USER is empty in /etc/default/jetty8)." exit 0 fi # Look for the right JVM to use for jdir in $JDK_DIRS; do if [ -d "$jdir" -a -z "${JAVA_HOME}" ]; then JAVA_HOME="$jdir" fi done export JAVA_HOME export JAVA="$JAVA_HOME/bin/java" JAVA_OPTIONS="$JAVA_OPTIONS -Djava.io.tmpdir=$JETTY_TMP \ -Djava.library.path=/usr/lib -DSTART=$JETTY_START_CONFIG \ -Djetty.home=$JETTY_HOME -Djetty.logs=$LOGDIR \ -Djetty.host=$JETTY_HOST -Djetty.port=$JETTY_PORT" # Set the JSP compiler if set in the jetty.default file if [ -n "$JSP_COMPILER" ]; then JAVA_OPTS="$JAVA_OPTS -Dbuild.compiler=$JSP_COMPILER" fi export JAVA_OPTIONS # Define other required variables PIDFILE="/var/run/$NAME.pid" WEBAPPDIR="$JETTY_HOME/webapps" BOOTSTRAP_CLASS=org.eclipse.jetty.start.Main START_CLASSPATH="/usr/share/java/commons-daemon.jar:$START_JAR:$JAVA_HOME/lib/tools.jar" ROTATELOGS=/usr/sbin/rotatelogs HOSTNAME=$(uname -n) JAVA_OPTIONS="$JAVA_OPTIONS -cp $START_CLASSPATH" ################################################## # Check for JAVA_HOME ################################################## if [ -z "$JAVA_HOME" ]; then log_failure_msg "Could not start $DESC because no Java Development Kit" log_failure_msg "(JDK) was found. Please download and install JDK 1.4 or higher and set" log_failure_msg "JAVA_HOME in /etc/default/jetty8 to the JDK's installation directory." exit 0 fi CONFIG_LINES=$(cat /etc/jetty8/jetty.conf | grep -v "^[[:space:]]*#" | tr "\n" " ") ################################################## # Get the list of config.xml files from jetty.conf ################################################## if [ ! -z "${CONFIG_LINES}" ] then for CONF in ${CONFIG_LINES} do if [ ! -r "$CONF" ] then log_warning_msg "WARNING: Cannot read '$CONF' specified in '$JETTY_CONF'" elif [ -f "$CONF" ] then # assume it's a configure.xml file CONFIGS="$CONFIGS $CONF" elif [ -d "$CONF" ] then # assume it's a directory with configure.xml files # for example: /etc/jetty.d/ # sort the files before adding them to the list of CONFIGS XML_FILES=`ls ${CONF}/*.xml | sort | tr "\n" " "` for FILE in ${XML_FILES} do if [ -r "$FILE" ] && [ -f "$FILE" ] then CONFIGS="$CONFIGS $FILE" else log_warning_msg "WARNING: Cannot read '$FILE' specified in '$JETTY_CONF'" fi done else log_warning_msg "WARNING: Don''t know what to do with '$CONF' specified in '$JETTY_CONF'" fi done fi ##################################################### # Run the standard server if there's nothing else to run ##################################################### if [ -z "$CONFIGS" ] then CONFIGS="/etc/jetty8/jetty-logging.xml /etc/jetty8/jetty.xml" fi ################################################## # Do the action ################################################## case "$1" in start) log_daemon_msg "Starting $DESC." "$NAME" if start-stop-daemon --quiet --test --start --pidfile "$PIDFILE" \ --user "$JETTY_USER" --startas "$JAVA" > /dev/null; then if [ -f $PIDFILE ] ; then log_warning_msg "$PIDFILE exists, but jetty was not running. Ignoring $PIDFILE" fi if [ -s "$LOGDIR/out.log" ]; then log_progress_msg "Rotate logs" $ROTATELOGS "$LOGDIR/out.log" 86400 \ < "$LOGDIR/out.log" || true fi > "$LOGDIR/out.log" chown -R $JETTY_USER:adm "$LOGDIR" # Remove / recreate JETTY_TMP directory rm -rf "$JETTY_TMP" mkdir "$JETTY_TMP" || { log_failure_msg "could not create $DESC temporary directory at $JETTY_TMP" exit 1 } chown $JETTY_USER "$JETTY_TMP" # Remove / recreate JVM_TMP directory rm -rf "$JVM_TMP" mkdir "$JVM_TMP" || { log_failure_msg "could not create JVM temporary directory at $JVM_TMP" exit 1 } chown $JETTY_USER "$JVM_TMP" cd "$JVM_TMP" start-stop-daemon --start --pidfile "$PIDFILE" --chuid "$JETTY_USER" \ --chdir "$JETTY_HOME" --background --make-pidfile --startas $JAVA -- \ $JAVA_OPTIONS $BOOTSTRAP_CLASS $JETTY_ARGS --daemon $CONFIGS log_daemon_msg "$DESC started, reachable on http://$HOSTNAME:$JETTY_PORT/." "$NAME" sleep 5 if start-stop-daemon --test --start --pidfile "$PIDFILE" \ --user $JETTY_USER --startas "$JAVA" >/dev/null; then log_end_msg 1 else log_end_msg 0 fi else log_warning_msg "(already running)." log_end_msg 0 exit 1 fi ;; stop) log_daemon_msg "Stopping $DESC (was reachable on http://$HOSTNAME:$JETTY_PORT/)." "$NAME" if start-stop-daemon --quiet --test --start --pidfile "$PIDFILE" \ --user "$JETTY_USER" --startas "$JAVA" > /dev/null; then if [ -x "$PIDFILE" ]; then log_warning_msg "(not running but $PIDFILE exists)." else log_warning_msg "(not running)." fi else start-stop-daemon --quiet --stop \ --pidfile "$PIDFILE" --user "$JETTY_USER" \ --startas "$JAVA" > /dev/null while ! start-stop-daemon --quiet --test --start \ --pidfile "$PIDFILE" --user "$JETTY_USER" \ --startas "$JAVA" > /dev/null; do sleep 1 log_progress_msg "." JETTY_SHUTDOWN=`expr $JETTY_SHUTDOWN - 1` || true if [ $JETTY_SHUTDOWN -ge 0 ]; then start-stop-daemon --oknodo --quiet --stop \ --pidfile "$PIDFILE" --user "$JETTY_USER" \ --startas "$JAVA" else log_progress_msg " (killing) " start-stop-daemon --stop --signal 9 --oknodo \ --quiet --pidfile "$PIDFILE" \ --user "$JETTY_USER" fi done rm -f "$PIDFILE" rm -rf "$JVM_TMP" rm -rf "$JETTY_TMP/*" log_daemon_msg "$DESC stopped." "$NAME" log_end_msg 0 fi ;; status) if start-stop-daemon --quiet --test --start --pidfile "$PIDFILE" \ --user "$JETTY_USER" --startas "$JAVA" > /dev/null; then if [ -f "$PIDFILE" ]; then log_success_msg "$DESC is not running, but pid file exists." exit 1 else log_success_msg "$DESC is not running." exit 3 fi else log_success_msg "$DESC is running with pid `cat $PIDFILE`, and is reachable on http://$JETTY_HOST:$JETTY_PORT/" fi ;; restart|force-reload) if ! start-stop-daemon --quiet --test --start --pidfile "$PIDFILE" \ --user "$JETTY_USER" --startas "$JAVA" > /dev/null; then $0 stop $* sleep 1 fi $0 start $* ;; try-restart) if start-stop-daemon --quiet --test --start --pidfile "$PIDFILE" \ --user "$JETTY_USER" --startas "$JAVA" > /dev/null; then $0 start $* fi ;; check) log_success_msg "Checking arguments for Jetty: " log_success_msg "" log_success_msg "PIDFILE = $PIDFILE" log_success_msg "JAVA_OPTIONS = $JAVA_OPTIONS" log_success_msg "JAVA = $JAVA" log_success_msg "JETTY_USER = $JETTY_USER" log_success_msg "JETTY_HOST = $JETTY_HOST" log_success_msg "JETTY_PORT = $JETTY_PORT" log_success_msg "ARGUMENTS = $ARGUMENTS" if [ -f $PIDFILE ] then log_success_msg "$DESC is running with pid `cat $PIDFILE`, and is reachable on http://$JETTY_HOST:$JETTY_PORT/" exit 0 fi exit 1 ;; *) log_success_msg "Usage: $0 {start|stop|restart|force-reload|try-restart|status|check}" exit 1 ;; esac exit 0 debian/jetty8.install0000644000000000000000000000254412247001374012012 0ustar jetty-webapp/src/main/config/etc/* etc/jetty8 jetty-policy/src/main/config/etc/* etc/jetty8 jetty-security/src/main/config/etc/* etc/jetty8 jetty-server/src/main/config/etc/* etc/jetty8 jetty-ajp/src/main/config/etc/* etc/jetty8 jetty-annotations/src/main/config/etc/* etc/jetty8 jetty-monitor/src/main/config/etc/* etc/jetty8 jetty-overlay-deployer/src/main/config/etc/* etc/jetty8 jetty-rewrite/src/main/config/etc/* etc/jetty8 jetty-plus/src/main/config/etc/* etc/jetty8 jetty-util/src/main/config/etc/* etc/jetty8 jetty-jmx/src/main/config/etc/* etc/jetty8 debian/jetty-shared-webapps.xml etc/jetty8 debian/jetty.conf etc/jetty8 debian/root-webapp/* var/lib/jetty8/webapps/root test-jetty-webapp/src/main/webapp/jetty_banner.gif var/lib/jetty8/webapps/root jetty-distribution/src/main/resources/contexts etc/jetty8 jetty-distribution/src/main/resources/resources usr/share/jetty8 jetty-start/target/classes/org/eclipse/jetty/start/start.config etc/jetty8 LICENSE-CONTRIBUTOR/cla-* usr/share/doc/jetty8/LICENSES LICENSE-CONTRIBUTOR/ccla-* usr/share/doc/jetty8/LICENSES NOTICE.txt usr/share/doc/jetty8/LICENSES debian/README.Debian usr/share/doc/jetty8 debian/jetty8.links0000644000000000000000000000037012247001374011457 0ustar var/lib/jetty8/webapps usr/share/jetty8/webapps var/log/jetty8 usr/share/jetty8/logs etc/jetty8 usr/share/jetty8/etc etc/jetty8/contexts usr/share/jetty8/contexts usr/share/doc/libjetty8-java/api usr/share/jetty8/javadoc debian/jetty8.postinst0000644000000000000000000000072312247001374012224 0ustar #!/bin/sh set -e case "$1" in configure) if ! id jetty > /dev/null 2>&1 ; then adduser --system --home /usr/share/jetty8 --no-create-home \ --group --disabled-password --shell /bin/false \ jetty fi chown -R jetty:adm /var/cache/jetty8 /var/log/jetty8 /var/lib/jetty8 chmod 750 /var/log/jetty8 ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "$0 called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# debian/jetty8.postrm0000644000000000000000000000250412247001374011664 0ustar #!/bin/sh set -e #DEBHELPER# # Remove cached files rm -rf /var/cache/jetty8/* case "$1" in remove) # Remove ROOT webapp if not modified RWLOC="/var/lib/jetty8/webapps/root" RWFILES="$RWLOC/index.html $RWLOC/jetty_banner.gif" if [ "`(cat $RWFILES | md5sum -) 2>/dev/null | cut -d ' ' -f 1`" \ = "12471c4b3020defb7ebd30ef84c0f9dd" ] ; then rm $RWFILES rmdir --ignore-fail-on-non-empty \ /var/lib/jetty8/webapps/root \ /var/lib/jetty8/webapps \ /var/lib/jetty8 || true fi if [ -d "/var/cache/jetty8" ] ; then rm -rf /var/cache/jetty8 fi ;; purge) # Remove user/group and log files (don't remove everything under # /var/lib/jetty because there might be user-installed webapps) deluser jetty || true rm -rf /var/log/jetty8 if [ -d "/var/lib/jetty8" ] ; then rmdir --ignore-fail-on-non-empty /var/lib/jetty8 || true fi rmdir --ignore-fail-on-non-empty /etc/jetty8/contexts /etc/jetty8 || true ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) # Nothing to do here ;; *) echo "$0 called with unknown argument \`$1'" >&2 exit 1 ;; esac debian/libjetty8-extra-java.poms0000644000000000000000000000063112247001374014044 0ustar jetty-ajp/pom.xml --java-lib --usj-name=jetty8-ajp jetty-annotations/pom.xml --java-lib --usj-name=jetty8-annotations jetty-client/pom.xml --java-lib --usj-name=jetty8-client jetty-jndi/pom.xml --java-lib --usj-name=jetty8-jndi jetty-monitor/pom.xml --java-lib --usj-name=jetty8-monitor jetty-plus/pom.xml --java-lib --usj-name=jetty8-plus test-jetty-servlet/pom.xml --java-lib --usj-name=jetty8-test-servlet debian/libjetty8-java-doc.doc-base0000644000000000000000000000041012247001374014160 0ustar Document: libjetty8-java Title: API Javadoc for jetty Author: Mortbay Consulting Abstract: This is the API Javadoc provided by Jetty. Section: Programming Format: HTML Index: /usr/share/doc/libjetty8-java/api/index.html Files: /usr/share/doc/libjetty8-java/api/* debian/libjetty8-java-doc.install0000644000000000000000000000005512247001374014156 0ustar target/site/api usr/share/doc/libjetty8-java debian/libjetty8-java.dirs0000644000000000000000000000007712247001374012712 0ustar usr/share/jetty8 usr/share/jetty8/lib usr/share/jetty8/lib/ext debian/libjetty8-java.links0000644000000000000000000000011412247001374013061 0ustar usr/share/java/servlet-api-3.0.jar usr/share/jetty8/lib/servlet-api-3.0.jar debian/libjetty8-java.poms0000644000000000000000000000272612247001374012732 0ustar pom.xml --no-parent jetty-webapp/pom.xml --java-lib --usj-name=jetty8-webapp jetty-policy/pom.xml --java-lib --usj-name=jetty8-policy jetty-jsp/pom.xml jetty-security/pom.xml --java-lib --usj-name=jetty8-security jetty-server/pom.xml --java-lib --usj-name=jetty8-server jetty-jndi/pom.xml --ignore-pom jetty-xml/pom.xml --java-lib --usj-name=jetty8-xml jetty-aggregate/pom.xml jetty-aggregate/jetty-websocket/pom.xml --java-lib --usj-name=jetty8-websocket jetty-aggregate/jetty-servlet/pom.xml --java-lib --usj-name=jetty8-servlet jetty-ajp/pom.xml --ignore-pom jetty-continuation/pom.xml --java-lib --usj-name=jetty8-continuation jetty-annotations/pom.xml --ignore-pom jetty-nosql/pom.xml --ignore-pom jetty-monitor/pom.xml --ignore-pom jetty-client/pom.xml --ignore-pom jetty-overlay-deployer/pom.xml --java-lib --usj-name=jetty8-overlay-deployer jetty-rewrite/pom.xml --java-lib --usj-name=jetty8-rewrite jetty-plus/pom.xml --ignore-pom jetty-deploy/pom.xml --java-lib --usj-name=jetty8-deploy jetty-distribution/pom.xml jetty-http/pom.xml --java-lib --usj-name=jetty8-http jetty-nested/pom.xml jetty-websocket/pom.xml jetty-start/pom.xml --java-lib --usj-name=jetty8-start jetty-http-spi/pom.xml jetty-io/pom.xml --java-lib --usj-name=jetty8-io jetty-util/pom.xml --java-lib --usj-name=jetty8-util jetty-jaspi/pom.xml jetty-jmx/pom.xml --java-lib --usj-name=jetty8-jmx jetty-servlets/pom.xml --java-lib --usj-name=jetty8-servlets jetty-servlet/pom.xml --java-lib --usj-name=jetty8-servlet debian/maven.ignoreRules0000644000000000000000000000165312247001374012521 0ustar * maven-release-plugin * * * * org.apache.derby derby * * * * org.apache.maven.plugins maven-assembly-plugin * * * * org.apache.maven.plugins maven-dependency-plugin * * * * org.apache.maven.plugins maven-eclipse-plugin * * * * org.apache.maven.plugins maven-enforcer-plugin * * * * org.apache.maven.plugins maven-pmd-plugin * * * * org.apache.maven.plugins maven-remote-resources-plugin * * * * org.apache.maven.plugins maven-source-plugin * * * * org.codehaus.mojo findbugs-maven-plugin * * * * org.eclipse.equinox.http servlet * * * * org.eclipse.jetty test-jetty-servlet * * * * org.eclipse.jetty test-jetty-webapp * * * * org.eclipse.jetty.orbit com.sun.el * * * * org.eclipse.jetty.orbit org.apache.taglibs.standard.glassfish * * * * org.eclipse.jetty.orbit org.eclipse.jdt.core * * * * org.eclipse.jetty.toolchain jetty-test-helper * * * * org.eclipse.jetty.toolchain jetty-version-maven-plugin * * * * org.ops4j.pax.exam * * * * * debian/maven.properties0000644000000000000000000000002512247001374012407 0ustar maven.test.skip=true debian/patches/0000755000000000000000000000000012247001374010615 5ustar debian/patches/aggregate-doc.patch0000644000000000000000000000125312247001374014330 0ustar From: Jakub Adam Date: Thu, 12 Apr 2012 22:46:39 +0200 Subject: aggregate-doc --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 9933028..571e228 100644 --- a/pom.xml +++ b/pom.xml @@ -281,6 +281,8 @@ org.apache.maven.plugins maven-javadoc-plugin + true + ${project.build.directory}/api true false true debian/patches/annotations-find-asm-commons.patch0000644000000000000000000000125212247001374017340 0ustar From: Jakub Adam Date: Thu, 1 Mar 2012 21:28:39 +0100 Subject: annotations-find-asm-commons --- jetty-annotations/pom.xml | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/jetty-annotations/pom.xml b/jetty-annotations/pom.xml index 9939183..950385c 100644 --- a/jetty-annotations/pom.xml +++ b/jetty-annotations/pom.xml @@ -99,5 +99,10 @@ org.eclipse.jetty.orbit org.objectweb.asm + + asm + asm-commons + 3.x + debian/patches/disable-modules.patch0000644000000000000000000000262012247001374014707 0ustar From: Jakub Adam Date: Thu, 1 Mar 2012 21:33:06 +0100 Subject: disable-modules --- pom.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index bb07f25..bb90727 100644 --- a/pom.xml +++ b/pom.xml @@ -379,19 +379,19 @@ jetty-start jetty-nested jetty-overlay-deployer - jetty-osgi + jetty-jsp - jetty-distribution - test-continuation + test-jetty-servlet - test-jetty-webapp + @@ -523,7 +523,7 @@ [1.7,) - jetty-spdy + debian/patches/disable-osgi-tests.patch0000644000000000000000000000112512247001374015337 0ustar From: Jakub Adam Date: Thu, 1 Mar 2012 21:29:17 +0100 Subject: disable-osgi-tests --- jetty-osgi/pom.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/jetty-osgi/pom.xml b/jetty-osgi/pom.xml index 428cd22..ab23218 100644 --- a/jetty-osgi/pom.xml +++ b/jetty-osgi/pom.xml @@ -24,7 +24,7 @@ jetty-osgi-boot-jsp jetty-osgi-boot-warurl jetty-osgi-httpservice - test-jetty-osgi + debian/patches/maven-bundle-plugin-version.patch0000644000000000000000000000104612247001374017173 0ustar From: Jakub Adam Date: Thu, 1 Mar 2012 21:32:54 +0100 Subject: maven-bundle-plugin-version --- pom.xml | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index 1e872a8..86d79e5 100644 --- a/pom.xml +++ b/pom.xml @@ -233,6 +233,7 @@ org.apache.felix maven-bundle-plugin + 2.3.5 true debian/patches/series0000644000000000000000000000021012247001374012023 0ustar annotations-find-asm-commons.patch disable-osgi-tests.patch maven-bundle-plugin-version.patch disable-modules.patch aggregate-doc.patch debian/root-webapp/0000755000000000000000000000000012247001374011425 5ustar debian/root-webapp/index.html0000644000000000000000000000207212247001374013423 0ustar Welcome to Jetty 8 on Debian

Welcome to Jetty 8 on Debian

Jetty is a 100% Java HTTP Server and Servlet Container. This means that you do not need to configure and run a seperate web server (like Apache) in order to use java, servlets and JSPs to generate dynamic content. Jetty is a fully featured web server for static and dynamic content. Unlike separate server/container solutions, this means that your web server and web application run in the same process, without interconnection overheads and complications. Furthermore, as a pure java component, Jetty can be simply included in your application for demonstration, distribution or deployment. Jetty is available on all Java supported platforms.  

You can also visit Jetty's Javadoc debian/source/0000755000000000000000000000000012247001374010466 5ustar debian/source/format0000644000000000000000000000001412247001374011674 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000016612247001374010222 0ustar version=3 http://download.eclipse.org/jetty/stable-8/dist/ .*/jetty-distribution-(\d.*)\.(?:tgz|tar\.(?:gz|bz2|xz)).* debian/maven.rules0000644000000000000000000000236412250270717011360 0ustar asm asm-commons * 3.x * * javax.servlet jstl jar s/.*/1.1/ * * javax.servlet.jsp jsp-api jar s/.*/2.2/ * * junit junit * s/4\..*/4.x/ * * org.apache.felix maven-bundle-plugin * s/.*/2.3.5/ * * s/org.eclipse.jetty.orbit/asm/ s/org.objectweb.asm/asm/ jar s/.*/3.x/ * * s/org.eclipse.jetty.orbit/javax.mail/ s/javax.mail.glassfish/gnumail/ jar s/.*/debian/ * * s/org.eclipse.jetty.orbit/javax.security.auth.message/ s/javax.security.auth.message/jmac-api/ jar s/.*/debian/ * * s/org.eclipse.jetty.orbit/org.apache.geronimo.specs/ s/javax.transaction/geronimo-jta_1.1_spec/ jar s/.*/debian/ * * s/org.eclipse.jetty.orbit/org.apache.tomcat/ s/javax.annotation/tomcat-annotations-api/ jar s/.*/debian/ * * s/org.eclipse.jetty.orbit/javax.el/ s/javax.el/el-api/ jar s/.*/2.2/ * * s/org.eclipse.jetty.orbit/javax.servlet/ s/javax.servlet/servlet-api/ jar s/.*/3.0/ * * s/org.eclipse.jetty.orbit/javax.servlet.jsp/ s/javax.servlet.jsp/jsp-api/ jar s/.*/2.2/ * * s/org.eclipse.jetty.orbit/javax.servlet/ s/javax.servlet.jsp.jstl/jstl/ jar s/.*/1.1/ * * s/org.eclipse.jetty.orbit/org.apache.tomcat/ s/org.apache.jasper.glassfish/tomcat-jasper/ jar s/.*/debian/ * * s/org.mortbay.jetty/javax.servlet/ servlet-api jar s/.*/3.0/ * * org.mortbay.jetty jetty-util * s/6\..*/6.x/ * * debian/changelog0000644000000000000000000005140712250271172011046 0ustar jetty8 (8.1.3-9) unstable; urgency=low [ Emmanuel Bourg ] * Team upload. * Use the Tomcat 7 jars from /usr/share/tomcat7/lib * Updated Standards-Version to 3.9.5 (no changes) * debian/copyright: Updated the Format URI [ Ludovico Cavedon ] * Added jars in libjetty8-java for: jetty-jaspi, jetty-jsp, jetty-nested, jetty-websocket (Closes: #724973). -- Ludovico Cavedon Thu, 05 Dec 2013 22:20:15 -0800 jetty8 (8.1.3-8) unstable; urgency=low * Don't build jetty-spdy module with Java 7 (Closes: #717119). * Updated d/watch. -- Jakub Adam Fri, 26 Jul 2013 19:45:24 +0200 jetty8 (8.1.3-7) unstable; urgency=low * Removed dependencies on libgnujaf-java. * Build-Depends on libservlet3.0-java (>= 7.0.40-2). - Previous versions had a problem with maven-repo deployment. -- Jakub Adam Thu, 16 May 2013 16:34:13 +0200 jetty8 (8.1.3-6) unstable; urgency=low [ Emmanuel Bourg ] * Team upload. * Fixed the watch file [ tony mancill ] * Upload to unstable for the jessie release cycle. -- tony mancill Mon, 06 May 2013 07:19:07 -0700 jetty8 (8.1.3-5) experimental; urgency=low * Add test-jetty-servlet jar into libjetty8-extra-java. * Bump Standards-Version to 3.9.4. -- Jakub Adam Fri, 05 Apr 2013 09:38:08 +0200 jetty8 (8.1.3-4) unstable; urgency=low * Team upload * Switch to use of javax.* and standard jar names for Servlet, JSP and EL API's (Closes: #678766): - d/maven.rules: Fix mapping to javax.* artifacts as published by the latest version of the tomcat7 package. - d/{libjetty8-java,libjetty8-extra-java}.links: Switch use from deprecated tomcat-* jar files for Servlet, JSP and EL API's. - d/control: Bump minimum version of libtomcat7-java to ensure that the correct API jars/artifacts are provided. -- James Page Mon, 25 Jun 2012 16:02:46 +0200 jetty8 (8.1.3-3) unstable; urgency=low * Team upload. * Allow co-installation of libjetty-java-doc with libjetty8-java-doc. (Closes: #674204). -- Miguel Landaeta Tue, 29 May 2012 21:45:21 +0200 jetty8 (8.1.3-2) unstable; urgency=low * Fix server startup when jsvc is not installed. * Fix a typo in binary package dependencies (jstl1.1-java to libjstl1.1-java) -- Jakub Adam Wed, 23 May 2012 07:49:07 +0200 jetty8 (8.1.3-1) unstable; urgency=low * New upstream release. * Bump Standards-Version to 3.9.3. -- Jakub Adam Sun, 13 May 2012 14:54:06 +0200 jetty (6.1.24-6) unstable; urgency=medium * Removed Depends on JREs for library packages, no longer required by the policy. * Added missing depends on JREs for the jetty package. * Made init script ignore weird exit statuses from logrotate. (Closes: 589681, LP: #607202) * Fixed broken restart command in jetty init script. Was missing a negation. -- Niels Thykier Mon, 05 Jul 2010 22:28:14 +0200 jetty (6.1.24-5) unstable; urgency=low * Ignore test failures. (Closes: #586635) * Remove debian/.mh in clean target. -- Torsten Werner Tue, 29 Jun 2010 20:53:42 +0200 jetty (6.1.24-4) unstable; urgency=low * Updated the versions in the Manifests to match the actual version of jetty. * Remove all use of sudo in jetty.init. (Closes: #580639) * Fixed some formatting issues in the NEWS file. * Bumped debhelper compat to 7. * Made the javadoc link against system javadocs. This includes adding Recommends on various java-doc packages. -- Niels Thykier Sun, 20 Jun 2010 14:49:32 +0200 jetty (6.1.24-3) unstable; urgency=low [ Torsten Werner ] * Merge changes from Ubuntu version 6.1.22-1ubuntu1: - debian/build.xml, debian/module.xml: Enable tests in the jetty module - debian/rules: Adding slf4j-simple to the DEB_JARS since it's used in tests - debian/rules, debian/control: Added junit and ant-optional needed for tests [ Miguel Landaeta ] * Enable jetty-plus and jetty-annotations modules. (Closes: #585387). -- Torsten Werner Thu, 10 Jun 2010 14:07:51 -0430 jetty (6.1.24-2) unstable; urgency=low * Set JAVA_HOME in d/rules to /usr/lib/jvm/default-java. (Closes: #578618, #579469) * Fix the installation of jetty-util5.jar. (Closes: #569328) -- Torsten Werner Thu, 29 Apr 2010 07:36:43 +0200 jetty (6.1.24-1) unstable; urgency=low [ Niels Thykier ] * Reduced Depends on libjetty-java-doc to a Suggests. (Closes: #569293) * Clarified what JETTY_HOST should be set to in order to accept all connections. (Closes: #554874) * Bumped Standards-Version to 3.8.4 - no changes required. [ Torsten Werner ] * New upstream release. * Change Build-Depends: default-jdk. (Closes: #578618) * Switch to source format 3.0. -- Torsten Werner Fri, 23 Apr 2010 23:55:35 +0200 jetty (6.1.22-1ubuntu1) lucid; urgency=low * debian/build.xml, debian/module.xml: Enable tests in the jetty module * debian/rules: Adding slf4j-simple to the DEB_JARS since it's used in tests * debian/rules, debian/control: Added junit and ant-optional needed for tests * debian/control, debian/rules: Build with default-jdk. -- Thierry Carrez Tue, 26 Jan 2010 09:52:06 +0100 jetty (6.1.22-1) unstable; urgency=medium * New upstream release. (Closes: #553644) * Added OSGi bundle metadata (by upstream). (Closes: #558187) * Corrected path to jetty web-apps (by Niels Thykier). (Closes: #554877) -- Pablo Duboue Sun, 13 Dec 2009 1:55:00 -0400 jetty (6.1.21-1) unstable; urgency=medium * New upstream release. * Stopped using /tmp/jetty-temp in /etc/init.d/jetty for security reasons. - JVM_TMP is now /var/cache/jetty/tmp - JETTY_TMP is now /var/cache/jetty/data * The postrm script no longer deletes files in /tmp/jetty-temp. * Removed Philipp Meier from Uploaders (last upload was 2006-06-07). Thanks for your work on this package. * Corrected javadoc symlink in binary package jetty. -- Niels Thykier Fri, 23 Oct 2009 20:45:43 +0200 jetty (6.1.20-2) unstable; urgency=low * Move documentation to /usr/share/doc/libjetty-java * Better postinst and postrm scripts, aligned with tomcat6 scripts: - postinst: user jetty is created with its own group - postrm: better cleanup of temporary data, thourough remove and purge of data * debian/changelog: - fix suggest for package libjetty-java-doc, add libjetty-java-doc to the list of Suggests for libjetty-java - add libjetty-extra to the list of Suggests for package jetty. -- Ludovic Claude Mon, 07 Sep 2009 00:22:20 +0100 jetty (6.1.20-1) unstable; urgency=medium [ Niels Thykier ] * New upstream release. * Stop using Build-Depends-Indep, since the policy and the build daemons disagree on when it should be used (Closes: #540861). * Corrected jetty.install to reflect the move of some license files in the source tree. * Bumped to Standard-Versions 3.8.3 - no changes required. * Updated jetty.post{install,rm} scripts to use "set -e" instead of passing it to sh. * Installed "VERSION.txt" as upstream changelog. * A previous version (6.1.18-1) fixed the following security problems, which were not mentioned in the changelog: CVE-2007-5613, CVE-2007-5614, CVE-2007-5615, CVE-2009-1523, and CVE-2009-1524 (see below for more information). [ Torsten Werner ] * Set urgency to medium because this version fixes a FTBFS. -- Torsten Werner Sun, 06 Sep 2009 23:06:45 +0200 jetty (6.1.19-2) unstable; urgency=low * Upload to unstable. -- Torsten Werner Sun, 09 Aug 2009 08:48:10 +0200 jetty (6.1.19-1) experimental; urgency=low [ Ludovic Claude ] * New upstream release fixing a security vulnerability (cookies are not secure if you are running behind a netscaler). * Remove the bootstrap patch as it has been added upstream and update the build to use the new start-daemon component. * Remove the Build-Depend on quilt as the patch is not needed anymore. * Add the Maven POM to the package. * Add a Build-Depends dependency on maven-repo-helper. * Use mh_installpom and mh_installjar to install the POM and the jar to the Maven repository. * Add optional support for web applications located in /usr/share/webapps. * Add a cron job that cleans up the old log files in /var/log/jetty. * Register the Javadoc into Debian documentation and put it in a separate package (libjetty-java-doc). * Use openjdk-6-jdk for the build; add a Build-Depends on this package. Required to build the javadoc. * Update debian/copyright (patch provided by Jan Pascal Vanbest ). [ Torsten Werner ] * Add myself to Uploaders. * Update Standards-Version: 3.8.2. * Move package libjetty-java-doc to Section: doc. * Fix init script: check for /etc/default/rcS before reading it. -- Torsten Werner Tue, 14 Jul 2009 11:50:43 +0200 jetty (6.1.18-1) unstable; urgency=low [Ludovic Claude] * Add myself to Uploaders. * Change the build dependency on java-gcj to default-jdk. * Add init.d startup script. * Add dependencies on ant, libslf4j-java, libxerces2-java, libtomcat6-java for libjetty-extra-java, add links for the lib folder. * Add dependency on jsvc to run jetty as a daemon. * Add the package libjetty-setuid-java for the Setuid module (with native code). * Add an index page used when Jetty starts. * Use latest jasper from Tomcat to provide jsp 2.1 instead of Glassfish JSP implementation as in the standard distribution. * Add tools.jar to the classpath to be able to run JSP (Closes: #452586). * Fix Lintian warnings: add ${misc:Depends} to all Depends. * Move jetty to main as all its dependencies are in main, and jetty contains only code that complies with Debian guidelines, use java section like tomcat6 (Closes: #498582). * Do not depend on tomcat 5.5 (Closes: #530720, #458399). * Remove empty prerm and preinst scripts. * Remove old patches that don't apply anymore. * Update copyright and remove full text of Apache license. * Bump up compat to 6 and Standards-Version to 3.8.1. [David Yu] * New upstream release for jetty (Closes: #528389, #527571, #454529, #425152). * Fixed jetty.links. Now delegates install of start.jar to libjetty-java. [ Torsten Werner ] * fixes several security issues: - CVE-2007-5613: Cross-site scripting (XSS) vulnerability in Dump Servlet. - CVE-2007-5614: Quote Sequence vulnerability. - CVE-2007-5615: CRLF injection vulnerability. - CVE-2009-1523: Directory traversal vulnerability in the HTTP server in Mort Bay Jetty. - CVE-2009-1524: Cross-site scripting (XSS) vulnerability in Mort Bay Jetty. (Closes: #454529, #528389, #527571, #543462). -- Ludovic Claude Fri, 12 Jun 2009 17:19:08 +0100 jetty (5.1.14-1) unstable; urgency=low * New upstream release. - Removed debian/patches/cve-2007-6969.patch. Applied upstream. * Added recognition of installed libcommons-el-java to debian/start.config. Closes: #352093. * Fixed short and long service description in debian/jetty.init. Closes: #446788. * Removed libapache2-mod-webapp from Suggests. * Added watch file. -- Michael Koch Wed, 24 Oct 2007 14:14:45 +0200 jetty (5.1.10-4) unstable; urgency=low * Added patch to fix CVE-2006-6969. Thanks to Greg Wilkins for the patch. Closes: #445283. * Updated debian/patches/jdk-1.2-src-encoding.patch to make it work with current ecj. -- Michael Koch Fri, 05 Oct 2007 07:34:55 +0200 jetty (5.1.10-3) unstable; urgency=low * Fix debian/jetty.init to permit removal without purge and offer a new NO_START option in /etc/default/jetty. Closes: #356067. Thanks to Loic Minier for the patch. * Added additional paths to JDK_DIRS in debian/jetty.init. Closes: #405851. * (Build-)Depends on java-gcj-compat. * Moved debhelper from Build-Depends-Indep to Build-Depends. * Removed Build-Depends on libtomcat5-java and replace Depends on libtomcat5-java by libtomcat5.5-java. * Added LSB section in debian/jetty.init. * Removed extra license file from /usr/share/doc/jetty. * Added myself to Uploaders. -- Michael Koch Tue, 24 Jul 2007 20:40:27 +0200 jetty (5.1.10-2) unstable; urgency=low * Fix in init script for new version of su (closes #367491). * Create logfile if not existing. Aknolwedge NMU (closes #356066). -- Philipp Meier Tue, 30 May 2006 10:46:21 +0200 jetty (5.1.10-1) unstable; urgency=low * New upstream release. * Sercurity fixes for windows. * Fixed path aliasing with // on windows. * Fix for AJP13 with multiple headers. * Fix for AJP13 with encoded path. * Remove null dispatch attributes from getAttributeNames. * Put POST content default back to iso_8859_1. GET is UTF-8 still. -- Philipp Meier Tue, 30 May 2006 10:40:18 +0200 jetty (5.1.8-3) unstable; urgency=low * Enhance dependencies. -- Philipp Meier Fri, 16 Dec 2005 10:53:48 +0100 jetty (5.1.8-2) unstable; urgency=low * Add dependeny on apache2-util for log rotation. Closes: #343177. -- Philipp Meier Tue, 13 Dec 2005 14:28:09 +0100 jetty (5.1.8-1) unstable; urgency=low * New upstream release. From 5.1.8: * Fixed space in URL issued created in 5.1.6. From 5.1.7: * improved server stats. * char encoding for MultiPartRequest. * fixed merging of POST params in dispatch query string. * protect from NPE in dispatcher getValues. * Updated to 2.6.2 xerces. * JSP file servlet mappings copy JspServlet init params. * Prefix servlet context logs with org.mortbay.jetty.context. * better support for URI character encodings. * use commons logging jar instead of api jar. -- Philipp Meier Wed, 7 Dec 2005 11:06:10 +0100 jetty (5.1.6-1) unstable; urgency=high * New upstream release. * Fixed JSP visibility security issue in upstream. * Fix location of jasper since upgrade to tomcat5. Closes: #333010. -- Philipp Meier Wed, 30 Nov 2005 15:20:47 +0100 jetty (5.1.5rc1-5) unstable; urgency=low Patch from Oyvind Harboe : * increased default amount of memory available to 256Mbyte. the advantage of having more heap available is that more applications will be able to run without modification to the standard Jetty configuration. * added -Djava.library.path=/usr/lib to VM arguments. This is requried to make e.g. the librxtx-java package work. * Closes: #32960. -- Philipp Meier Thu, 22 Sep 2005 16:13:16 +0200 jetty (5.1.5rc1-4) unstable; urgency=low Patch from Oyvind Harboe : * Fixed rc script /etc/init.d/jetty. "stop" could leave dangling /var/run/jetty.pid. Fixed this by adding "--oknodo" to "start-stop-daemon --stop" command. * Removed trailing "/" from LOGDIR which caused /var/log/out.log not to be created. * /etc/init.d/jetty start will now deal more gracefully with a dangling /var/run/jetty.pid. A dangling jetty.pid is detected and ignored. * Closes: #326176. -- Philipp Meier Fri, 2 Sep 2005 13:40:59 +0200 jetty (5.1.5rc1-3) unstable; urgency=low * Removed -v from ant opts during build. * Remove pid file on stop. Closes: #325667 * Fix location of ant-1.6.jar in start.config. Closes: #324472. -- Philipp Meier Tue, 30 Aug 2005 13:37:15 +0200 jetty (5.1.5rc1-2) unstable; urgency=low * Builds with kaffe. * Adds patch to exclude Sun JSSE if not available. -- Philipp Meier Sat, 27 Aug 2005 14:21:12 +0200 jetty (5.1.5rc1-1) unstable; urgency=low * New upstream release. -- Philipp Meier Fri, 26 Aug 2005 12:53:50 +0200 jetty (5.1.4-1) unstable; urgency=low * New upstream release. * Added myself to Uploaders in control. * Standards-Version bumbed to 3.6.2. * Removed debian/watch which will not work with sourceforge. * Manage changes to upstream with cdbs simple-patchsys. * Fixed rc script /etc/init.d/jetty. * Adjusted new location of servlet.jar. Closes: #280139. -- Philipp Meier Fri, 12 Aug 2005 18:14:28 +0200 jetty (5.0.0-3) unstable; urgency=low * Package is now maintained by pkg-java. Maintainer was updated. * Disable validation of xml files in start.config by default. Closes: #298731. * Add /usr/lib/j2sdk1.5-sun to JAVA_HOME_DIRS in debian/rules. -- Philipp Meier Thu, 30 Jun 2005 14:32:31 +0200 jetty (5.0.0-2.1) unstable; urgency=low * Non-maintainer upload. * Transition to liblog4j1.2-java. Closes: #306761. -- Matej Vela Mon, 2 May 2005 12:12:12 +0200 jetty (5.0.0-2) unstable; urgency=low * Shipping working default configuration in /etc/jetty/jetty.xml. Closes: #278134 -- Philipp Meier Mon, 25 Oct 2004 11:52:25 +0200 jetty (5.0.0-1) unstable; urgency=low * New upstream release. -- Philipp Meier Thu, 16 Sep 2004 00:40:41 +0200 jetty (4.2.22-2) unstable; urgency=low * New upstream release. * Changed mantainer email. -- Philipp Meier Wed, 25 Aug 2004 18:14:56 +0200 jetty (4.2.21-1) unstable; urgency=low * New upstream release. -- Philipp Meier Mon, 23 Aug 2004 15:23:25 +0200 jetty (4.2.19-1) unstable; urgency=high * New upstream release. * Fixed DOS attack problem. -- Philipp Meier Fri, 19 Mar 2004 17:55:45 +0100 jetty (4.2.18-1) unstable; urgency=low * New upstream release. * Package description of jetty-extra lists the extensions provided. Closes: #232824 -- Philipp Meier Mon, 1 Mar 2004 13:54:01 +0100 jetty (4.2.15-1) unstable; urgency=low * Adds missing javadoc to /usr/share/doc/ * Removes invalid libxdoclet-java from Build-Depends. * Fixed clean target in upstreams extra build file. Building jetty twice from the debianized source should work now. -- Philipp Meier Thu, 15 Jan 2004 14:00:13 +0100 jetty (4.2.15) unstable; urgency=low * New upstream release. * New additional package jetty-extra. * Updated standards version from 3.5.10 to 3.6.0 * Build target directory are no longer in debian because the customization of the build process does not really pay off. -- Philipp Meier Wed, 14 Jan 2004 14:00:01 +0100 jetty (4.2.12-2) unstable; urgency=low * Fixes start.config to make jetty run with kaffe. * Updated standards version from 3.5.8 to 3.5.10. -- Philipp Meier Fri, 29 Aug 2003 14:43:40 +0200 jetty (4.2.12-1) unstable; urgency=low * New upstream release. -- Philipp Meier Tue, 12 Aug 2003 14:07:56 +0200 jetty (4.2.11-7) unstable; urgency=low * Adds alternative dependency on j2sdk1.4. * Fixes typos in debian/TODO. * Adds ant to classpath because jasper needs it. -- Philipp Meier Thu, 7 Aug 2003 20:34:19 +0200 jetty (4.2.11-6) unstable; urgency=low * Removes DH_VERBOSE from debian/rules. * /etc/jetty will be removed on purge. * Add build-dependency on j2sdk1.4. -- Philipp Meier Wed, 23 Jul 2003 15:38:05 +0200 jetty (4.2.11-5) unstable; urgency=low * Fix for /etc/default/jetty which was misplaced. * Fixes messed-up corrections for javadoc tags. Introduced before. -- Philipp Meier Wed, 23 Jul 2003 01:11:42 +0200 jetty (4.2.11-4) unstable; urgency=low * Jetty depends on j2re1.4 until build process of jetty with java < 1.4 works. * Fixes in build process. -- Philipp Meier Thu, 17 Jul 2003 12:56:14 +0200 jetty (4.2.11-3) unstable; urgency=low * Creates /usr/share/java/webapps if necessary. * Not longer uses symlinks in ext but a debianized start.config. * Changed to multiline logging. * Removed demo webapps and provides a preliminary debian jetty root. * Fixes /etc/defaults/jetty to be /etc/default/jetty. -- Philipp Meier Thu, 17 Jul 2003 12:56:03 +0200 jetty (4.2.11-2) unstable; urgency=low * Adds build dependencies on libmx4j-java and iblog4j-java. * Removes comment about "Tomcat 4" from /etc/jetty.init. * Renamed debian/{pre,post}{inst,rm} to debian/jetty.* * Enables javac.debug to provide useful stackstraces. -- Philipp Meier Tue, 15 Jul 2003 21:50:36 +0200 jetty (4.2.11-1) unstable; urgency=low * Initial Release. -- Philipp Meier Mon, 14 Jul 2003 13:21:36 +0200 debian/control0000644000000000000000000000612112250271172010570 0ustar Source: jetty8 Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Jakub Adam Build-Depends: debhelper (>= 7), cdbs (>> 0.4.5.3), default-jdk, ant-optional, maven-repo-helper, javahelper, maven-debian-helper, libbuild-helper-maven-plugin-java, libgnumail-java (>= 1.1.2-7), junit, libtomcat7-java (>= 7.0.28), default-jdk-doc, libmaven-bundle-plugin-java, libmockito-java, glassfish-jmac-api (>= 1:2.1.1-b31g-2), libgeronimo-jta-1.1-spec-java, libjstl1.1-java, libservlet3.0-java (>= 7.0.40-2), libmaven-javadoc-plugin-java Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-java/jetty8.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/jetty8.git Homepage: http://jetty.mortbay.com/ Package: libjetty8-java Architecture: all Depends: ${misc:Depends}, libservlet3.0-java Suggests: jetty8, libjetty8-java-doc Description: Java servlet engine and webserver -- core libraries Jetty is an Open Source HTTP Servlet Server written in 100% Java. It is designed to be light weight, high performance, embeddable, extensible and flexible, thus making it an ideal platform for serving dynamic HTTP requests from any Java application. Package: libjetty8-java-doc Section: doc Architecture: all Depends: ${misc:Depends} Recommends: default-jdk-doc, libgnumail-java-doc, libservlet2.5-java-doc Suggests: libjetty-java Description: Javadoc for the Jetty API Jetty is an Open Source HTTP Servlet Server written in 100% Java. It is designed to be light weight, high performance, embeddable, extensible and flexible, thus making it an ideal platform for serving dynamic HTTP requests from any Java application. . This package contains the Javadoc for libjetty-java. Package: libjetty8-extra-java Architecture: all Depends: ${misc:Depends}, libjetty8-java (>= ${source:Version}), libtomcat7-java (>= 7.0.28), libasm3-java, libgnumail-java, libjakarta-taglibs-standard-java, libservlet3.0-java, libjstl1.1-java Suggests: jetty8 Description: Java servlet engine and webserver -- extra libraries Jetty is an Open Source HTTP Servlet Server written in 100% Java. It is designed to be light weight, high performance, embeddable, extensible and flexible, thus making it an ideal platform for serving dynamic HTTP requests from any Java application. The extra libraries include jetty-management, jetty-naming, jetty-servlet-tester, jetty-ajp, jetty-java5-threadpool, jetty-client, jetty-rewrite-handler, jetty-plus, jetty-annotations Package: jetty8 Architecture: all Depends: ${misc:Depends}, libjetty8-java (>= ${source:Version}), adduser, apache2-utils, default-jre-headless | java5-runtime-headless | java6-runtime-headless Suggests: libjetty8-extra-java (>= ${source:Version}), libjetty8-java-doc (>= ${source:Version}) Description: Java servlet engine and webserver Jetty is an Open Source HTTP Servlet Server written in 100% Java. It is designed to be light weight, high performance, embeddable, extensible and flexible, thus making it an ideal platform for serving dynamic HTTP requests from any Java application. debian/copyright0000644000000000000000000010271212250271172011123 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Jetty Files: * Copyright: 2006-2011, Mort Bay Consulting Pty. Ltd. License: Apache-2.0 or EPL-1.0 Files: jetty-client/src/test/java/org/eclipse/jetty/client/Http100ContinueTest.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/MockAppProvider.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBindingTest.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCyclePathCollector.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentManagerLifeCyclePathTest.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/WebAppProviderTest.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderStartupTest.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/providers/ScanningAppProviderRuntimeUpdatesTest.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/test/XmlConfiguredJetty.java jetty-deploy/src/test/java/org/eclipse/jetty/deploy/AppLifeCycleTest.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardUndeployer.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStopper.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardDeployer.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/OrderedGroupBinding.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/StandardStarter.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/GlobalWebappConfigBinding.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/bindings/DebugBinding.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/util/FileID.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ScanningAppProvider.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppLifeCycle.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Path.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/GraphOutputDot.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Graph.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Node.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/graph/Edge.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/App.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/DeploymentManager.java jetty-deploy/src/main/java/org/eclipse/jetty/deploy/AppProvider.java jetty-http/src/test/java/org/eclipse/jetty/http/HttpURITest.java jetty-http/src/main/java/org/eclipse/jetty/http/gzip/GzipStream.java jetty-http/src/main/java/org/eclipse/jetty/http/gzip/GzipResponseWrapper.java jetty-jmx/src/test/java/org/eclipse/jetty/jmx/ConnectorServerTest.java jetty-monitor/src/test/java/org/eclipse/jetty/monitor/AttrEventTriggerTest.java jetty-monitor/src/test/java/org/eclipse/jetty/monitor/ThreadMonitorTest.java jetty-monitor/src/test/java/org/eclipse/jetty/monitor/RequestCounter.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanOrEqualToAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/GreaterThanOrEqualToAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/OrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/EqualToAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeInclAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AndEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/RangeAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/AggregateEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/triggers/LessThanAttrEventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/JMXMonitor.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorInfo.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/thread/ThreadMonitorException.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventState.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ServiceConnection.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventNotifier.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/LoggingNotifier.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorAction.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/EventTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/MonitorTask.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/NotifierGroup.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/SimpleAction.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/jmx/ConsoleNotifier.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTrigger.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorAction.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/integration/JavaMonitorTools.java jetty-monitor/src/main/java/org/eclipse/jetty/monitor/ThreadMonitor.java jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyTest.java jetty-policy/src/test/java/org/eclipse/jetty/policy/JettyPolicyRuntimeTest.java jetty-policy/src/test/java/org/eclipse/jetty/policy/PolicyContextTest.java jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyBlock.java jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/PolicyFileScanner.java jetty-policy/src/main/java/org/eclipse/jetty/policy/loader/DefaultPolicyLoader.java jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyException.java jetty-policy/src/main/java/org/eclipse/jetty/policy/PolicyContext.java jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicyConfigurator.java jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PrincipalEntry.java jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/PermissionEntry.java jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/KeystoreEntry.java jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/GrantEntry.java jetty-policy/src/main/java/org/eclipse/jetty/policy/entry/AbstractEntry.java jetty-policy/src/main/java/org/eclipse/jetty/policy/JettyPolicy.java jetty-rewrite/src/test/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRuleTest.java jetty-rewrite/src/main/java/org/eclipse/jetty/rewrite/handler/RedirectRegexRule.java jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SpnegoAuthenticator.java jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoUserIdentity.java jetty-security/src/main/java/org/eclipse/jetty/security/SpnegoLoginService.java jetty-server/src/test/java/org/eclipse/jetty/server/ConnectorCloseTestBase.java jetty-server/src/test/java/org/eclipse/jetty/server/InclusiveByteRangeTest.java jetty-server/src/test/java/org/eclipse/jetty/server/SelectChannelConnectorCloseTest.java jetty-server/src/test/java/org/eclipse/jetty/server/SocketConnectorCloseTest.java jetty-server/src/main/java/org/eclipse/jetty/server/session/jmx/AbstractSessionManagerMBean.java jetty-server/src/main/java/org/eclipse/jetty/server/handler/GzipHandler.java jetty-server/src/main/java/org/eclipse/jetty/server/handler/jmx/AbstractHandlerMBean.java jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/ServletMappingMBean.java jetty-servlet/src/main/java/org/eclipse/jetty/servlet/jmx/FilterMappingMBean.java jetty-start/src/test/java/org/eclipse/jetty/start/ConfigTest.java jetty-start/src/test/java/org/eclipse/jetty/start/VersionTest.java jetty-start/src/main/java/org/eclipse/jetty/start/FilenameComparator.java jetty-start/src/main/java/org/eclipse/jetty/start/JarVersion.java jetty-start/src/main/java/org/eclipse/jetty/start/Config.java jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509KeyManager.java jetty-util/src/main/java/org/eclipse/jetty/util/ssl/AliasedX509ExtendedKeyManager.java jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateUtils.java jetty-util/src/main/java/org/eclipse/jetty/util/security/CertificateValidator.java jetty-util/src/main/java/org/eclipse/jetty/util/log/JettyAwareLogger.java jetty-util/src/main/java/org/eclipse/jetty/util/log/JavaUtilLog.java test-jetty-webapp/src/test/java/org/eclipse/jetty/DispatchServletTest.java tests/test-webapps/test-webapp-rfc2616/src/main/java/org/eclipse/jetty/tests/webapp/HttpMethodsServlet.java tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616NIOHttpsTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BaseTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/rfcs/RFC2616BIOHttpsTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/StringUtil.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/EchoHandler.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTester.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocket.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTester.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpResponseTesterTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpTesting.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpSocketImpl.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpRequestTesterTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/rawhttp/HttpsSocketImpl.java tests/test-integration/src/test/java/org/eclipse/jetty/test/support/TestableJettyServer.java tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JavaMonitorIntegrationTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/ProgramConfigTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/JmxServiceTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/monitor/XmlConfigTest.java tests/test-integration/src/test/java/org/eclipse/jetty/test/DefaultHandlerTest.java Copyright: Webtide LLC License: Apache-2.0 or EPL-1.0 Files: jetty-io/src/main/java/org/eclipse/jetty/io/NetworkTrafficListener.java jetty-io/src/main/java/org/eclipse/jetty/io/nio/NetworkTrafficSelectChannelEndPoint.java jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSessionManager.java jetty-nosql/src/main/java/org/eclipse/jetty/nosql/NoSqlSession.java jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionManager.java jetty-nosql/src/main/java/org/eclipse/jetty/nosql/mongodb/MongoSessionIdManager.java jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarURLConnection.java jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/internal/WarBundleManifestGenerator.java jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlStreamHandler.java jetty-osgi/jetty-osgi-boot-warurl/src/main/java/org/eclipse/jetty/osgi/boot/warurl/WarUrlActivator.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiWebappConstants.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/ServerInstanceWrapper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/IManagedJettyServerRegistry.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/DefaultJettyAtJettyHomeHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/JettyServersManagedFactory.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/serverfactory/JettyServerServiceTracker.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloaderWithInsertedJettyClassloader.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/jsp/TldLocatableURLClassloader.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/OSGiWebappClassLoader.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/JettyContextHandlerServiceTracker.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/LibExtClassLoaderHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/WebBundleTrackerCustomizer.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/IWebBundleDeployerHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/internal/webapp/WebBundleDeployerHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleClassLoaderHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/WebappRegistrationCustomizer.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultBundleClassLoaderHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/PackageAdminServiceTracker.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/BundleFileLocatorHelper.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/JettyBootstrapActivator.java jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/OSGiServerConstants.java jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootWithJsp.java jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/boot/TestJettyOSGiBootCore.java jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/WebappRegistrationCustomizerImpl.java jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jasper/PluggableWebAppRegistrationCustomizerImpl.java jetty-osgi/jetty-osgi-boot-jsp/src/main/java/org/eclipse/jetty/osgi/boot/jsp/FragmentActivator.java jetty-server/src/test/java/org/eclipse/jetty/server/NetworkTrafficListenerTest.java jetty-server/src/main/java/org/eclipse/jetty/server/nio/NetworkTrafficSelectChannelConnector.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD00Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketClientTest.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestClient.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketRedeployTest.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadRFC6455Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/SafariWebsocketDraft0Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketLoadD08Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD06Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorRFC6455Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketCommTest.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD08Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketOverSSLTest.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageRFC6455Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD08Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserD06Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketMessageD00Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/TestServer.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketGeneratorD06Test.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/MessageSender.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/WebSocketCaptureServlet.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/CaptureSocket.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/helper/SafariD00.java jetty-websocket/src/test/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455Test.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnection.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/Extension.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD06.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/DeflateFrameExtension.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FragmentExtension.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/RandomMaskGen.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClientFactory.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionRFC6455.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/IdentityExtension.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/ZeroMaskGen.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD08.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/FixedMaskGen.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnection.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/AbstractExtension.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServletConnectionD00.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketClient.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/MaskGen.java tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/MongoTest.java tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/SessionSavingValueTest.java tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/LastAccessTimeTest.java tests/test-sessions/test-mongodb-sessions/src/test/java/org/eclipse/jetty/nosql/mongodb/RemoveSessionTest.java Copyright: 2009-2011, Intalio, Inc License: Apache-2.0 or EPL-1.0 Files: jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGenerator.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParser.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD06.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD08.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketServlet.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketConnectionD08.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserRFC6455.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketFactory.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD06.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD00.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketGeneratorD00.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketBuffers.java jetty-websocket/src/main/java/org/eclipse/jetty/websocket/WebSocketParserD08.java Copyright: 2010, Mort Bay Consulting Pty. Ltd 2011, Intalio, Inc License: Apache-2.0 or EPL-1.0 Files: examples/test-webapp/src/main/webapp/WEB-INF/tags/panel.tag jetty-servlet/src/test/java/org/eclipse/jetty/servlet/HolderTest.java Copyright: 2002, The Apache Software Foundation License: Apache-2.0 Files: jetty-util/src/main/java/org/eclipse/jetty/util/security/UnixCrypt.java Copyright: 1996, Aki Yoshida 2001, Iris Van den Broeke, Daniel Deville License: other Permission to use, copy, modify and distribute this software for non-commercial or commercial purposes and without fee is hereby granted provided that this copyright notice appears in all copies. Files: debian/* Copyright: 2003, Philipp Meier 2009, Ludovic Claude 2009, David Yu 2012, Debian Java Maintainers License: Apache-2.0 License: Apache-2.0 On Debian GNU/Linux system you can find the complete text of the Apache 2.0 license in '/usr/share/common-licenses/Apache-2.0'. License: EPL-1.0 Eclipse Public License - v 1.0 . THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. . 1. DEFINITIONS . "Contribution" means: . a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor: . i) changes to the Program, and . ii) additions to the Program; . where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. . "Contributor" means any person or entity that distributes the Program. . "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. . "Program" means the Contributions distributed in accordance with this Agreement. . "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. . 2. GRANT OF RIGHTS . a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. . b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. . c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. . d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. . 3. REQUIREMENTS . A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: . a) it complies with the terms and conditions of this Agreement; and . b) its license agreement: . i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; . ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; . iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and . iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. . When the Program is made available in source code form: . a) it must be made available under this Agreement; and . b) a copy of this Agreement must be included with each copy of the Program. . Contributors may not remove or alter any copyright notices contained within the Program. . Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. . 4. COMMERCIAL DISTRIBUTION . Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. . For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. . 5. NO WARRANTY . EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. . 6. DISCLAIMER OF LIABILITY . EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 7. GENERAL . If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. . If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. . All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. . Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. . This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. debian/libjetty8-extra-java.links0000644000000000000000000000153312250271172014207 0ustar usr/share/tomcat7/lib/annotations-api.jar usr/share/jetty8/lib/annotations/javax.annotation.jar usr/share/java/asm3.jar usr/share/jetty8/lib/annotations/org.objectweb.asm.jar usr/share/java/asm3-commons.jar usr/share/jetty8/lib/annotations/org.objectweb.asm.commons.jar usr/share/java/gnumail.jar usr/share/jetty8/lib/jndi/javax.mail.jar usr/share/java/jsp-api-2.2.jar usr/share/jetty8/lib/jsp/javax.servlet.jsp.jar usr/share/tomcat7/lib/jasper.jar usr/share/jetty8/lib/jsp/org.apache.jasper.jar usr/share/java/jstl1.1.jar usr/share/jetty8/lib/jsp/javax.servlet.jsp.jstl.jar usr/share/java/el-api-2.2.jar usr/share/jetty8/lib/jsp/javax.el.jar usr/share/java/standard.jar usr/share/jetty8/lib/jsp/org.apache.taglibs.standard.jar debian/rules0000755000000000000000000000503412250271172010247 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/javahelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java DEB_MAVEN_INSTALL_TARGET := DEB_MAVEN_INSTALL_DOC_TARGET := DEB_MAVEN_DOC_TARGET := javadoc:aggregate DEB_MAVEN_ARGS := -P-aggregates -P-osgi LIBJETTY_JARS := continuation deploy http io jaspi jmx jsp nested \ overlay-deployer policy rewrite security server servlet servlets start util \ webapp websocket xml LIBJETTY_EXTRA_JARS := ajp annotations client jndi monitor plus # Some java sources contain UTF-8 characters, build fails with C locale export LC_ALL=C.UTF-8 install/libjetty8-java:: libjetty8-java-mh-install version=$(wildcard debian/libjetty8-java/usr/share/maven-repo/org/eclipse/jetty/jetty-server/8*); \ version=$$(basename $$version); \ for lib in $(LIBJETTY_JARS); do \ mh_installjar -plibjetty8-java --java-lib --usj-name=jetty8-$$lib \ jetty-$$lib/pom.xml jetty-$$lib/target/jetty-$$lib-*.jar; \ if [ $$lib = "start" ]; then \ continue; \ fi; \ jar=jetty-$$lib-$$version.jar; \ jar8=jetty8-$$lib-$$version.jar; \ dh_link -plibjetty8-java usr/share/java/$$jar8 usr/share/jetty8/lib/$$jar; \ done; \ dh_link -plibjetty8-java usr/share/java/jetty8-start-$$version.jar usr/share/jetty8/start.jar install/libjetty8-extra-java:: libjetty8-extra-java-mh-install version=$(wildcard debian/libjetty8-extra-java/usr/share/maven-repo/org/eclipse/jetty/jetty-ajp/8*); \ version=$$(basename $$version); \ for lib in $(LIBJETTY_EXTRA_JARS); do \ mh_installjar -plibjetty8-extra-java --java-lib --usj-name=jetty8-$$lib \ jetty-$$lib/pom.xml jetty-$$lib/target/jetty-$$lib-*.jar; \ if [ $$lib = "monitor" ]; then \ continue; \ fi; \ jar=jetty-$$lib-$$version.jar; \ jar8=jetty8-$$lib-$$version.jar; \ dh_link -plibjetty8-extra-java usr/share/java/$$jar8 usr/share/jetty8/lib/$$jar; \ done; \ dh_link -plibjetty8-extra-java usr/share/java/jetty8-monitor-$$version.jar usr/share/jetty8/lib/monitor/jetty-monitor.jar; \ # Add also test-jetty-servlet \ mh_installjar -plibjetty8-extra-java --java-lib --usj-name=jetty8-test-servlet \ test-jetty-servlet/pom.xml test-jetty-servlet/target/test-jetty-servlet-*.jar; \ dh_link -plibjetty8-extra-java usr/share/java/jetty8-test-servlet-$$version.jar \ usr/share/jetty8/lib/test-jetty-servlet-$$version.jar; install/libjetty8-java-doc:: mv target/site/apidocs target/site/api dh_install -p libjetty8-java-doc %-mh-install: mh_install -p$(patsubst %-mh-install,%,$@)