diff --git a/ccm-auth-http/debian/ccm-auth-http.dirs b/ccm-auth-http/debian/ccm-auth-http.dirs deleted file mode 100755 index 1d9e58228..000000000 --- a/ccm-auth-http/debian/ccm-auth-http.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-auth-http-6.3.0 diff --git a/ccm-auth-http/debian/ccm-build.sh b/ccm-auth-http/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-auth-http/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-auth-http/debian/ccm-clean.sh b/ccm-auth-http/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-auth-http/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-auth-http/debian/ccm-config.sh b/ccm-auth-http/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-auth-http/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-auth-http/debian/ccm-disperse.sh b/ccm-auth-http/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-auth-http/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-auth-http/debian/ccm-install.sh b/ccm-auth-http/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-auth-http/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-auth-http/debian/ccm-settings-run.sh b/ccm-auth-http/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-auth-http/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-auth-http/debian/ccm-settings.sh b/ccm-auth-http/debian/ccm-settings.sh deleted file mode 100755 index a07696a21..000000000 --- a/ccm-auth-http/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-auth-http -version=6.3.0 -appname=ccm-auth-http -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-auth-http/debian/changelog b/ccm-auth-http/debian/changelog deleted file mode 100755 index afeef976a..000000000 --- a/ccm-auth-http/debian/changelog +++ /dev/null @@ -1,64 +0,0 @@ -ccm-auth-http (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:54 +0000 - -ccm-auth-http (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:29:57 +0000 - -ccm-auth-http (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:49 +0000 - -ccm-auth-http (1.4.1-5) unstable; urgency=low - - * Depend on "j2sdk1.4 | java2-compiler" rather than just java2-compiler - * Depend on "j2re1.4 | java2-runtime" rather than just java2-runtime - * Change maintainer to the mailing list and add david@runtime-collective.com - to the uploaders - - -- David Pashley Tue, 18 Jan 2005 16:56:44 +0000 - -ccm-auth-http (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-auth-http (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-auth-http (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-auth-http (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-auth-http/debian/compat b/ccm-auth-http/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-auth-http/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-auth-http/debian/config b/ccm-auth-http/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-auth-http/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-auth-http/debian/control b/ccm-auth-http/debian/control deleted file mode 100755 index 794941a4a..000000000 --- a/ccm-auth-http/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-auth-http -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core -Standards-Version: 3.6.1 - -Package: ccm-auth-http -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core -Description: APLAWS: NTLM authentication module. - This package contains the Auth HTTP application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-auth-http-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-auth-http - Documentation for ccm-auth-http. Provides the JavaDoc API documentation. diff --git a/ccm-auth-http/debian/copyright b/ccm-auth-http/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-auth-http/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-auth-http/debian/postinst b/ccm-auth-http/debian/postinst deleted file mode 100755 index e1f0cee8c..000000000 --- a/ccm-auth-http/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-auth-http -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-auth-http/debian/postrm b/ccm-auth-http/debian/postrm deleted file mode 100755 index ec6ad041a..000000000 --- a/ccm-auth-http/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-auth-http -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-auth-http/debian/prerm b/ccm-auth-http/debian/prerm deleted file mode 100755 index a112d3367..000000000 --- a/ccm-auth-http/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-auth-http -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-auth-http/debian/rules b/ccm-auth-http/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-auth-http/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-auth-http/debian/templates b/ccm-auth-http/debian/templates deleted file mode 100755 index 560a1a42d..000000000 --- a/ccm-auth-http/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-auth-http -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-auth-http". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-auth-http". diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc.install b/ccm-bookmarks/debian/ccm-bookmarks-doc.install deleted file mode 100755 index 9f2dae7c5..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc.install +++ /dev/null @@ -1,60 +0,0 @@ -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html -var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html -var/www/html/ccm-bookmarks-6.3.0/api/index.html -var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html -var/www/html/ccm-bookmarks-6.3.0/api/packages.html -var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css -var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html -var/www/html/ccm-bookmarks-6.3.0/api/package-list -var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html -var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html -var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html -var/www/html/ccm-bookmarks-6.3.0/api/index-all.html -var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html -var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html -var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif -var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/DEBIAN/control b/ccm-bookmarks/debian/ccm-bookmarks-doc/DEBIAN/control deleted file mode 100755 index 9afa8286f..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-bookmarks-doc -Version: 6.3.0-4 -Section: contrib/web -Priority: optional -Architecture: all -Depends: ccm-tools -Installed-Size: 800 -Maintainer: Runtime Packaging -Source: ccm-bookmarks -Description: Documentation for ccm-bookmarks - Documentation for ccm-bookmarks. Provides the JavaDoc API documentation. diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/DEBIAN/md5sums b/ccm-bookmarks/debian/ccm-bookmarks-doc/DEBIAN/md5sums deleted file mode 100755 index 3c5b1dafd..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/DEBIAN/md5sums +++ /dev/null @@ -1,62 +0,0 @@ -ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-bookmarks-doc/copyright -42d1154453e3846025aeadd00c2954fd usr/share/doc/ccm-bookmarks-doc/changelog.Debian.gz -6857df2f948afecb5c9f2de918b3c20e var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html -fd97096d280b4f2bdffde9b31e6a105a var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html -8f47aada9a4a58f205b51b809660e882 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html -db474c3a0431becc6bb7ef13611d8604 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html -bd3117ec312598c409a555f69c87af38 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html -7b76ac01bf241fcc2c306b821c78b2fd var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html -318a2f85dc4e07c2ec94215b4b944951 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html -98147fccab504c2abed1f403da1a1b8a var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html -df3486d9ec62f2c1eb9a6e038a746b28 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html -0f26bc5c93f045ead11ecf013b2da0ac var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html -ff102cdfce7ec4e342c67a0125012d83 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html -de968b2c06f16d4a6fc01e73fac6c4ca var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html -b5c8f1fe1fdefb08f41be6ec2b76fdad var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html -1f26d262e05179e9266f0f1c055e15d5 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html -ddf1b710d8ea9ae70c67485ff3d59bcc var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html -79d0c2264d9b2bfb386b0a40bfccff37 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html -0ad9b28612e8b8ed259f9dc24c7965c9 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html -1e58febd47a561a11a18cc320f1d63de var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html -36ae1e3e058789a2d9961d51bbf5f523 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html -4bd2127df1a7e9191572acae9a4f7855 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html -2d2a712e1eb9493f378db8ff2d3c7391 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html -53e44500df8a4f3012a5fc75526770a9 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html -fb920e5e10a639ba919eeb0b3b7343bc var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html -f41446ab0ec54a1ce4be17b867f3bb8b var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html -9dddc0808ea179434cb9141f585bfec4 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html -7dadc773e35da6144935d2a2aff0cd17 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html -68cf5e124a9ebfbac3899830ca11b98f var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html -ee96139d6efb7c8abe34d88fecd55d73 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html -53a2ddaec9793e20cb4decee8e20a8ae var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html -daad5cd72d6d7646ac754e5b0dcffc30 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html -2605e0ee42fb46ff1d00609803cda906 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html -3d1d1e977c21631ea9ca78d60301ca95 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html -d073f79fd041e1d43289c021d7bf7be1 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html -0eee3964e0e2fd8cd868140ae45941b0 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html -b1b49763b245f121f3e0460a013442a8 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html -be3621303c9ed2188af12197a0d9e43c var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html -5e47b5f8be21c6f551463aa7a88d7e71 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html -fc30ccb963f006dcc4bc3bc4199b8edb var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html -81edbedb8ed254bc63aa69039fd70b2d var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html -fc3f5cc47407f5d773bcb29a3704377a var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html -adc8431164935364c407a45ba80a959d var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html -b7037677e68aef6ac5948809fd8ffc57 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html -96ec265ff9c891f2d840e2748c2e3171 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html -130b3fdf983e6e607eb59bbe6558764d var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html -a85920f7f061a0f11fa5b4870348e195 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html -e3e543511de03f2300c33cadddd1f713 var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html -153761ce7838dee2691e151ba8009589 var/www/html/ccm-bookmarks-6.3.0/api/index.html -856baa6014037d3131ad0e733f926bed var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html -a2872849332aaabfe8bdeb5d5ac14236 var/www/html/ccm-bookmarks-6.3.0/api/packages.html -8cc88314fce0cc52e57f9ccb2cb8436e var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css -94d4af7a5db365077f921ac3d36c55aa var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html -a5d382e2c793f463d48bc4547e69fa40 var/www/html/ccm-bookmarks-6.3.0/api/package-list -2a917f1fc8be4618a841bac3fcb6ee57 var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html -e02550c46ba9c8263ae9c69c406706b0 var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html -a5d069a5f0b99b845def8b2ffc6462ca var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html -c974cce25a33a8fcc97b95966685fa66 var/www/html/ccm-bookmarks-6.3.0/api/index-all.html -42ca47cca7242eaa9b06421e0c6196c8 var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html -a4b1c6bbd45f34fab20c76a6453f7907 var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html -220f4eda0bd49915699315f18b8b03cf var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif -66c650a493d06519a624c83ef7fa803e var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/usr/share/doc/ccm-bookmarks-doc/changelog.Debian.gz b/ccm-bookmarks/debian/ccm-bookmarks-doc/usr/share/doc/ccm-bookmarks-doc/changelog.Debian.gz deleted file mode 100755 index 5c1e56d6b..000000000 Binary files a/ccm-bookmarks/debian/ccm-bookmarks-doc/usr/share/doc/ccm-bookmarks-doc/changelog.Debian.gz and /dev/null differ diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/usr/share/doc/ccm-bookmarks-doc/copyright b/ccm-bookmarks/debian/ccm-bookmarks-doc/usr/share/doc/ccm-bookmarks-doc/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/usr/share/doc/ccm-bookmarks-doc/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html deleted file mode 100755 index 38a31b409..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/allclasses-frame.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - -All Classes (Bookmarks API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
ApplicationAuthenticationListener -
-Bookmark -
-BookmarkApplication -
-BookmarkBasePage -
-BookmarkCollection -
-BookmarkDispatcher -
-BookmarkEditPane -
-BookmarkPortlet -
-GlobalizationUtil -
-Initializer -
-
- - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html deleted file mode 100755 index 12bd75e17..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/allclasses-noframe.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - -All Classes (Bookmarks API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
ApplicationAuthenticationListener -
-Bookmark -
-BookmarkApplication -
-BookmarkBasePage -
-BookmarkCollection -
-BookmarkDispatcher -
-BookmarkEditPane -
-BookmarkPortlet -
-GlobalizationUtil -
-Initializer -
-
- - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html deleted file mode 100755 index 9f3c0ca31..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ApplicationAuthenticationListener.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - -ApplicationAuthenticationListener (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks -
-Class ApplicationAuthenticationListener

-
-java.lang.Object
-  extended bycom.arsdigita.ui.login.UserAuthenticationListener
-      extended bycom.arsdigita.bookmarks.ApplicationAuthenticationListener
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.RequestListener
-
-
-
-
public class ApplicationAuthenticationListener
extends com.arsdigita.ui.login.UserAuthenticationListener
implements com.arsdigita.bebop.event.RequestListener
- -

-A RequestListener that verifies the user - has a given privilege on the current Application. - - The user is redirected to ACCESS_DENIED if their is - insufficient permission. - - XXX Permissions will be incorporated in December. This is - temporary for use in our engineering production server until. - that time. -

- -

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
-  - - - - - - - - - - -
-Constructor Summary
ApplicationAuthenticationListener(String privilegeName) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voiddenyRequest(com.arsdigita.bebop.PageState state) - -
-          Action performed if authentication failed.
- StringgetRequiredPrivilege() - -
-           
- voidpageRequested(com.arsdigita.bebop.event.RequestEvent event) - -
-          Checks whether the user is logged in.
- voidsetRequiredPrivilege(String privilegeName) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.ui.login.UserAuthenticationListener
getUser, isLoggedIn
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-ApplicationAuthenticationListener

-
-public ApplicationAuthenticationListener(String privilegeName)
-
-
- - - - - - - - -
-Method Detail
- -

-setRequiredPrivilege

-
-public void setRequiredPrivilege(String privilegeName)
-
-
-
-
-
-
-
-
-
- -

-getRequiredPrivilege

-
-public String getRequiredPrivilege()
-
-
-
-
-
-
-
-
-
- -

-pageRequested

-
-public void pageRequested(com.arsdigita.bebop.event.RequestEvent event)
-
-
Checks whether the user is logged in. If not, redirects the client - to the login page. -

-

-
Specified by:
pageRequested in interface com.arsdigita.bebop.event.RequestListener
-
-
-
-
-
-
- -

-denyRequest

-
-public void denyRequest(com.arsdigita.bebop.PageState state)
-
-
Action performed if authentication failed. Override this to - perform a perform a specific action after the authentication - check. -

-

-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html deleted file mode 100755 index e086805a1..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/Bookmark.html +++ /dev/null @@ -1,827 +0,0 @@ - - - - - - -Bookmark (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks -
-Class Bookmark

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.bookmarks.Bookmark
-
-
-
-
public class Bookmark
extends com.arsdigita.kernel.ACSObject
- -

-A bookmark. -

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-          The type of the DataObject - that stands behind this DomainObject.
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE, versionId
-  - - - - - - - - - - - - - -
-Constructor Summary
Bookmark(com.arsdigita.persistence.DataObject dataObject) - -
-           
Bookmark(String name, - String URLstring) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-           
- StringgetAuthor() - -
-          Get the original creator's name for this Bookmark.
-protected  StringgetBaseDataObjectType() - -
-           
- BookmarkApplicationgetBookmarkApplication() - -
-           
- StringgetCreateDate() - -
-          Get the Creation Date of this Bookmark.
- StringgetDescription() - -
-          Get the Description of this Bookmark.
- StringgetModDate() - -
-          Get the last modification date of this Bookmark.
- StringgetName() - -
-          Get the title of this Bookmark.
- booleangetNewWindow() - -
-           
- StringgetNumVisits() - -
-          Get the number of times this Bookmark has been visited, - and return value as a String.
- intgetSortKey() - -
-          Get the sort key of this Bookmark.
- StringgetURL() - -
-          Get the URL of this Bookmark.
-static BookmarkCollectionretrieveAllBookmarks() - -
-           
-static BookmarkretrieveBookmark(BigDecimal bmrkID) - -
-          Retrieve an existing Bookmark based on an ID.
-static BookmarkretrieveBookmark(com.arsdigita.persistence.DataObject dataObject) - -
-          Retrieve an existing Bookmark based on a data object.
-static BookmarkretrieveBookmark(com.arsdigita.persistence.OID oid) - -
-          Retrieve an existing Bookmark based on an OID.
- voidsetBookmarkApplication(BookmarkApplication bmrkapp) - -
-           
- voidsetDescription(String desc) - -
-          Set the description for this Bookmark.
- voidsetModDate() - -
-          Set the mod date for this Bookmark.
- voidsetName(String name) - -
-          Set the title of this Bookmark.
- voidsetNewWindow(boolean newWindow) - -
-           
- voidsetSortKey(int sortKey) - -
-           
- voidsetURL(String url) - -
-          Set the URL of this Bookmark.
- voidvisitsPlusPlus() - -
-          Increment the counter for number of visits to this Bookmark.
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, beforeSave, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getDisplayName, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
The type of the DataObject - that stands behind this DomainObject. -

-

-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Bookmark

-
-public Bookmark(com.arsdigita.persistence.DataObject dataObject)
-
-
-
- -

-Bookmark

-
-public Bookmark(String name,
-                String URLstring)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-retrieveBookmark

-
-public static Bookmark retrieveBookmark(BigDecimal bmrkID)
-
-
Retrieve an existing Bookmark based on an ID. -

-

-
-
-
-
- -

-retrieveBookmark

-
-public static Bookmark retrieveBookmark(com.arsdigita.persistence.DataObject dataObject)
-
-
Retrieve an existing Bookmark based on a data object. -

-

-
Parameters:
dataObject - the data object of the Bookmark to retrieve. -
Returns:
an existing Bookmark. Note that the return value may be - null if no Bookmark data object for this ID exists.
-
-
-
- -

-retrieveBookmark

-
-public static Bookmark retrieveBookmark(com.arsdigita.persistence.OID oid)
-
-
Retrieve an existing Bookmark based on an OID. -

-

-
Parameters:
oid - the OID of the Bookmark to retrieve.
-
-
-
- -

-getBookmarkApplication

-
-public BookmarkApplication getBookmarkApplication()
-
-
-
-
-
-
- -

-setBookmarkApplication

-
-public void setBookmarkApplication(BookmarkApplication bmrkapp)
-
-
-
-
-
-
- -

-retrieveAllBookmarks

-
-public static BookmarkCollection retrieveAllBookmarks()
-
-
-
-
-
-
- -

-getName

-
-public String getName()
-
-
Get the title of this Bookmark. -

-

- -
Returns:
this Bookmarks title.
-
-
-
- -

-getURL

-
-public String getURL()
-
-
Get the URL of this Bookmark. -

-

-
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Get the Description of this Bookmark. -

-

-
-
-
-
- -

-getCreateDate

-
-public String getCreateDate()
-
-
Get the Creation Date of this Bookmark. -

-

-
-
-
-
- -

-getModDate

-
-public String getModDate()
-
-
Get the last modification date of this Bookmark. -

-

-
-
-
-
- -

-getNewWindow

-
-public boolean getNewWindow()
-
-
-
-
-
-
- -

-getAuthor

-
-public String getAuthor()
-
-
Get the original creator's name for this Bookmark. -

-

- -
Returns:
this portal's title.
-
-
-
- -

-getNumVisits

-
-public String getNumVisits()
-
-
Get the number of times this Bookmark has been visited, - and return value as a String. -

-

-
-
-
-
- -

-setName

-
-public void setName(String name)
-
-
Set the title of this Bookmark. -

-

-
-
-
-
- -

-setURL

-
-public void setURL(String url)
-
-
Set the URL of this Bookmark. -

-

-
-
-
-
- -

-setDescription

-
-public void setDescription(String desc)
-
-
Set the description for this Bookmark. -

-

-
-
-
-
- -

-setModDate

-
-public void setModDate()
-
-
Set the mod date for this Bookmark. -

-

-
-
-
-
- -

-setNewWindow

-
-public void setNewWindow(boolean newWindow)
-
-
-
-
-
-
- -

-visitsPlusPlus

-
-public void visitsPlusPlus()
-
-
Increment the counter for number of visits to this Bookmark. -

-

-
-
-
-
- -

-getSortKey

-
-public int getSortKey()
-
-
Get the sort key of this Bookmark. The sort key is used - to order a set of bookmarks in a particular Workspace. -

-

- -
Returns:
the bookmark sort key.
-
-
-
- -

-setSortKey

-
-public void setSortKey(int sortKey)
-
-
-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html deleted file mode 100755 index 1d96f3a57..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkApplication.html +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - -BookmarkApplication (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks -
-Class BookmarkApplication

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.web.Application
-                      extended bycom.arsdigita.bookmarks.BookmarkApplication
-
-
-
-
public class BookmarkApplication
extends com.arsdigita.web.Application
- -

-BookmarkApplication class. -

- -

-


- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.web.Application
PRIMARY_URL
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
BookmarkApplication(BigDecimal key) - -
-           
BookmarkApplication(com.arsdigita.persistence.DataObject dataObject) - -
-           
BookmarkApplication(com.arsdigita.persistence.OID oid) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static BookmarkApplicationcreate(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          Use this instead of the constructor to create new Bookmark - Application objects
- BookmarkcreateBookmark(String name, - String URLString) - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- BookmarkCollectiongetBookmarks() - -
-           
- voidnormalizeBookmarkSortKeys() - -
-           
- voidremoveBookmark(Bookmark bmrk) - -
-           
- voidswapBookmarkWithNext(Bookmark b) - -
-           
- voidswapBookmarkWithPrevious(Bookmark b) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.web.Application
afterDelete, beforeDelete, beforeSave, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
afterSave, createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-BookmarkApplication

-
-public BookmarkApplication(com.arsdigita.persistence.OID oid)
-                    throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-BookmarkApplication

-
-public BookmarkApplication(BigDecimal key)
-                    throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-BookmarkApplication

-
-public BookmarkApplication(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-create

-
-public static BookmarkApplication create(String urlName,
-                                         String title,
-                                         com.arsdigita.web.Application parent)
-
-
Use this instead of the constructor to create new Bookmark - Application objects -

-

-
-
-
-
- -

-createBookmark

-
-public Bookmark createBookmark(String name,
-                               String URLString)
-
-
-
-
-
-
- -

-removeBookmark

-
-public void removeBookmark(Bookmark bmrk)
-
-
-
-
-
-
- -

-getBookmarks

-
-public BookmarkCollection getBookmarks()
-
-
-
-
-
-
- -

-swapBookmarkWithPrevious

-
-public void swapBookmarkWithPrevious(Bookmark b)
-                              throws com.arsdigita.persistence.PersistenceException
-
-
- -
Throws: -
com.arsdigita.persistence.PersistenceException
-
-
-
- -

-swapBookmarkWithNext

-
-public void swapBookmarkWithNext(Bookmark b)
-                          throws com.arsdigita.persistence.PersistenceException
-
-
- -
Throws: -
com.arsdigita.persistence.PersistenceException
-
-
-
- -

-normalizeBookmarkSortKeys

-
-public void normalizeBookmarkSortKeys()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html deleted file mode 100755 index 5b44396f1..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkCollection.html +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - -BookmarkCollection (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks -
-Class BookmarkCollection

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainQuery
-      extended bycom.arsdigita.domain.DomainCollection
-          extended bycom.arsdigita.bookmarks.BookmarkCollection
-
-
-
All Implemented Interfaces:
com.arsdigita.persistence.DataQuery
-
-
-
-
public class BookmarkCollection
extends com.arsdigita.domain.DomainCollection
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainCollection
m_dataCollection, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainQuery
m_dataQuery
-  - - - - - - - - - - - -
-Constructor Summary
-protected BookmarkCollection(com.arsdigita.persistence.DataCollection dataCollection) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- BookmarkgetBookmark() - -
-          Get the current item as a Bookmark domain object.
- com.arsdigita.domain.DomainObjectgetDomainObject() - -
-          Get the current item as a domain object.
- BigDecimalgetID() - -
-          Get the ID for the Bookmark for the current row.
- StringgetName() - -
-          Get the name for the Bookmark for the current row.
- booleangetNewWindow() - -
-           
- StringgetURL() - -
-          Get the url for the bookmark for the current row.
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainQuery
addEqualsFilter, addFilter, addFilter, addInSubqueryFilter, addInSubqueryFilter, addNotEqualsFilter, addNotInSubqueryFilter, addOrder, addOrderWithNull, addPath, alias, clearFilter, clearOrder, close, first, get, getFilterFactory, getOption, getParameter, getPosition, getPropertyValues, getType, hasProperty, isAfterLast, isBeforeFirst, isEmpty, isFirst, isLast, last, next, previous, removeFilter, reset, rewind, setFilter, setOption, setOrder, setParameter, setRange, setRange, setReturnsLowerBound, setReturnsUpperBound, size
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkCollection

-
-protected BookmarkCollection(com.arsdigita.persistence.DataCollection dataCollection)
-
-
- - - - - - - - -
-Method Detail
- -

-getID

-
-public BigDecimal getID()
-
-
Get the ID for the Bookmark for the current row. -

-

- -
Returns:
the id of this Bookmark.
-
-
-
- -

-getDomainObject

-
-public com.arsdigita.domain.DomainObject getDomainObject()
-
-
Get the current item as a domain object. -

-

- -
Returns:
the domain object for the current row.
-
-
-
- -

-getBookmark

-
-public Bookmark getBookmark()
-
-
Get the current item as a Bookmark domain object. -

-

- -
Returns:
a Bookmark domain object.
-
-
-
- -

-getName

-
-public String getName()
-
-
Get the name for the Bookmark for the current row. -

-

- -
Returns:
the name of this bookmark.
-
-
-
- -

-getURL

-
-public String getURL()
-
-
Get the url for the bookmark for the current row. -

-

- -
Returns:
the url of this bookmark.
-
-
-
- -

-getNewWindow

-
-public boolean getNewWindow()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html deleted file mode 100755 index a0688e337..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/BookmarkDispatcher.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - -BookmarkDispatcher (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks -
-Class BookmarkDispatcher

-
-java.lang.Object
-  extended bycom.arsdigita.dispatcher.MapDispatcher
-      extended bycom.arsdigita.bebop.page.BebopMapDispatcher
-          extended bycom.arsdigita.bebop.BebopMapDispatcher
-              extended bycom.arsdigita.bookmarks.BookmarkDispatcher
-
-
-
All Implemented Interfaces:
com.arsdigita.dispatcher.Dispatcher
-
-
-
-
public class BookmarkDispatcher
extends com.arsdigita.bebop.BebopMapDispatcher
- -

-Bookmark dispatcher for both Bebop-backed and other URLs. -

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.dispatcher.MapDispatcher
com.arsdigita.dispatcher.MapDispatcher.ParseConfigHandler
-  - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
versionId
-  - - - - - - - - - - -
-Constructor Summary
BookmarkDispatcher() - -
-           
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
addPage, getPresentationManager, newParseConfigHandler, setMap, setNotFoundPage, setPresentationManager
- - - - - - - -
Methods inherited from class com.arsdigita.dispatcher.MapDispatcher
addPage, dispatch, getMap, preprocessRequest, readFromFile, requireTrailingSlash, setNotFoundDispatcher
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkDispatcher

-
-public BookmarkDispatcher()
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html deleted file mode 100755 index 0da6393c2..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/ApplicationAuthenticationListener.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ApplicationAuthenticationListener (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ApplicationAuthenticationListener

-
-No usage of com.arsdigita.bookmarks.ApplicationAuthenticationListener -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html deleted file mode 100755 index 403766101..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/Bookmark.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.Bookmark (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.Bookmark

-
- - - - - - - - - -
-Packages that use Bookmark
com.arsdigita.bookmarks  
-  -

- - - - - -
-Uses of Bookmark in com.arsdigita.bookmarks
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.bookmarks that return Bookmark
- BookmarkBookmarkCollection.getBookmark() - -
-          Get the current item as a Bookmark domain object.
- BookmarkBookmarkApplication.createBookmark(String name, - String URLString) - -
-           
-static BookmarkBookmark.retrieveBookmark(BigDecimal bmrkID) - -
-          Retrieve an existing Bookmark based on an ID.
-static BookmarkBookmark.retrieveBookmark(com.arsdigita.persistence.DataObject dataObject) - -
-          Retrieve an existing Bookmark based on a data object.
-static BookmarkBookmark.retrieveBookmark(com.arsdigita.persistence.OID oid) - -
-          Retrieve an existing Bookmark based on an OID.
-  -

- - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.bookmarks with parameters of type Bookmark
- voidBookmarkApplication.removeBookmark(Bookmark bmrk) - -
-           
- voidBookmarkApplication.swapBookmarkWithPrevious(Bookmark b) - -
-           
- voidBookmarkApplication.swapBookmarkWithNext(Bookmark b) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html deleted file mode 100755 index cbd9c907f..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkApplication.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.BookmarkApplication (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.BookmarkApplication

-
- - - - - - - - - -
-Packages that use BookmarkApplication
com.arsdigita.bookmarks  
-  -

- - - - - -
-Uses of BookmarkApplication in com.arsdigita.bookmarks
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.bookmarks that return BookmarkApplication
-static BookmarkApplicationBookmarkApplication.create(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          Use this instead of the constructor to create new Bookmark - Application objects
- BookmarkApplicationBookmark.getBookmarkApplication() - -
-           
-  -

- - - - - - - - - -
Methods in com.arsdigita.bookmarks with parameters of type BookmarkApplication
- voidBookmark.setBookmarkApplication(BookmarkApplication bmrkapp) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html deleted file mode 100755 index 81d78e91a..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkCollection.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.BookmarkCollection (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.BookmarkCollection

-
- - - - - - - - - -
-Packages that use BookmarkCollection
com.arsdigita.bookmarks  
-  -

- - - - - -
-Uses of BookmarkCollection in com.arsdigita.bookmarks
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.bookmarks that return BookmarkCollection
- BookmarkCollectionBookmarkApplication.getBookmarks() - -
-           
-static BookmarkCollectionBookmark.retrieveAllBookmarks() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html deleted file mode 100755 index 20b1e584c..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/class-use/BookmarkDispatcher.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.BookmarkDispatcher (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.BookmarkDispatcher

-
-No usage of com.arsdigita.bookmarks.BookmarkDispatcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html deleted file mode 100755 index f1c40f49d..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/Initializer.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - -Initializer (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.installer -
-Class Initializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended bycom.arsdigita.bookmarks.installer.Initializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class Initializer
extends com.arsdigita.runtime.CompoundInitializer
- -

-

Experimental

-

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
Initializer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidinit(com.arsdigita.runtime.DomainInitEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.CompoundInitializer
add, init, init
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-Initializer

-
-public Initializer()
-
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init(com.arsdigita.runtime.DomainInitEvent e)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html deleted file mode 100755 index e8e469428..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/class-use/Initializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.installer.Initializer (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.installer.Initializer

-
-No usage of com.arsdigita.bookmarks.installer.Initializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html deleted file mode 100755 index 3e874dac8..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.installer (Bookmarks API Documentation) - - - - - - - - - - - -com.arsdigita.bookmarks.installer - - - - -
-Classes  - -
-Initializer
- - - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html deleted file mode 100755 index fb8562124..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-summary.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.installer (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.bookmarks.installer -

- - - - - - - - - -
-Class Summary
InitializerExperimental
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html deleted file mode 100755 index a472c3cb3..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-tree.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.installer Class Hierarchy (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.bookmarks.installer -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html deleted file mode 100755 index 6acc3009e..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/installer/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.bookmarks.installer (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.bookmarks.installer

-
-No usage of com.arsdigita.bookmarks.installer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html deleted file mode 100755 index 6f2976943..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-frame.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - -com.arsdigita.bookmarks (Bookmarks API Documentation) - - - - - - - - - - - -com.arsdigita.bookmarks - - - - -
-Classes  - -
-ApplicationAuthenticationListener -
-Bookmark -
-BookmarkApplication -
-BookmarkCollection -
-BookmarkDispatcher
- - - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html deleted file mode 100755 index a19977d1e..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-summary.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -com.arsdigita.bookmarks (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.bookmarks -

- - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
ApplicationAuthenticationListenerA RequestListener that verifies the user - has a given privilege on the current Application.
BookmarkA bookmark.
BookmarkApplicationBookmarkApplication class.
BookmarkCollection 
BookmarkDispatcherBookmark dispatcher for both Bebop-backed and other URLs.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html deleted file mode 100755 index 4e31c8390..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-tree.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - -com.arsdigita.bookmarks Class Hierarchy (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.bookmarks -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.bookmarks.Bookmark
          • class com.arsdigita.kernel.Resource -
          -
        -
      -
    • class com.arsdigita.domain.DomainQuery (implements com.arsdigita.persistence.DataQuery) -
        -
      • class com.arsdigita.domain.DomainCollection -
      -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher
          -
        • class com.arsdigita.bebop.BebopMapDispatcher -
        -
      -
    • class com.arsdigita.ui.login.UserAuthenticationListener (implements com.arsdigita.bebop.event.RequestListener) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html deleted file mode 100755 index ea04df180..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/package-use.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.bookmarks (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.bookmarks

-
- - - - - - - - - -
-Packages that use com.arsdigita.bookmarks
com.arsdigita.bookmarks  
-  -

- - - - - - - - - - - - - - -
-Classes in com.arsdigita.bookmarks used by com.arsdigita.bookmarks
Bookmark - -
-          A bookmark.
BookmarkApplication - -
-          BookmarkApplication class.
BookmarkCollection - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html deleted file mode 100755 index 3c478e885..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLabelPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -BookmarkBasePage.CurrentApplicationLabelPrinter (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkBasePage.CurrentApplicationLabelPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
BookmarkBasePage
-
-
-
-
protected class BookmarkBasePage.CurrentApplicationLabelPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
BookmarkBasePage.CurrentApplicationLabelPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkBasePage.CurrentApplicationLabelPrinter

-
-public BookmarkBasePage.CurrentApplicationLabelPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index 1fe0d7e28..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -BookmarkBasePage.CurrentApplicationLinkPrinter (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkBasePage.CurrentApplicationLinkPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
BookmarkBasePage
-
-
-
-
protected class BookmarkBasePage.CurrentApplicationLinkPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
BookmarkBasePage.CurrentApplicationLinkPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkBasePage.CurrentApplicationLinkPrinter

-
-public BookmarkBasePage.CurrentApplicationLinkPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html deleted file mode 100755 index 1486eae57..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.ParentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -BookmarkBasePage.ParentApplicationLinkPrinter (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkBasePage.ParentApplicationLinkPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
BookmarkBasePage
-
-
-
-
protected class BookmarkBasePage.ParentApplicationLinkPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
BookmarkBasePage.ParentApplicationLinkPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkBasePage.ParentApplicationLinkPrinter

-
-public BookmarkBasePage.ParentApplicationLinkPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html deleted file mode 100755 index f4b36fec6..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkBasePage.html +++ /dev/null @@ -1,797 +0,0 @@ - - - - - - -BookmarkBasePage (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkBasePage

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Page
-                      extended bycom.arsdigita.bookmarks.ui.BookmarkBasePage
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public class BookmarkBasePage
extends com.arsdigita.bebop.Page
- -

-

BasePage class

-

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - - - - - - - - - - - - - -
-Nested Class Summary
-protected  classBookmarkBasePage.CurrentApplicationLabelPrinter - -
-           
-protected  classBookmarkBasePage.CurrentApplicationLinkPrinter - -
-           
-protected  classBookmarkBasePage.ParentApplicationLinkPrinter - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBMRK_BODY_ELEMENT - -
-           
-static StringBMRK_FOOTER_ELEMENT - -
-           
-static StringBMRK_GLOBAL_ELEMENT - -
-           
-static StringBMRK_HEADER_ELEMENT - -
-           
-static StringBMRK_XML_NS - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Page
m_invisible, m_panel, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
BookmarkBasePage() - -
-           
BookmarkBasePage(String view) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidadd(com.arsdigita.bebop.Component pc) - -
-          Adds a component to the body.
-protected  voidbuildBody(com.arsdigita.bebop.Container body) - -
-           
-protected  voidbuildContextBar() - -
-           
-protected  voidbuildFooter(com.arsdigita.bebop.Container footer) - -
-           
-protected  voidbuildGlobal(com.arsdigita.bebop.Container global) - -
-           
-protected  voidbuildHeader(com.arsdigita.bebop.Container header) - -
-           
-protected  voidbuildPage() - -
-           
-protected  voidbuildTitle() - -
-           
- com.arsdigita.bebop.ContainergetBody() - -
-           
- com.arsdigita.bebop.ContainergetFooter() - -
-           
- com.arsdigita.bebop.ContainergetGlobal() - -
-           
- com.arsdigita.bebop.ContainergetHeader() - -
-           
- voidgoModal(com.arsdigita.bebop.PageState ps, - com.arsdigita.bebop.Component c) - -
-          Makes the given component the only visible component between - the header and footer of this page.
- voidgoUnmodal(com.arsdigita.bebop.PageState ps) - -
-          Clears the currently selected modal component if it has been set.
- voidlock() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Page
add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, generateXMLHelper, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-BMRK_GLOBAL_ELEMENT

-
-public static final String BMRK_GLOBAL_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-BMRK_HEADER_ELEMENT

-
-public static final String BMRK_HEADER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-BMRK_BODY_ELEMENT

-
-public static final String BMRK_BODY_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-BMRK_FOOTER_ELEMENT

-
-public static final String BMRK_FOOTER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-BMRK_XML_NS

-
-public static final String BMRK_XML_NS
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-BookmarkBasePage

-
-public BookmarkBasePage()
-
-
-
- -

-BookmarkBasePage

-
-public BookmarkBasePage(String view)
-
-
Parameters:
view - A String that specifies which application view to - show. Valid values: "user", "admin" and "null". If view is - "null", there will be no right-hand navigation link. Note - - We've decided not to have the right-hand navigation link at - all. Instead, you should create tabs. So, once the - applications are migrated, view will always be null and we can - remove view altogether.
- - - - - - - - -
-Method Detail
- -

-lock

-
-public void lock()
-
-
-
-
-
-
- -

-buildPage

-
-protected final void buildPage()
-
-
-
-
-
-
- -

-buildTitle

-
-protected void buildTitle()
-
-
-
-
-
-
- -

-buildContextBar

-
-protected void buildContextBar()
-
-
-
-
-
-
- -

-buildGlobal

-
-protected void buildGlobal(com.arsdigita.bebop.Container global)
-
-
-
-
-
-
- -

-buildHeader

-
-protected void buildHeader(com.arsdigita.bebop.Container header)
-
-
-
-
-
-
- -

-buildBody

-
-protected void buildBody(com.arsdigita.bebop.Container body)
-
-
-
-
-
-
- -

-buildFooter

-
-protected void buildFooter(com.arsdigita.bebop.Container footer)
-
-
-
-
-
-
- -

-goModal

-
-public void goModal(com.arsdigita.bebop.PageState ps,
-                    com.arsdigita.bebop.Component c)
-
-
Makes the given component the only visible component between - the header and footer of this page. -

-

-
-
-
-
- -

-goUnmodal

-
-public void goUnmodal(com.arsdigita.bebop.PageState ps)
-
-
Clears the currently selected modal component if it has been set. -

-

-
-
-
-
- -

-add

-
-public void add(com.arsdigita.bebop.Component pc)
-
-
Adds a component to the body. -

-

-
Parameters:
pc - the component to be added
-
-
-
- -

-getGlobal

-
-public com.arsdigita.bebop.Container getGlobal()
-
-
-
-
-
-
- -

-getHeader

-
-public com.arsdigita.bebop.Container getHeader()
-
-
-
-
-
-
- -

-getBody

-
-public com.arsdigita.bebop.Container getBody()
-
-
-
-
-
-
- -

-getFooter

-
-public com.arsdigita.bebop.Container getFooter()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html deleted file mode 100755 index 4ea8d917e..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.DeleteForm.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - -BookmarkEditPane.DeleteForm (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkEditPane.DeleteForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended bycom.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.util.Lockable
-
-
-
Enclosing class:
BookmarkEditPane
-
-
-
-
public class BookmarkEditPane.DeleteForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormProcessListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
BookmarkEditPane.DeleteForm() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkEditPane.DeleteForm

-
-public BookmarkEditPane.DeleteForm()
-
-
- - - - - - - - -
-Method Detail
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html deleted file mode 100755 index a1c11b989..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.EditBookmarkForm.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - -BookmarkEditPane.EditBookmarkForm (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkEditPane.EditBookmarkForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended bycom.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.util.Lockable
-
-
-
Enclosing class:
BookmarkEditPane
-
-
-
-
public class BookmarkEditPane.EditBookmarkForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormProcessListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
BookmarkEditPane.EditBookmarkForm(com.arsdigita.bebop.GridPanel gp) - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BookmarkEditPane.EditBookmarkForm

-
-public BookmarkEditPane.EditBookmarkForm(com.arsdigita.bebop.GridPanel gp)
-
-
- - - - - - - - -
-Method Detail
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html deleted file mode 100755 index e892aa366..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkEditPane.html +++ /dev/null @@ -1,490 +0,0 @@ - - - - - - -BookmarkEditPane (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkEditPane

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.SplitPanel
-                          extended bycom.arsdigita.bebop.SplitWizard
-                              extended bycom.arsdigita.bebop.DynamicListWizard
-                                  extended bycom.arsdigita.bookmarks.ui.BookmarkEditPane
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable, com.arsdigita.bebop.Resettable
-
-
-
-
public class BookmarkEditPane
extends com.arsdigita.bebop.DynamicListWizard
- -

-Experimental -

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - - - - - - - - - -
-Nested Class Summary
- classBookmarkEditPane.DeleteForm - -
-           
- classBookmarkEditPane.EditBookmarkForm - -
-           
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.SplitWizard
com.arsdigita.bebop.SplitWizard.HeaderPanel
-  - - - - - - - - - - - - - - - -
-Field Summary
-static StringEVENT_SWAP_DOWN - -
-           
-static StringEVENT_SWAP_UP - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.DynamicListWizard
CURRENT_PANE, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SplitPanel
BORDER
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
BookmarkEditPane() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidrespond(com.arsdigita.bebop.PageState state) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.DynamicListWizard
getAddLink, getAddPane, getEditPane, getList, getListingComponent, getListLabel, layoutComponents, reset, setAddPane, setEditPane
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SplitWizard
getDefaultPane, getSelectionModel, getSelector, setDefaultPane, setSelectionModel, setSelector
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SplitPanel
generateXML, getBorder, getDivider, getHeader, getLeftComponent, getRightComponent, lock, setBorder, setDivider, setHeader, setLeftComponent, setRightComponent
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-EVENT_SWAP_UP

-
-public static final String EVENT_SWAP_UP
-
-
-
See Also:
Constant Field Values
-
-
- -

-EVENT_SWAP_DOWN

-
-public static final String EVENT_SWAP_DOWN
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-BookmarkEditPane

-
-public BookmarkEditPane()
-
-
- - - - - - - - -
-Method Detail
- -

-respond

-
-public void respond(com.arsdigita.bebop.PageState state)
-             throws ServletException
-
-
- -
Throws: -
ServletException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html deleted file mode 100755 index d1788d66f..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/BookmarkPortlet.html +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - -BookmarkPortlet (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.ui -
-Class BookmarkPortlet

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.portal.Portlet
-                      extended bycom.arsdigita.portal.apportlet.AppPortlet
-                          extended bycom.arsdigita.bookmarks.ui.BookmarkPortlet
-
-
-
-
public class BookmarkPortlet
extends com.arsdigita.portal.apportlet.AppPortlet
- -

-


- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - -
-Constructor Summary
BookmarkPortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- StringgetZoomURL() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet
getAppPortletType, getParentApplication, getPortletRenderer, setParentApplication
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-BookmarkPortlet

-
-public BookmarkPortlet(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-getZoomURL

-
-public String getZoomURL()
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html deleted file mode 100755 index 04096582a..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLabelPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index 599eff9d4..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html deleted file mode 100755 index c5e1d04bd..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.ParentApplicationLinkPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html deleted file mode 100755 index 85c2cbaeb..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkBasePage.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkBasePage (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkBasePage

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkBasePage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html deleted file mode 100755 index 422043281..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.DeleteForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html deleted file mode 100755 index 3b5460614..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.EditBookmarkForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html deleted file mode 100755 index b467acce8..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkEditPane.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkEditPane (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkEditPane

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkEditPane -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html deleted file mode 100755 index 61f8e0254..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/class-use/BookmarkPortlet.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.ui.BookmarkPortlet (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.ui.BookmarkPortlet

-
-No usage of com.arsdigita.bookmarks.ui.BookmarkPortlet -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html deleted file mode 100755 index a818bdf82..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-frame.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.ui (Bookmarks API Documentation) - - - - - - - - - - - -com.arsdigita.bookmarks.ui - - - - -
-Classes  - -
-BookmarkBasePage -
-BookmarkEditPane -
-BookmarkPortlet
- - - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html deleted file mode 100755 index 690b276e4..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-summary.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.ui (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.bookmarks.ui -

- - - - - - - - - - - - - - - - - -
-Class Summary
BookmarkBasePageBasePage class
BookmarkEditPaneExperimental
BookmarkPortlet 
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html deleted file mode 100755 index e929cbd60..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-tree.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.ui Class Hierarchy (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.bookmarks.ui -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) - -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) - -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.bebop.SplitPanel
                  -
                • class com.arsdigita.bebop.SplitWizard
                    -
                  • class com.arsdigita.bebop.DynamicListWizard (implements com.arsdigita.bebop.Resettable) - -
                  -
                -
              -
            -
          -
        -
      -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.kernel.Resource
              -
            • class com.arsdigita.portal.Portlet
                -
              • class com.arsdigita.portal.apportlet.AppPortlet -
              -
            -
          -
        -
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html deleted file mode 100755 index 6aaf8bee4..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/ui/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.bookmarks.ui (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.bookmarks.ui

-
-No usage of com.arsdigita.bookmarks.ui -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html deleted file mode 100755 index 5f07f43f7..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/GlobalizationUtil.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - -GlobalizationUtil (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.bookmarks.util -
-Class GlobalizationUtil

-
-java.lang.Object
-  extended bycom.arsdigita.bookmarks.util.GlobalizationUtil
-
-
-
All Implemented Interfaces:
com.arsdigita.globalization.Globalized
-
-
-
-
public class GlobalizationUtil
extends Object
implements com.arsdigita.globalization.Globalized
- -

-

- . - Contains methods to simplify globalizing keys -

-

- -

-

-
Version:
-
$Revision: #1 $ $Date: 2003/03/28 $
-
Author:
-
sarnold@redhat.com
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.globalization.Globalized
DATE_DISPLAY_FORMAT, TIME_DISPLAY_FORMAT, versionId
-  - - - - - - - - - - -
-Constructor Summary
GlobalizationUtil() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key) - -
-           
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key, - Object[] args) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-GlobalizationUtil

-
-public GlobalizationUtil()
-
-
- - - - - - - - -
-Method Detail
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key)
-
-
-
-
-
-
-
-
-
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key,
-                                                                      Object[] args)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html deleted file mode 100755 index dfa1383d3..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/class-use/GlobalizationUtil.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.bookmarks.util.GlobalizationUtil (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.bookmarks.util.GlobalizationUtil

-
-No usage of com.arsdigita.bookmarks.util.GlobalizationUtil -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html deleted file mode 100755 index 91a94c8d4..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.util (Bookmarks API Documentation) - - - - - - - - - - - -com.arsdigita.bookmarks.util - - - - -
-Classes  - -
-GlobalizationUtil
- - - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html deleted file mode 100755 index 7a53b1047..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-summary.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.util (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.bookmarks.util -

- - - - - - - - - -
-Class Summary
GlobalizationUtil - .
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html deleted file mode 100755 index 74e282f34..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-tree.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -com.arsdigita.bookmarks.util Class Hierarchy (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.bookmarks.util -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bookmarks.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html deleted file mode 100755 index f6d087331..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/com/arsdigita/bookmarks/util/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.bookmarks.util (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.bookmarks.util

-
-No usage of com.arsdigita.bookmarks.util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html deleted file mode 100755 index d492d5911..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/constant-values.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - -Constant Field Values (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Constant Field Values

-
-
-Contents - - - - - - -
-com.arsdigita.*
- -

- - - - - - - - - - - - -
com.arsdigita.bookmarks.ApplicationAuthenticationListener
-public static final StringversionId"$Id: //apps/bookmarks/dev/src/com/arsdigita/bookmarks/ApplicationAuthenticationListener.java#2 $$Author: jorris $$DateTime: 2003/04/01 16:53:21 $"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.bookmarks.Bookmark
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.workspace.Bookmark"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.bookmarks.BookmarkApplication
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.workspace.BookmarkApplication"
-public static final StringversionId"$Id: //apps/bookmarks/dev/src/com/arsdigita/bookmarks/BookmarkApplication.java#3 $ by $Author: dennis $, $DateTime: 2003/07/10 14:47:30 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.bookmarks.ui.BookmarkBasePage
-public static final StringBMRK_BODY_ELEMENT"bmrk:body"
-public static final StringBMRK_FOOTER_ELEMENT"bmrk:footer"
-public static final StringBMRK_GLOBAL_ELEMENT"bmrk:global"
-public static final StringBMRK_HEADER_ELEMENT"bmrk:header"
-public static final StringBMRK_XML_NS"http://www.redhat.com/bmrk/1.0"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.bookmarks.ui.BookmarkEditPane
-public static final StringEVENT_SWAP_DOWN"swapDown"
-public static final StringEVENT_SWAP_UP"swapUp"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.bookmarks.ui.BookmarkPortlet
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.workspace.BookmarkPortlet"
-public static final StringversionId"$Id: //apps/bookmarks/dev/src/com/arsdigita/bookmarks/ui/BookmarkPortlet.java#5 $$Author: jparsons $$DateTime: 2003/05/28 17:31:24 $"
- -

- -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html deleted file mode 100755 index c46517605..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/deprecated-list.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -Deprecated List (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Deprecated API

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html deleted file mode 100755 index 8d3fb45c9..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/help-doc.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -API Help (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-How This API Document Is Organized

-
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.

-Overview

-
- -

-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

-

-Package

-
- -

-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:

    -
  • Interfaces (italic)
  • Classes
  • Exceptions
  • Errors
-
-

-Class/Interface

-
- -

-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
  • Class inheritance diagram
  • Direct Subclasses
  • All Known Subinterfaces
  • All Known Implementing Classes
  • Class/interface declaration
  • Class/interface description -

    -

  • Nested Class Summary
  • Field Summary
  • Constructor Summary
  • Method Summary -

    -

  • Field Detail
  • Constructor Detail
  • Method Detail
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-

-Use

-
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-

-Tree (Class Hierarchy)

-
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
    -
  • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
  • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-

-Deprecated API

-
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-

-Index

-
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-

-Prev/Next

-These links take you to the next or previous class, interface, package, or related page.

-Frames/No Frames

-These links show and hide the HTML frames. All pages are available with or without frames. -

-

-Serialized Form

-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. -

- - -This help file applies to API documentation generated using the standard doclet. - -
-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/index-all.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/index-all.html deleted file mode 100755 index a04eba19a..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/index-all.html +++ /dev/null @@ -1,503 +0,0 @@ - - - - - - -Index (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -A B C D E G I L N P R S V
-

-A

-
-
ApplicationAuthenticationListener - class com.arsdigita.bookmarks.ApplicationAuthenticationListener.
A RequestListener that verifies the user - has a given privilege on the current Application.
ApplicationAuthenticationListener(String) - -Constructor for class com.arsdigita.bookmarks.ApplicationAuthenticationListener -
  -
add(Component) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
Adds a component to the body. -
afterSave() - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
-
-

-B

-
-
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.bookmarks.Bookmark -
The type of the DataObject - that stands behind this DomainObject. -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.bookmarks.BookmarkApplication -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkPortlet -
  -
BMRK_BODY_ELEMENT - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
BMRK_FOOTER_ELEMENT - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
BMRK_GLOBAL_ELEMENT - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
BMRK_HEADER_ELEMENT - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
BMRK_XML_NS - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
Bookmark - class com.arsdigita.bookmarks.Bookmark.
A bookmark.
Bookmark(DataObject) - -Constructor for class com.arsdigita.bookmarks.Bookmark -
  -
Bookmark(String, String) - -Constructor for class com.arsdigita.bookmarks.Bookmark -
  -
BookmarkApplication - class com.arsdigita.bookmarks.BookmarkApplication.
BookmarkApplication class.
BookmarkApplication(OID) - -Constructor for class com.arsdigita.bookmarks.BookmarkApplication -
  -
BookmarkApplication(BigDecimal) - -Constructor for class com.arsdigita.bookmarks.BookmarkApplication -
  -
BookmarkApplication(DataObject) - -Constructor for class com.arsdigita.bookmarks.BookmarkApplication -
  -
BookmarkBasePage - class com.arsdigita.bookmarks.ui.BookmarkBasePage.
BasePage class
BookmarkBasePage() - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
BookmarkBasePage(String) - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
BookmarkBasePage.CurrentApplicationLabelPrinter - class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter.
 
BookmarkBasePage.CurrentApplicationLabelPrinter() - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter -
  -
BookmarkBasePage.CurrentApplicationLinkPrinter - class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter.
 
BookmarkBasePage.CurrentApplicationLinkPrinter() - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter -
  -
BookmarkBasePage.ParentApplicationLinkPrinter - class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter.
 
BookmarkBasePage.ParentApplicationLinkPrinter() - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter -
  -
BookmarkCollection - class com.arsdigita.bookmarks.BookmarkCollection.
 
BookmarkCollection(DataCollection) - -Constructor for class com.arsdigita.bookmarks.BookmarkCollection -
  -
BookmarkDispatcher - class com.arsdigita.bookmarks.BookmarkDispatcher.
Bookmark dispatcher for both Bebop-backed and other URLs.
BookmarkDispatcher() - -Constructor for class com.arsdigita.bookmarks.BookmarkDispatcher -
  -
BookmarkEditPane - class com.arsdigita.bookmarks.ui.BookmarkEditPane.
Experimental
BookmarkEditPane() - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkEditPane -
  -
BookmarkEditPane.DeleteForm - class com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm.
 
BookmarkEditPane.DeleteForm() - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm -
  -
BookmarkEditPane.EditBookmarkForm - class com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm.
 
BookmarkEditPane.EditBookmarkForm(GridPanel) - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm -
  -
BookmarkPortlet - class com.arsdigita.bookmarks.ui.BookmarkPortlet.
 
BookmarkPortlet(DataObject) - -Constructor for class com.arsdigita.bookmarks.ui.BookmarkPortlet -
  -
buildBody(Container) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
buildContextBar() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
buildFooter(Container) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
buildGlobal(Container) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
buildHeader(Container) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
buildPage() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
buildTitle() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
-
-

-C

-
-
com.arsdigita.bookmarks - package com.arsdigita.bookmarks
 
com.arsdigita.bookmarks.installer - package com.arsdigita.bookmarks.installer
 
com.arsdigita.bookmarks.ui - package com.arsdigita.bookmarks.ui
 
com.arsdigita.bookmarks.util - package com.arsdigita.bookmarks.util
 
create(String, String, Application) - -Static method in class com.arsdigita.bookmarks.BookmarkApplication -
Use this instead of the constructor to create new Bookmark - Application objects -
createBookmark(String, String) - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
-
-

-D

-
-
denyRequest(PageState) - -Method in class com.arsdigita.bookmarks.ApplicationAuthenticationListener -
Action performed if authentication failed. -
doGetPortletRenderer() - -Method in class com.arsdigita.bookmarks.ui.BookmarkPortlet -
  -
-
-

-E

-
-
EVENT_SWAP_DOWN - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkEditPane -
  -
EVENT_SWAP_UP - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkEditPane -
  -
-
-

-G

-
-
GlobalizationUtil - class com.arsdigita.bookmarks.util.GlobalizationUtil.
- .
GlobalizationUtil() - -Constructor for class com.arsdigita.bookmarks.util.GlobalizationUtil -
  -
getAuthor() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the original creator's name for this Bookmark. -
getBaseDataObjectType() - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.bookmarks.ui.BookmarkPortlet -
  -
getBody() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
getBookmark() - -Method in class com.arsdigita.bookmarks.BookmarkCollection -
Get the current item as a Bookmark domain object. -
getBookmarkApplication() - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
getBookmarks() - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
getCreateDate() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the Creation Date of this Bookmark. -
getDescription() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the Description of this Bookmark. -
getDomainObject() - -Method in class com.arsdigita.bookmarks.BookmarkCollection -
Get the current item as a domain object. -
getFooter() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
getGlobal() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
getHeader() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
getID() - -Method in class com.arsdigita.bookmarks.BookmarkCollection -
Get the ID for the Bookmark for the current row. -
getModDate() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the last modification date of this Bookmark. -
getName() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the title of this Bookmark. -
getName() - -Method in class com.arsdigita.bookmarks.BookmarkCollection -
Get the name for the Bookmark for the current row. -
getNewWindow() - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
getNewWindow() - -Method in class com.arsdigita.bookmarks.BookmarkCollection -
  -
getNumVisits() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the number of times this Bookmark has been visited, - and return value as a String. -
getRequiredPrivilege() - -Method in class com.arsdigita.bookmarks.ApplicationAuthenticationListener -
  -
getSortKey() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the sort key of this Bookmark. -
getURL() - -Method in class com.arsdigita.bookmarks.Bookmark -
Get the URL of this Bookmark. -
getURL() - -Method in class com.arsdigita.bookmarks.BookmarkCollection -
Get the url for the bookmark for the current row. -
getZoomURL() - -Method in class com.arsdigita.bookmarks.ui.BookmarkPortlet -
  -
globalize(String) - -Static method in class com.arsdigita.bookmarks.util.GlobalizationUtil -
  -
globalize(String, Object[]) - -Static method in class com.arsdigita.bookmarks.util.GlobalizationUtil -
  -
goModal(PageState, Component) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
Makes the given component the only visible component between - the header and footer of this page. -
goUnmodal(PageState) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
Clears the currently selected modal component if it has been set. -
-
-

-I

-
-
Initializer - class com.arsdigita.bookmarks.installer.Initializer.
Experimental
Initializer() - -Constructor for class com.arsdigita.bookmarks.installer.Initializer -
  -
init(DomainInitEvent) - -Method in class com.arsdigita.bookmarks.installer.Initializer -
  -
-
-

-L

-
-
lock() - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage -
  -
-
-

-N

-
-
normalizeBookmarkSortKeys() - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
-
-

-P

-
-
pageRequested(RequestEvent) - -Method in class com.arsdigita.bookmarks.ApplicationAuthenticationListener -
Checks whether the user is logged in. -
prepare(PrintEvent) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.bookmarks.ui.BookmarkEditPane.DeleteForm -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.bookmarks.ui.BookmarkEditPane.EditBookmarkForm -
  -
-
-

-R

-
-
removeBookmark(Bookmark) - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
respond(PageState) - -Method in class com.arsdigita.bookmarks.ui.BookmarkEditPane -
  -
retrieveAllBookmarks() - -Static method in class com.arsdigita.bookmarks.Bookmark -
  -
retrieveBookmark(BigDecimal) - -Static method in class com.arsdigita.bookmarks.Bookmark -
Retrieve an existing Bookmark based on an ID. -
retrieveBookmark(DataObject) - -Static method in class com.arsdigita.bookmarks.Bookmark -
Retrieve an existing Bookmark based on a data object. -
retrieveBookmark(OID) - -Static method in class com.arsdigita.bookmarks.Bookmark -
Retrieve an existing Bookmark based on an OID. -
-
-

-S

-
-
setBookmarkApplication(BookmarkApplication) - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
setDescription(String) - -Method in class com.arsdigita.bookmarks.Bookmark -
Set the description for this Bookmark. -
setModDate() - -Method in class com.arsdigita.bookmarks.Bookmark -
Set the mod date for this Bookmark. -
setName(String) - -Method in class com.arsdigita.bookmarks.Bookmark -
Set the title of this Bookmark. -
setNewWindow(boolean) - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
setRequiredPrivilege(String) - -Method in class com.arsdigita.bookmarks.ApplicationAuthenticationListener -
  -
setSortKey(int) - -Method in class com.arsdigita.bookmarks.Bookmark -
  -
setURL(String) - -Method in class com.arsdigita.bookmarks.Bookmark -
Set the URL of this Bookmark. -
swapBookmarkWithNext(Bookmark) - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
swapBookmarkWithPrevious(Bookmark) - -Method in class com.arsdigita.bookmarks.BookmarkApplication -
  -
-
-

-V

-
-
versionId - -Static variable in class com.arsdigita.bookmarks.ApplicationAuthenticationListener -
  -
versionId - -Static variable in class com.arsdigita.bookmarks.BookmarkApplication -
  -
versionId - -Static variable in class com.arsdigita.bookmarks.ui.BookmarkPortlet -
  -
visitsPlusPlus() - -Method in class com.arsdigita.bookmarks.Bookmark -
Increment the counter for number of visits to this Bookmark. -
-
-A B C D E G I L N P R S V - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/index.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/index.html deleted file mode 100755 index b677b6319..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/index.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - -Bookmarks API Documentation - - - - - - - - - -<H2> -Frame Alert</H2> - -<P> -This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. -<BR> -Link to<A HREF="overview-summary.html">Non-frame version.</A> - - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html deleted file mode 100755 index de300da7c..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-frame.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - -Overview (Bookmarks API Documentation) - - - - - - - - - - - - - - - -
-
- - - - - -
All Classes -

- -Packages -
-com.arsdigita.bookmarks -
-com.arsdigita.bookmarks.installer -
-com.arsdigita.bookmarks.ui -
-com.arsdigita.bookmarks.util -
-

- -

-  - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html deleted file mode 100755 index 0ec9e8bb5..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-summary.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -Overview (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -


-
-

-

Bookmarks API Documentation

- -
- - - - - - - - - - - - - - - - - - - - - -
-Packages
com.arsdigita.bookmarks 
com.arsdigita.bookmarks.installer 
com.arsdigita.bookmarks.ui 
com.arsdigita.bookmarks.util 
- -


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html deleted file mode 100755 index efdfbe456..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/overview-tree.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -Class Hierarchy (Bookmarks API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For All Packages

-
-
-
Package Hierarchies:
com.arsdigita.bookmarks, com.arsdigita.bookmarks.installer, com.arsdigita.bookmarks.ui, com.arsdigita.bookmarks.util
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.bookmarks.ui.BookmarkBasePage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.bookmarks.ui.BookmarkBasePage.ParentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) - -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) - -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.bebop.SplitPanel
                  -
                • class com.arsdigita.bebop.SplitWizard
                    -
                  • class com.arsdigita.bebop.DynamicListWizard (implements com.arsdigita.bebop.Resettable) - -
                  -
                -
              -
            -
          -
        -
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.bookmarks.Bookmark
          • class com.arsdigita.kernel.Resource
              -
            • class com.arsdigita.web.Application -
            • class com.arsdigita.portal.Portlet
                -
              • class com.arsdigita.portal.apportlet.AppPortlet -
              -
            -
          -
        -
      -
    • class com.arsdigita.domain.DomainQuery (implements com.arsdigita.persistence.DataQuery) -
        -
      • class com.arsdigita.domain.DomainCollection -
      -
    • class com.arsdigita.bookmarks.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher
          -
        • class com.arsdigita.bebop.BebopMapDispatcher -
        -
      -
    • class com.arsdigita.ui.login.UserAuthenticationListener (implements com.arsdigita.bebop.event.RequestListener) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1057 UTC - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/package-list b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/package-list deleted file mode 100755 index 5244d79f3..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/package-list +++ /dev/null @@ -1,4 +0,0 @@ -com.arsdigita.bookmarks -com.arsdigita.bookmarks.installer -com.arsdigita.bookmarks.ui -com.arsdigita.bookmarks.util diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/packages.html b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/packages.html deleted file mode 100755 index a42f08441..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/packages.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - (Bookmarks API Documentation) - - - - - - - - - - - -
- -
- -
-
-The front page has been relocated.Please see: -
-          Frame version -
-          Non-frame version.
- - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif deleted file mode 100755 index c814867a1..000000000 Binary files a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/resources/inherit.gif and /dev/null differ diff --git a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css b/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css deleted file mode 100755 index 6d31fdbc7..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks-doc/var/www/html/ccm-bookmarks-6.3.0/api/stylesheet.css +++ /dev/null @@ -1,29 +0,0 @@ -/* Javadoc style sheet */ - -/* Define colors, fonts and other style attributes here to override the defaults */ - -/* Page background color */ -body { background-color: #FFFFFF } - -/* Headings */ -h1 { font-size: 145% } - -/* Table colors */ -.TableHeadingColor { background: #CCCCFF } /* Dark mauve */ -.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */ -.TableRowColor { background: #FFFFFF } /* White */ - -/* Font used in left-hand frame lists */ -.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif } -.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } -.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } - -/* Navigation bar fonts and colors */ -.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */ -.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */ -.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;} -.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;} - -.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} -.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} - diff --git a/ccm-bookmarks/debian/ccm-bookmarks.dirs b/ccm-bookmarks/debian/ccm-bookmarks.dirs deleted file mode 100755 index 45fb80eba..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-bookmarks-6.3.0 diff --git a/ccm-bookmarks/debian/ccm-bookmarks.install b/ccm-bookmarks/debian/ccm-bookmarks.install deleted file mode 100755 index 7c5a19026..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks.install +++ /dev/null @@ -1,6 +0,0 @@ -usr/share/java/ccm-bookmarks-6.3.0.jar -usr/share/java/ccm-bookmarks-6.3.0-pdl.jar -usr/share/java/ccm-bookmarks-6.3.0-sql.jar -usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks.xsl -usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks-portlet.xsl -usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/__ccm__/apps/bookmarks/xsl/index.xsl diff --git a/ccm-bookmarks/debian/ccm-bookmarks.postrm.debhelper b/ccm-bookmarks/debian/ccm-bookmarks.postrm.debhelper deleted file mode 100755 index bc035b98c..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks.postrm.debhelper +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically added by dh_installdebconf -if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_purge -fi -# End automatically added section diff --git a/ccm-bookmarks/debian/ccm-bookmarks.substvars b/ccm-bookmarks/debian/ccm-bookmarks.substvars deleted file mode 100755 index a8fe3cff5..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks.substvars +++ /dev/null @@ -1 +0,0 @@ -misc:Depends=debconf (>= 0.5) | debconf-2.0 diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/config b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/control b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/control deleted file mode 100755 index a5fb4f3a6..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-bookmarks -Version: 6.3.0-4 -Section: contrib/web -Priority: optional -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-core -Installed-Size: 200 -Maintainer: Runtime Packaging -Description: APLAWS: Bookmarks application. - . - FIXME: We need a longer and more meaningful description here. diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/md5sums b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/md5sums deleted file mode 100755 index 2c16af8e5..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/md5sums +++ /dev/null @@ -1,8 +0,0 @@ -175d53ddebcf2a94832e339aa0eb0033 usr/share/java/ccm-bookmarks-6.3.0.jar -be6015a972041a94c6228273ab905d65 usr/share/java/ccm-bookmarks-6.3.0-pdl.jar -81da5a742012ccfde811b1df431cc619 usr/share/java/ccm-bookmarks-6.3.0-sql.jar -5a94a7a41e53dcaf8424738361e7c0b1 usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks.xsl -4004101009d2064fd7ebad8633251ca1 usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/packages/bookmarks/xsl/bookmarks-portlet.xsl -5b9b7b56434607b3a1e75a5b9bab386d usr/share/java/webapps/ccm-bookmarks-6.3.0/ROOT/__ccm__/apps/bookmarks/xsl/index.xsl -ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-bookmarks/copyright -42d1154453e3846025aeadd00c2954fd usr/share/doc/ccm-bookmarks/changelog.Debian.gz diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/postinst b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/postinst deleted file mode 100755 index 5cab4a09e..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-bookmarks -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/postrm b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/postrm deleted file mode 100755 index 50713e302..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/postrm +++ /dev/null @@ -1,68 +0,0 @@ -#! /bin/sh -# postrm script for ccm-bookmarks -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -# Automatically added by dh_installdebconf -if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_purge -fi -# End automatically added section - - -exit 0 - - diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/prerm b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/prerm deleted file mode 100755 index c8f8ef953..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-bookmarks -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - diff --git a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/templates b/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/templates deleted file mode 100755 index 70df80f08..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/DEBIAN/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-bookmarks -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-bookmarks". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-bookmarks". diff --git a/ccm-bookmarks/debian/ccm-bookmarks/usr/share/doc/ccm-bookmarks/changelog.Debian.gz b/ccm-bookmarks/debian/ccm-bookmarks/usr/share/doc/ccm-bookmarks/changelog.Debian.gz deleted file mode 100755 index 5c1e56d6b..000000000 Binary files a/ccm-bookmarks/debian/ccm-bookmarks/usr/share/doc/ccm-bookmarks/changelog.Debian.gz and /dev/null differ diff --git a/ccm-bookmarks/debian/ccm-bookmarks/usr/share/doc/ccm-bookmarks/copyright b/ccm-bookmarks/debian/ccm-bookmarks/usr/share/doc/ccm-bookmarks/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-bookmarks/debian/ccm-bookmarks/usr/share/doc/ccm-bookmarks/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-bookmarks/debian/ccm-build.sh b/ccm-bookmarks/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-bookmarks/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-bookmarks/debian/ccm-clean.sh b/ccm-bookmarks/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-bookmarks/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-bookmarks/debian/ccm-config.sh b/ccm-bookmarks/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-bookmarks/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-bookmarks/debian/ccm-disperse.sh b/ccm-bookmarks/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-bookmarks/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-bookmarks/debian/ccm-install.sh b/ccm-bookmarks/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-bookmarks/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-bookmarks/debian/ccm-settings-run.sh b/ccm-bookmarks/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-bookmarks/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-bookmarks/debian/ccm-settings.sh b/ccm-bookmarks/debian/ccm-settings.sh deleted file mode 100755 index 6059e55c8..000000000 --- a/ccm-bookmarks/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-bookmarks -version=6.3.0 -appname=ccm-bookmarks -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-bookmarks/debian/changelog b/ccm-bookmarks/debian/changelog deleted file mode 100755 index 4f17e1448..000000000 --- a/ccm-bookmarks/debian/changelog +++ /dev/null @@ -1,23 +0,0 @@ -ccm-bookmarks (6.3.0-4) unstable; urgency=low - - * Finished testing - - -- My Wed, 11 Jan 2006 17:39:45 +0000 - -ccm-bookmarks (6.3.0-3) unstable; urgency=low - - * merging unp enhancements from unport, which hadn't been done - - -- My Wed, 11 Jan 2006 14:40:05 +0000 - -ccm-bookmarks (6.3.0-2) unstable; urgency=low - - * Removing ddl files - - -- My Wed, 11 Jan 2006 08:49:30 +0000 - -ccm-bookmarks (6.3.0-1) unstable; urgency=low - - * Initial checkin - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 diff --git a/ccm-bookmarks/debian/compat b/ccm-bookmarks/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-bookmarks/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-bookmarks/debian/config b/ccm-bookmarks/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-bookmarks/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-bookmarks/debian/control b/ccm-bookmarks/debian/control deleted file mode 100755 index f1c03153a..000000000 --- a/ccm-bookmarks/debian/control +++ /dev/null @@ -1,20 +0,0 @@ -Source: ccm-bookmarks -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core -Standards-Version: 3.6.1 - -Package: ccm-bookmarks -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core -Description: APLAWS: Bookmarks application. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-bookmarks-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-bookmarks - Documentation for ccm-bookmarks. Provides the JavaDoc API documentation. diff --git a/ccm-bookmarks/debian/copyright b/ccm-bookmarks/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-bookmarks/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-bookmarks/debian/files b/ccm-bookmarks/debian/files deleted file mode 100755 index ffc675157..000000000 --- a/ccm-bookmarks/debian/files +++ /dev/null @@ -1,2 +0,0 @@ -ccm-bookmarks_6.3.0-4_all.deb contrib/web optional -ccm-bookmarks-doc_6.3.0-4_all.deb contrib/web optional diff --git a/ccm-bookmarks/debian/postinst b/ccm-bookmarks/debian/postinst deleted file mode 100755 index c0eeca94c..000000000 --- a/ccm-bookmarks/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-bookmarks -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-bookmarks/debian/postrm b/ccm-bookmarks/debian/postrm deleted file mode 100755 index d3f57fb0f..000000000 --- a/ccm-bookmarks/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-bookmarks -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-bookmarks/debian/prerm b/ccm-bookmarks/debian/prerm deleted file mode 100755 index d9b620244..000000000 --- a/ccm-bookmarks/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-bookmarks -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-bookmarks/debian/rules b/ccm-bookmarks/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-bookmarks/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-bookmarks/debian/templates b/ccm-bookmarks/debian/templates deleted file mode 100755 index 70df80f08..000000000 --- a/ccm-bookmarks/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-bookmarks -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-bookmarks". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-bookmarks". diff --git a/ccm-cms-types-address/debian/ccm-build.sh b/ccm-cms-types-address/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-address/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-address/debian/ccm-clean.sh b/ccm-cms-types-address/debian/ccm-clean.sh deleted file mode 100755 index bc0261a21..000000000 --- a/ccm-cms-types-address/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-address/debian/ccm-cms-types-address.dirs b/ccm-cms-types-address/debian/ccm-cms-types-address.dirs deleted file mode 100755 index 2f1f590a8..000000000 --- a/ccm-cms-types-address/debian/ccm-cms-types-address.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-address-6.3.0 diff --git a/ccm-cms-types-address/debian/ccm-config.sh b/ccm-cms-types-address/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-address/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-address/debian/ccm-disperse.sh b/ccm-cms-types-address/debian/ccm-disperse.sh deleted file mode 100755 index ded8cb1fb..000000000 --- a/ccm-cms-types-address/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-address/debian/ccm-install.sh b/ccm-cms-types-address/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-address/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-address/debian/ccm-settings-run.sh b/ccm-cms-types-address/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-address/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-address/debian/ccm-settings.sh b/ccm-cms-types-address/debian/ccm-settings.sh deleted file mode 100755 index e8403fddf..000000000 --- a/ccm-cms-types-address/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-address -version=6.3.0 -appname=ccm-cms-types-address -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-address/debian/changelog b/ccm-cms-types-address/debian/changelog deleted file mode 100755 index c67015512..000000000 --- a/ccm-cms-types-address/debian/changelog +++ /dev/null @@ -1,64 +0,0 @@ -ccm-cms-types-address (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:55 +0000 - -ccm-cms-types-address (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:03 +0000 - -ccm-cms-types-address (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:50 +0000 - -ccm-cms-types-address (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Depend on debconf - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Wed, 19 Jan 2005 11:23:02 +0000 - -ccm-cms-types-address (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-address (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-address (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-address (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-address/debian/compat b/ccm-cms-types-address/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-address/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-address/debian/config b/ccm-cms-types-address/debian/config deleted file mode 100755 index 8895137ff..000000000 --- a/ccm-cms-types-address/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-address/debian/control b/ccm-cms-types-address/debian/control deleted file mode 100755 index c31609c02..000000000 --- a/ccm-cms-types-address/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-address -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-address -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Stores address infromation. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-address-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-address - Documentation for ccm-cms-types-address. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-address/debian/copyright b/ccm-cms-types-address/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-address/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-address/debian/postinst b/ccm-cms-types-address/debian/postinst deleted file mode 100755 index c08be9b53..000000000 --- a/ccm-cms-types-address/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-address -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-address/debian/postrm b/ccm-cms-types-address/debian/postrm deleted file mode 100755 index 13581a23a..000000000 --- a/ccm-cms-types-address/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-address -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-address/debian/prerm b/ccm-cms-types-address/debian/prerm deleted file mode 100755 index 0a6d31015..000000000 --- a/ccm-cms-types-address/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-address -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-address/debian/rules b/ccm-cms-types-address/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-address/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-address/debian/templates b/ccm-cms-types-address/debian/templates deleted file mode 100755 index b1c35f857..000000000 --- a/ccm-cms-types-address/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:02 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-address -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-address". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-address". diff --git a/ccm-cms-types-agenda/debian/ccm-build.sh b/ccm-cms-types-agenda/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-agenda/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-agenda/debian/ccm-clean.sh b/ccm-cms-types-agenda/debian/ccm-clean.sh deleted file mode 100755 index f8c7ae8c9..000000000 --- a/ccm-cms-types-agenda/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-agenda/debian/ccm-cms-types-agenda.dirs b/ccm-cms-types-agenda/debian/ccm-cms-types-agenda.dirs deleted file mode 100755 index b8fe33cf3..000000000 --- a/ccm-cms-types-agenda/debian/ccm-cms-types-agenda.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-agenda-6.3.0 diff --git a/ccm-cms-types-agenda/debian/ccm-config.sh b/ccm-cms-types-agenda/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-agenda/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-agenda/debian/ccm-disperse.sh b/ccm-cms-types-agenda/debian/ccm-disperse.sh deleted file mode 100755 index 4a2571c1d..000000000 --- a/ccm-cms-types-agenda/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-agenda/debian/ccm-install.sh b/ccm-cms-types-agenda/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-agenda/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-agenda/debian/ccm-settings-run.sh b/ccm-cms-types-agenda/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-agenda/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-agenda/debian/ccm-settings.sh b/ccm-cms-types-agenda/debian/ccm-settings.sh deleted file mode 100755 index 4f6d75d93..000000000 --- a/ccm-cms-types-agenda/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-agenda -version=6.3.0 -appname=ccm-cms-types-agenda -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-agenda/debian/changelog b/ccm-cms-types-agenda/debian/changelog deleted file mode 100755 index db20648a6..000000000 --- a/ccm-cms-types-agenda/debian/changelog +++ /dev/null @@ -1,76 +0,0 @@ -ccm-cms-types-agenda (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:55 +0000 - -ccm-cms-types-agenda (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:04 +0000 - -ccm-cms-types-agenda (6.1.2-2) unstable; urgency=low - - * dublincore metadata, 17509 - - -- My Tue, 17 May 2005 14:31:04 +0000 - -ccm-cms-types-agenda (6.1.2-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.1.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:50 +0000 - -ccm-cms-types-agenda (6.1.1-1) unstable; urgency=low - - * for release qa - - -- David Pashley Tue, 25 Jan 2005 11:36:41 +0000 - -ccm-cms-types-agenda (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Depend on debconf - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 25 Jan 2005 11:36:41 +0000 - -ccm-cms-types-agenda (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-agenda (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-agenda (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-agenda (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-agenda/debian/compat b/ccm-cms-types-agenda/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-agenda/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-agenda/debian/config b/ccm-cms-types-agenda/debian/config deleted file mode 100755 index bdb3a38a0..000000000 --- a/ccm-cms-types-agenda/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-agenda/debian/control b/ccm-cms-types-agenda/debian/control deleted file mode 100755 index 536e5c042..000000000 --- a/ccm-cms-types-agenda/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-agenda -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-agenda -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Agenda content type. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-agenda-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-agenda - Documentation for ccm-cms-types-agenda. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-agenda/debian/copyright b/ccm-cms-types-agenda/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-agenda/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-agenda/debian/postinst b/ccm-cms-types-agenda/debian/postinst deleted file mode 100755 index 66a954c46..000000000 --- a/ccm-cms-types-agenda/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-agenda -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-agenda/debian/postrm b/ccm-cms-types-agenda/debian/postrm deleted file mode 100755 index 5e0cf18f7..000000000 --- a/ccm-cms-types-agenda/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-agenda -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-agenda/debian/prerm b/ccm-cms-types-agenda/debian/prerm deleted file mode 100755 index 127eb2415..000000000 --- a/ccm-cms-types-agenda/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-agenda -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-agenda/debian/rules b/ccm-cms-types-agenda/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-agenda/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-agenda/debian/templates b/ccm-cms-types-agenda/debian/templates deleted file mode 100755 index e67eac1a2..000000000 --- a/ccm-cms-types-agenda/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-agenda -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-agenda". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-agenda". diff --git a/ccm-cms-types-article/debian/ccm-build.sh b/ccm-cms-types-article/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-article/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-article/debian/ccm-clean.sh b/ccm-cms-types-article/debian/ccm-clean.sh deleted file mode 100755 index f8c7ae8c9..000000000 --- a/ccm-cms-types-article/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-article/debian/ccm-cms-types-article.dirs b/ccm-cms-types-article/debian/ccm-cms-types-article.dirs deleted file mode 100755 index d16ff3652..000000000 --- a/ccm-cms-types-article/debian/ccm-cms-types-article.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-article-6.3.0 diff --git a/ccm-cms-types-article/debian/ccm-config.sh b/ccm-cms-types-article/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-article/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-article/debian/ccm-disperse.sh b/ccm-cms-types-article/debian/ccm-disperse.sh deleted file mode 100755 index 4a2571c1d..000000000 --- a/ccm-cms-types-article/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-article/debian/ccm-install.sh b/ccm-cms-types-article/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-article/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-article/debian/ccm-settings-run.sh b/ccm-cms-types-article/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-article/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-article/debian/ccm-settings.sh b/ccm-cms-types-article/debian/ccm-settings.sh deleted file mode 100755 index bfbdcafcb..000000000 --- a/ccm-cms-types-article/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-article -version=6.3.0 -appname=ccm-cms-types-article -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-article/debian/changelog b/ccm-cms-types-article/debian/changelog deleted file mode 100755 index 209f452dd..000000000 --- a/ccm-cms-types-article/debian/changelog +++ /dev/null @@ -1,64 +0,0 @@ -ccm-cms-types-article (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:55 +0000 - -ccm-cms-types-article (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:04 +0000 - -ccm-cms-types-article (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:50 +0000 - -ccm-cms-types-article (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Depend on debconf - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 10:13:54 +0000 - -ccm-cms-types-article (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-article (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-article (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-article (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-article/debian/compat b/ccm-cms-types-article/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-article/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-article/debian/config b/ccm-cms-types-article/debian/config deleted file mode 100755 index bdb3a38a0..000000000 --- a/ccm-cms-types-article/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-article/debian/control b/ccm-cms-types-article/debian/control deleted file mode 100755 index 2681d09fc..000000000 --- a/ccm-cms-types-article/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-article -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-article -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Article content type. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-article-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-article - Documentation for ccm-cms-types-article. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-article/debian/copyright b/ccm-cms-types-article/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-article/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-article/debian/postinst b/ccm-cms-types-article/debian/postinst deleted file mode 100755 index 857cbfb5a..000000000 --- a/ccm-cms-types-article/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-article -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-article/debian/postrm b/ccm-cms-types-article/debian/postrm deleted file mode 100755 index e2f8e5fcf..000000000 --- a/ccm-cms-types-article/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-article -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-article/debian/prerm b/ccm-cms-types-article/debian/prerm deleted file mode 100755 index ac481d70c..000000000 --- a/ccm-cms-types-article/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-article -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-article/debian/rules b/ccm-cms-types-article/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-article/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-article/debian/templates b/ccm-cms-types-article/debian/templates deleted file mode 100755 index 48e428344..000000000 --- a/ccm-cms-types-article/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-article -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-article". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-article". diff --git a/ccm-cms-types-baseAddress/debian/ccm-build.sh b/ccm-cms-types-baseAddress/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-baseAddress/debian/ccm-clean.sh b/ccm-cms-types-baseAddress/debian/ccm-clean.sh deleted file mode 100755 index b603830b4..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-baseAddress/debian/ccm-cms-types-organization.dirs b/ccm-cms-types-baseAddress/debian/ccm-cms-types-organization.dirs deleted file mode 100755 index f3698fd03..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-cms-types-organization.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-organization-6.3.0 diff --git a/ccm-cms-types-baseAddress/debian/ccm-config.sh b/ccm-cms-types-baseAddress/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-baseAddress/debian/ccm-disperse.sh b/ccm-cms-types-baseAddress/debian/ccm-disperse.sh deleted file mode 100755 index c08119d5d..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-baseAddress/debian/ccm-install.sh b/ccm-cms-types-baseAddress/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-baseAddress/debian/ccm-settings-run.sh b/ccm-cms-types-baseAddress/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-baseAddress/debian/ccm-settings.sh b/ccm-cms-types-baseAddress/debian/ccm-settings.sh deleted file mode 100755 index 98c80cc62..000000000 --- a/ccm-cms-types-baseAddress/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-organization -version=6.3.0 -appname=ccm-cms-types-organization -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-baseAddress/debian/changelog b/ccm-cms-types-baseAddress/debian/changelog deleted file mode 100755 index 898707560..000000000 --- a/ccm-cms-types-baseAddress/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-organization (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-organization (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-organization (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-organization (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 16:55:52 +0000 - -ccm-cms-types-organization (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-organization (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-organization (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-organization (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-baseAddress/debian/compat b/ccm-cms-types-baseAddress/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-baseAddress/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-baseAddress/debian/config b/ccm-cms-types-baseAddress/debian/config deleted file mode 100755 index 3b240fa27..000000000 --- a/ccm-cms-types-baseAddress/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-baseAddress/debian/control b/ccm-cms-types-baseAddress/debian/control deleted file mode 100755 index 58eb8bddc..000000000 --- a/ccm-cms-types-baseAddress/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-organization -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-organization -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Stores organization information. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-organization-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-organization - Documentation for ccm-cms-types-organization. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-baseAddress/debian/copyright b/ccm-cms-types-baseAddress/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-baseAddress/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-baseAddress/debian/postinst b/ccm-cms-types-baseAddress/debian/postinst deleted file mode 100755 index 5e36682a2..000000000 --- a/ccm-cms-types-baseAddress/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-organization -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-baseAddress/debian/postrm b/ccm-cms-types-baseAddress/debian/postrm deleted file mode 100755 index 3209381b3..000000000 --- a/ccm-cms-types-baseAddress/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-organization -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-baseAddress/debian/prerm b/ccm-cms-types-baseAddress/debian/prerm deleted file mode 100755 index ebf1e1b6c..000000000 --- a/ccm-cms-types-baseAddress/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-organization -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-baseAddress/debian/rules b/ccm-cms-types-baseAddress/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-baseAddress/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-baseAddress/debian/templates b/ccm-cms-types-baseAddress/debian/templates deleted file mode 100755 index b9de55f8e..000000000 --- a/ccm-cms-types-baseAddress/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-organization -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-organization". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-organization". diff --git a/ccm-cms-types-bookmark/debian/ccm-build.sh b/ccm-cms-types-bookmark/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-bookmark/debian/ccm-clean.sh b/ccm-cms-types-bookmark/debian/ccm-clean.sh deleted file mode 100755 index f8c7ae8c9..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-bookmark/debian/ccm-cms-types-bookmark.dirs b/ccm-cms-types-bookmark/debian/ccm-cms-types-bookmark.dirs deleted file mode 100755 index 807fbbe18..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-cms-types-bookmark.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-bookmark-6.3.0 diff --git a/ccm-cms-types-bookmark/debian/ccm-config.sh b/ccm-cms-types-bookmark/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-bookmark/debian/ccm-disperse.sh b/ccm-cms-types-bookmark/debian/ccm-disperse.sh deleted file mode 100755 index 4a2571c1d..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-bookmark/debian/ccm-install.sh b/ccm-cms-types-bookmark/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-bookmark/debian/ccm-settings-run.sh b/ccm-cms-types-bookmark/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-bookmark/debian/ccm-settings.sh b/ccm-cms-types-bookmark/debian/ccm-settings.sh deleted file mode 100755 index 3dfca2ab6..000000000 --- a/ccm-cms-types-bookmark/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-bookmark -version=6.3.0 -appname=ccm-cms-types-bookmark -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-bookmark/debian/changelog b/ccm-cms-types-bookmark/debian/changelog deleted file mode 100755 index 24b310a22..000000000 --- a/ccm-cms-types-bookmark/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-bookmark (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-bookmark (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:05 +0000 - -ccm-cms-types-bookmark (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:50 +0000 - -ccm-cms-types-bookmark (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 10:48:48 +0000 - -ccm-cms-types-bookmark (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-bookmark (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-bookmark (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-bookmark (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-bookmark/debian/compat b/ccm-cms-types-bookmark/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-bookmark/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-bookmark/debian/config b/ccm-cms-types-bookmark/debian/config deleted file mode 100755 index bdb3a38a0..000000000 --- a/ccm-cms-types-bookmark/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-bookmark/debian/control b/ccm-cms-types-bookmark/debian/control deleted file mode 100755 index faedf463c..000000000 --- a/ccm-cms-types-bookmark/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-bookmark -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-bookmark -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Creates bookmarks to websites. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-bookmark-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-bookmark - Documentation for ccm-cms-types-bookmark. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-bookmark/debian/copyright b/ccm-cms-types-bookmark/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-bookmark/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-bookmark/debian/postinst b/ccm-cms-types-bookmark/debian/postinst deleted file mode 100755 index b00e7f718..000000000 --- a/ccm-cms-types-bookmark/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-bookmark -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-bookmark/debian/postrm b/ccm-cms-types-bookmark/debian/postrm deleted file mode 100755 index 77c039104..000000000 --- a/ccm-cms-types-bookmark/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-bookmark -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-bookmark/debian/prerm b/ccm-cms-types-bookmark/debian/prerm deleted file mode 100755 index 225c6552c..000000000 --- a/ccm-cms-types-bookmark/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-bookmark -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-bookmark/debian/rules b/ccm-cms-types-bookmark/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-bookmark/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-bookmark/debian/templates b/ccm-cms-types-bookmark/debian/templates deleted file mode 100755 index 3bfd27794..000000000 --- a/ccm-cms-types-bookmark/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:03 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-bookmark -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-bookmark". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-bookmark". diff --git a/ccm-cms-types-contact/debian/ccm-build.sh b/ccm-cms-types-contact/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-contact/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-contact/debian/ccm-clean.sh b/ccm-cms-types-contact/debian/ccm-clean.sh deleted file mode 100755 index 9836bae0e..000000000 --- a/ccm-cms-types-contact/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-contact/debian/ccm-cms-types-contact.dirs b/ccm-cms-types-contact/debian/ccm-cms-types-contact.dirs deleted file mode 100755 index da37581f1..000000000 --- a/ccm-cms-types-contact/debian/ccm-cms-types-contact.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-contact-6.3.0 diff --git a/ccm-cms-types-contact/debian/ccm-config.sh b/ccm-cms-types-contact/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-contact/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-contact/debian/ccm-disperse.sh b/ccm-cms-types-contact/debian/ccm-disperse.sh deleted file mode 100755 index 545857161..000000000 --- a/ccm-cms-types-contact/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-contact/debian/ccm-install.sh b/ccm-cms-types-contact/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-contact/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-contact/debian/ccm-settings-run.sh b/ccm-cms-types-contact/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-contact/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-contact/debian/ccm-settings.sh b/ccm-cms-types-contact/debian/ccm-settings.sh deleted file mode 100755 index f0eaba9eb..000000000 --- a/ccm-cms-types-contact/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-contact -version=6.3.0 -appname=ccm-cms-types-contact -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-contact/debian/changelog b/ccm-cms-types-contact/debian/changelog deleted file mode 100755 index 67bb7b413..000000000 --- a/ccm-cms-types-contact/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-cms-types-contact (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-contact (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:05 +0000 - -ccm-cms-types-contact (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:31:37 +0000 - -ccm-cms-types-contact (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:50 +0000 - -ccm-cms-types-contact (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 11:00:35 +0000 - -ccm-cms-types-contact (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-contact (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-contact (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-contact (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-contact/debian/compat b/ccm-cms-types-contact/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-contact/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-contact/debian/config b/ccm-cms-types-contact/debian/config deleted file mode 100755 index ecebca557..000000000 --- a/ccm-cms-types-contact/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-contact/debian/control b/ccm-cms-types-contact/debian/control deleted file mode 100755 index 5e832beef..000000000 --- a/ccm-cms-types-contact/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-contact -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-contact -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-contact-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-contact - Documentation for ccm-cms-types-contact. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-contact/debian/copyright b/ccm-cms-types-contact/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-contact/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-contact/debian/postinst b/ccm-cms-types-contact/debian/postinst deleted file mode 100755 index a77f7f15f..000000000 --- a/ccm-cms-types-contact/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-contact -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-contact/debian/postrm b/ccm-cms-types-contact/debian/postrm deleted file mode 100755 index c18956782..000000000 --- a/ccm-cms-types-contact/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-contact -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-contact/debian/prerm b/ccm-cms-types-contact/debian/prerm deleted file mode 100755 index 1e2f7e75c..000000000 --- a/ccm-cms-types-contact/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-contact -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-contact/debian/rules b/ccm-cms-types-contact/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-contact/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-contact/debian/templates b/ccm-cms-types-contact/debian/templates deleted file mode 100755 index 29efdc185..000000000 --- a/ccm-cms-types-contact/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-contact -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-contact". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-contact". diff --git a/ccm-cms-types-esdservice/debian/ccm-build.sh b/ccm-cms-types-esdservice/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-esdservice/debian/ccm-clean.sh b/ccm-cms-types-esdservice/debian/ccm-clean.sh deleted file mode 100755 index 9836bae0e..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-esdservice/debian/ccm-cms-types-esdservice.dirs b/ccm-cms-types-esdservice/debian/ccm-cms-types-esdservice.dirs deleted file mode 100755 index 2ad4e6022..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-cms-types-esdservice.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-esdservice-6.3.0 diff --git a/ccm-cms-types-esdservice/debian/ccm-config.sh b/ccm-cms-types-esdservice/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-esdservice/debian/ccm-disperse.sh b/ccm-cms-types-esdservice/debian/ccm-disperse.sh deleted file mode 100755 index 545857161..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-esdservice/debian/ccm-install.sh b/ccm-cms-types-esdservice/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-esdservice/debian/ccm-settings-run.sh b/ccm-cms-types-esdservice/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-esdservice/debian/ccm-settings.sh b/ccm-cms-types-esdservice/debian/ccm-settings.sh deleted file mode 100755 index 450571ad5..000000000 --- a/ccm-cms-types-esdservice/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-esdservice -version=6.3.0 -appname=ccm-cms-types-esdservice -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-esdservice/debian/changelog b/ccm-cms-types-esdservice/debian/changelog deleted file mode 100755 index 98ac6c040..000000000 --- a/ccm-cms-types-esdservice/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-cms-types-esdservice (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-esdservice (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:05 +0000 - -ccm-cms-types-esdservice (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:29:35 +0000 - -ccm-cms-types-esdservice (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:51 +0000 - -ccm-cms-types-esdservice (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 11:16:03 +0000 - -ccm-cms-types-esdservice (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-esdservice (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-esdservice (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-esdservice (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-esdservice/debian/compat b/ccm-cms-types-esdservice/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-esdservice/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-esdservice/debian/config b/ccm-cms-types-esdservice/debian/config deleted file mode 100755 index ecebca557..000000000 --- a/ccm-cms-types-esdservice/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-esdservice/debian/control b/ccm-cms-types-esdservice/debian/control deleted file mode 100755 index a8b1fc02a..000000000 --- a/ccm-cms-types-esdservice/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-esdservice -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-cms-types-contact -Standards-Version: 3.6.1 - -Package: ccm-cms-types-esdservice -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-cms-types-contact -Description: APLAWS: - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-esdservice-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-esdservice - Documentation for ccm-cms-types-esdservice. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-esdservice/debian/copyright b/ccm-cms-types-esdservice/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-esdservice/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-esdservice/debian/postinst b/ccm-cms-types-esdservice/debian/postinst deleted file mode 100755 index 3b33f9e8c..000000000 --- a/ccm-cms-types-esdservice/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-esdservice -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-esdservice/debian/postrm b/ccm-cms-types-esdservice/debian/postrm deleted file mode 100755 index 45a7f6637..000000000 --- a/ccm-cms-types-esdservice/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-esdservice -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-esdservice/debian/prerm b/ccm-cms-types-esdservice/debian/prerm deleted file mode 100755 index bc74cfb5e..000000000 --- a/ccm-cms-types-esdservice/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-esdservice -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-esdservice/debian/rules b/ccm-cms-types-esdservice/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-esdservice/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-esdservice/debian/templates b/ccm-cms-types-esdservice/debian/templates deleted file mode 100755 index a8540c9cd..000000000 --- a/ccm-cms-types-esdservice/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:04 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-esdservice -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-esdservice". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-esdservice". diff --git a/ccm-cms-types-event/debian/ccm-build.sh b/ccm-cms-types-event/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-event/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-event/debian/ccm-clean.sh b/ccm-cms-types-event/debian/ccm-clean.sh deleted file mode 100755 index 58cee3b6b..000000000 --- a/ccm-cms-types-event/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-event/debian/ccm-cms-types-event.dirs b/ccm-cms-types-event/debian/ccm-cms-types-event.dirs deleted file mode 100755 index a5c0f47c3..000000000 --- a/ccm-cms-types-event/debian/ccm-cms-types-event.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-event-6.3.0 diff --git a/ccm-cms-types-event/debian/ccm-config.sh b/ccm-cms-types-event/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-event/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-event/debian/ccm-disperse.sh b/ccm-cms-types-event/debian/ccm-disperse.sh deleted file mode 100755 index c041c3f25..000000000 --- a/ccm-cms-types-event/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-event/debian/ccm-install.sh b/ccm-cms-types-event/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-event/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-event/debian/ccm-settings-run.sh b/ccm-cms-types-event/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-event/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-event/debian/ccm-settings.sh b/ccm-cms-types-event/debian/ccm-settings.sh deleted file mode 100755 index 0abbd8902..000000000 --- a/ccm-cms-types-event/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-event -version=6.3.0 -appname=ccm-cms-types-event -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-event/debian/changelog b/ccm-cms-types-event/debian/changelog deleted file mode 100755 index 02aa3aa8d..000000000 --- a/ccm-cms-types-event/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-cms-types-event (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-event (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:06 +0000 - -ccm-cms-types-event (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:30:42 +0000 - -ccm-cms-types-event (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:51 +0000 - -ccm-cms-types-event (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 11:21:18 +0000 - -ccm-cms-types-event (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-event (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-event (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-event (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-event/debian/compat b/ccm-cms-types-event/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-event/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-event/debian/config b/ccm-cms-types-event/debian/config deleted file mode 100755 index 644d2a730..000000000 --- a/ccm-cms-types-event/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-event/debian/control b/ccm-cms-types-event/debian/control deleted file mode 100755 index fc7aad507..000000000 --- a/ccm-cms-types-event/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-event -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-event -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Event content type. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-event-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-event - Documentation for ccm-cms-types-event. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-event/debian/copyright b/ccm-cms-types-event/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-event/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-event/debian/postinst b/ccm-cms-types-event/debian/postinst deleted file mode 100755 index 28753c678..000000000 --- a/ccm-cms-types-event/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-event -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-event/debian/postrm b/ccm-cms-types-event/debian/postrm deleted file mode 100755 index 53df90079..000000000 --- a/ccm-cms-types-event/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-event -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-event/debian/prerm b/ccm-cms-types-event/debian/prerm deleted file mode 100755 index bfb7f2662..000000000 --- a/ccm-cms-types-event/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-event -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-event/debian/rules b/ccm-cms-types-event/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-event/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-event/debian/templates b/ccm-cms-types-event/debian/templates deleted file mode 100755 index 7c181c719..000000000 --- a/ccm-cms-types-event/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-event -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-event". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-event". diff --git a/ccm-cms-types-faqitem/debian/ccm-build.sh b/ccm-cms-types-faqitem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-faqitem/debian/ccm-clean.sh b/ccm-cms-types-faqitem/debian/ccm-clean.sh deleted file mode 100755 index 58cee3b6b..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-faqitem/debian/ccm-cms-types-faqitem.dirs b/ccm-cms-types-faqitem/debian/ccm-cms-types-faqitem.dirs deleted file mode 100755 index 7318dd261..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-cms-types-faqitem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-faqitem-6.3.0 diff --git a/ccm-cms-types-faqitem/debian/ccm-config.sh b/ccm-cms-types-faqitem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-faqitem/debian/ccm-disperse.sh b/ccm-cms-types-faqitem/debian/ccm-disperse.sh deleted file mode 100755 index c041c3f25..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-faqitem/debian/ccm-install.sh b/ccm-cms-types-faqitem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-faqitem/debian/ccm-settings-run.sh b/ccm-cms-types-faqitem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-faqitem/debian/ccm-settings.sh b/ccm-cms-types-faqitem/debian/ccm-settings.sh deleted file mode 100755 index b41dad410..000000000 --- a/ccm-cms-types-faqitem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-faqitem -version=6.3.0 -appname=ccm-cms-types-faqitem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-faqitem/debian/changelog b/ccm-cms-types-faqitem/debian/changelog deleted file mode 100755 index e7b2fd9d3..000000000 --- a/ccm-cms-types-faqitem/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-faqitem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-faqitem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:06 +0000 - -ccm-cms-types-faqitem (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:51 +0000 - -ccm-cms-types-faqitem (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:11:45 +0000 - -ccm-cms-types-faqitem (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-faqitem (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-faqitem (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-faqitem (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-faqitem/debian/compat b/ccm-cms-types-faqitem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-faqitem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-faqitem/debian/config b/ccm-cms-types-faqitem/debian/config deleted file mode 100755 index 644d2a730..000000000 --- a/ccm-cms-types-faqitem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-faqitem/debian/control b/ccm-cms-types-faqitem/debian/control deleted file mode 100755 index 19db0fb13..000000000 --- a/ccm-cms-types-faqitem/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-faqitem -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-faqitem -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Stores frequently asked questions and answers. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-faqitem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-faqitem - Documentation for ccm-cms-types-faqitem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-faqitem/debian/copyright b/ccm-cms-types-faqitem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-faqitem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-faqitem/debian/postinst b/ccm-cms-types-faqitem/debian/postinst deleted file mode 100755 index f4f6546c3..000000000 --- a/ccm-cms-types-faqitem/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-faqitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-faqitem/debian/postrm b/ccm-cms-types-faqitem/debian/postrm deleted file mode 100755 index 7ed829baa..000000000 --- a/ccm-cms-types-faqitem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-faqitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-faqitem/debian/prerm b/ccm-cms-types-faqitem/debian/prerm deleted file mode 100755 index 959a78a85..000000000 --- a/ccm-cms-types-faqitem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-faqitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-faqitem/debian/rules b/ccm-cms-types-faqitem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-faqitem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-faqitem/debian/templates b/ccm-cms-types-faqitem/debian/templates deleted file mode 100755 index aad70bfd4..000000000 --- a/ccm-cms-types-faqitem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:05 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-faqitem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-faqitem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-faqitem". diff --git a/ccm-cms-types-filestorageitem/debian/ccm-build.sh b/ccm-cms-types-filestorageitem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-filestorageitem/debian/ccm-clean.sh b/ccm-cms-types-filestorageitem/debian/ccm-clean.sh deleted file mode 100755 index 2ae1122cd..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-filestorageitem/debian/ccm-cms-types-filestorageitem.dirs b/ccm-cms-types-filestorageitem/debian/ccm-cms-types-filestorageitem.dirs deleted file mode 100755 index 6ce8b7700..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-cms-types-filestorageitem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-filestorageitem-6.3.0 diff --git a/ccm-cms-types-filestorageitem/debian/ccm-config.sh b/ccm-cms-types-filestorageitem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-filestorageitem/debian/ccm-disperse.sh b/ccm-cms-types-filestorageitem/debian/ccm-disperse.sh deleted file mode 100755 index e7b9952d1..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-filestorageitem/debian/ccm-install.sh b/ccm-cms-types-filestorageitem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-filestorageitem/debian/ccm-settings-run.sh b/ccm-cms-types-filestorageitem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-filestorageitem/debian/ccm-settings.sh b/ccm-cms-types-filestorageitem/debian/ccm-settings.sh deleted file mode 100755 index 4a2949ec2..000000000 --- a/ccm-cms-types-filestorageitem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-filestorageitem -version=6.3.0 -appname=ccm-cms-types-filestorageitem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-filestorageitem/debian/changelog b/ccm-cms-types-filestorageitem/debian/changelog deleted file mode 100755 index b37f7cbf9..000000000 --- a/ccm-cms-types-filestorageitem/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-cms-types-filestorageitem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-filestorageitem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:06 +0000 - -ccm-cms-types-filestorageitem (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:31:08 +0000 - -ccm-cms-types-filestorageitem (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:51 +0000 - -ccm-cms-types-filestorageitem (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:14:47 +0000 - -ccm-cms-types-filestorageitem (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-filestorageitem (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-filestorageitem (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-filestorageitem (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-filestorageitem/debian/compat b/ccm-cms-types-filestorageitem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-filestorageitem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-filestorageitem/debian/config b/ccm-cms-types-filestorageitem/debian/config deleted file mode 100755 index 39319b60e..000000000 --- a/ccm-cms-types-filestorageitem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-filestorageitem/debian/control b/ccm-cms-types-filestorageitem/debian/control deleted file mode 100755 index 75f7fc80c..000000000 --- a/ccm-cms-types-filestorageitem/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-filestorageitem -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-filestorageitem -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-filestorageitem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-filestorageitem - Documentation for ccm-cms-types-filestorageitem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-filestorageitem/debian/copyright b/ccm-cms-types-filestorageitem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-filestorageitem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-filestorageitem/debian/postinst b/ccm-cms-types-filestorageitem/debian/postinst deleted file mode 100755 index 797773963..000000000 --- a/ccm-cms-types-filestorageitem/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-filestorageitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-filestorageitem/debian/postrm b/ccm-cms-types-filestorageitem/debian/postrm deleted file mode 100755 index 78bcd6385..000000000 --- a/ccm-cms-types-filestorageitem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-filestorageitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-filestorageitem/debian/prerm b/ccm-cms-types-filestorageitem/debian/prerm deleted file mode 100755 index 523f9ef10..000000000 --- a/ccm-cms-types-filestorageitem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-filestorageitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-filestorageitem/debian/rules b/ccm-cms-types-filestorageitem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-filestorageitem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-filestorageitem/debian/templates b/ccm-cms-types-filestorageitem/debian/templates deleted file mode 100755 index a578cc1e4..000000000 --- a/ccm-cms-types-filestorageitem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-filestorageitem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-filestorageitem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-filestorageitem". diff --git a/ccm-cms-types-formitem/debian/ccm-build.sh b/ccm-cms-types-formitem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-formitem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-formitem/debian/ccm-clean.sh b/ccm-cms-types-formitem/debian/ccm-clean.sh deleted file mode 100755 index 2ae1122cd..000000000 --- a/ccm-cms-types-formitem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-formitem/debian/ccm-cms-types-formitem.dirs b/ccm-cms-types-formitem/debian/ccm-cms-types-formitem.dirs deleted file mode 100755 index f4e247dc7..000000000 --- a/ccm-cms-types-formitem/debian/ccm-cms-types-formitem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-formitem-6.3.0 diff --git a/ccm-cms-types-formitem/debian/ccm-config.sh b/ccm-cms-types-formitem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-formitem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-formitem/debian/ccm-disperse.sh b/ccm-cms-types-formitem/debian/ccm-disperse.sh deleted file mode 100755 index e7b9952d1..000000000 --- a/ccm-cms-types-formitem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-formitem/debian/ccm-install.sh b/ccm-cms-types-formitem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-formitem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-formitem/debian/ccm-settings-run.sh b/ccm-cms-types-formitem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-formitem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-formitem/debian/ccm-settings.sh b/ccm-cms-types-formitem/debian/ccm-settings.sh deleted file mode 100755 index 1927f19da..000000000 --- a/ccm-cms-types-formitem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-formitem -version=6.3.0 -appname=ccm-cms-types-formitem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-formitem/debian/changelog b/ccm-cms-types-formitem/debian/changelog deleted file mode 100755 index 4bee9468c..000000000 --- a/ccm-cms-types-formitem/debian/changelog +++ /dev/null @@ -1,81 +0,0 @@ -ccm-cms-types-formitem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-formitem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:06 +0000 - -ccm-cms-types-formitem (6.1.2-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.1.2 - - -- Runtime Collective Ltd. Mon, 05 Sep 2005 15:48:04 +0000 - -ccm-cms-types-formitem (6.1.1-3) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:30:56 +0000 - -ccm-cms-types-formitem (6.1.1-2) unstable; urgency=low - - * 17509 fix for dublincore dates - - -- My Fri, 29 Apr 2005 13:19:52 +0000 - -ccm-cms-types-formitem (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:51 +0000 - -ccm-cms-types-formitem (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:25:15 +0000 - -ccm-cms-types-formitem (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-formitem (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-formitem (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-formitem (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-formitem/debian/compat b/ccm-cms-types-formitem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-formitem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-formitem/debian/config b/ccm-cms-types-formitem/debian/config deleted file mode 100755 index 39319b60e..000000000 --- a/ccm-cms-types-formitem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-formitem/debian/control b/ccm-cms-types-formitem/debian/control deleted file mode 100755 index 84a01c136..000000000 --- a/ccm-cms-types-formitem/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-formitem -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-cms-types-formsectionitem -Standards-Version: 3.6.1 - -Package: ccm-cms-types-formitem -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-cms-types-formsectionitem -Description: APLAWS: The Form content type for creating forms. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-formitem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-formitem - Documentation for ccm-cms-types-formitem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-formitem/debian/copyright b/ccm-cms-types-formitem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-formitem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-formitem/debian/postinst b/ccm-cms-types-formitem/debian/postinst deleted file mode 100755 index d66e91369..000000000 --- a/ccm-cms-types-formitem/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-formitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-formitem/debian/postrm b/ccm-cms-types-formitem/debian/postrm deleted file mode 100755 index de37bb9cb..000000000 --- a/ccm-cms-types-formitem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-formitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-formitem/debian/prerm b/ccm-cms-types-formitem/debian/prerm deleted file mode 100755 index 611d2630c..000000000 --- a/ccm-cms-types-formitem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-formitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-formitem/debian/rules b/ccm-cms-types-formitem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-formitem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-formitem/debian/templates b/ccm-cms-types-formitem/debian/templates deleted file mode 100755 index d4bae26f2..000000000 --- a/ccm-cms-types-formitem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-formitem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-formitem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-formitem". diff --git a/ccm-cms-types-formsectionitem/debian/ccm-build.sh b/ccm-cms-types-formsectionitem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-formsectionitem/debian/ccm-clean.sh b/ccm-cms-types-formsectionitem/debian/ccm-clean.sh deleted file mode 100755 index 2ae1122cd..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-formsectionitem/debian/ccm-cms-types-formsectionitem.dirs b/ccm-cms-types-formsectionitem/debian/ccm-cms-types-formsectionitem.dirs deleted file mode 100755 index 48effc64e..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-cms-types-formsectionitem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-formsectionitem-6.3.0 diff --git a/ccm-cms-types-formsectionitem/debian/ccm-config.sh b/ccm-cms-types-formsectionitem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-formsectionitem/debian/ccm-disperse.sh b/ccm-cms-types-formsectionitem/debian/ccm-disperse.sh deleted file mode 100755 index e7b9952d1..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-formsectionitem/debian/ccm-install.sh b/ccm-cms-types-formsectionitem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-formsectionitem/debian/ccm-settings-run.sh b/ccm-cms-types-formsectionitem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-formsectionitem/debian/ccm-settings.sh b/ccm-cms-types-formsectionitem/debian/ccm-settings.sh deleted file mode 100755 index 03878ade2..000000000 --- a/ccm-cms-types-formsectionitem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-formsectionitem -version=6.3.0 -appname=ccm-cms-types-formsectionitem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-formsectionitem/debian/changelog b/ccm-cms-types-formsectionitem/debian/changelog deleted file mode 100755 index 872083fc1..000000000 --- a/ccm-cms-types-formsectionitem/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-cms-types-formsectionitem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:56 +0000 - -ccm-cms-types-formsectionitem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:07 +0000 - -ccm-cms-types-formsectionitem (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:29:52 +0000 - -ccm-cms-types-formsectionitem (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:51 +0000 - -ccm-cms-types-formsectionitem (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:26:39 +0000 - -ccm-cms-types-formsectionitem (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-formsectionitem (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-formsectionitem (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-formsectionitem (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-formsectionitem/debian/compat b/ccm-cms-types-formsectionitem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-formsectionitem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-formsectionitem/debian/config b/ccm-cms-types-formsectionitem/debian/config deleted file mode 100755 index 39319b60e..000000000 --- a/ccm-cms-types-formsectionitem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-formsectionitem/debian/control b/ccm-cms-types-formsectionitem/debian/control deleted file mode 100755 index aad3d88a8..000000000 --- a/ccm-cms-types-formsectionitem/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-formsectionitem -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-formsectionitem -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The FormSection content type for greating parts of a form. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-formsectionitem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-formsectionitem - Documentation for ccm-cms-types-formsectionitem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-formsectionitem/debian/copyright b/ccm-cms-types-formsectionitem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-formsectionitem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-formsectionitem/debian/postinst b/ccm-cms-types-formsectionitem/debian/postinst deleted file mode 100755 index 3adf57ed8..000000000 --- a/ccm-cms-types-formsectionitem/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-formsectionitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-formsectionitem/debian/postrm b/ccm-cms-types-formsectionitem/debian/postrm deleted file mode 100755 index 6e0c90fa1..000000000 --- a/ccm-cms-types-formsectionitem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-formsectionitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-formsectionitem/debian/prerm b/ccm-cms-types-formsectionitem/debian/prerm deleted file mode 100755 index d148d02f8..000000000 --- a/ccm-cms-types-formsectionitem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-formsectionitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-formsectionitem/debian/rules b/ccm-cms-types-formsectionitem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-formsectionitem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-formsectionitem/debian/templates b/ccm-cms-types-formsectionitem/debian/templates deleted file mode 100755 index fbf789614..000000000 --- a/ccm-cms-types-formsectionitem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:06 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-formsectionitem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-formsectionitem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-formsectionitem". diff --git a/ccm-cms-types-glossaryitem/debian/ccm-build.sh b/ccm-cms-types-glossaryitem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-glossaryitem/debian/ccm-clean.sh b/ccm-cms-types-glossaryitem/debian/ccm-clean.sh deleted file mode 100755 index 80f041b11..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-glossaryitem/debian/ccm-cms-types-glossaryitem.dirs b/ccm-cms-types-glossaryitem/debian/ccm-cms-types-glossaryitem.dirs deleted file mode 100755 index 4d001b794..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-cms-types-glossaryitem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-glossaryitem-6.3.0 diff --git a/ccm-cms-types-glossaryitem/debian/ccm-config.sh b/ccm-cms-types-glossaryitem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-glossaryitem/debian/ccm-disperse.sh b/ccm-cms-types-glossaryitem/debian/ccm-disperse.sh deleted file mode 100755 index 7ab5aad16..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-glossaryitem/debian/ccm-install.sh b/ccm-cms-types-glossaryitem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-glossaryitem/debian/ccm-settings-run.sh b/ccm-cms-types-glossaryitem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-glossaryitem/debian/ccm-settings.sh b/ccm-cms-types-glossaryitem/debian/ccm-settings.sh deleted file mode 100755 index a9a9896bb..000000000 --- a/ccm-cms-types-glossaryitem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-glossaryitem -version=6.3.0 -appname=ccm-cms-types-glossaryitem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-glossaryitem/debian/changelog b/ccm-cms-types-glossaryitem/debian/changelog deleted file mode 100755 index 2710c2d32..000000000 --- a/ccm-cms-types-glossaryitem/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-glossaryitem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-glossaryitem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:07 +0000 - -ccm-cms-types-glossaryitem (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:52 +0000 - -ccm-cms-types-glossaryitem (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:29:01 +0000 - -ccm-cms-types-glossaryitem (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-glossaryitem (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-glossaryitem (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-glossaryitem (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-glossaryitem/debian/compat b/ccm-cms-types-glossaryitem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-glossaryitem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-glossaryitem/debian/config b/ccm-cms-types-glossaryitem/debian/config deleted file mode 100755 index 7cdad851f..000000000 --- a/ccm-cms-types-glossaryitem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-glossaryitem/debian/control b/ccm-cms-types-glossaryitem/debian/control deleted file mode 100755 index 9bc952e98..000000000 --- a/ccm-cms-types-glossaryitem/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-glossaryitem -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-glossaryitem -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Stores glossary terms and definition. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-glossaryitem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-glossaryitem - Documentation for ccm-cms-types-glossaryitem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-glossaryitem/debian/copyright b/ccm-cms-types-glossaryitem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-glossaryitem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-glossaryitem/debian/postinst b/ccm-cms-types-glossaryitem/debian/postinst deleted file mode 100755 index b601c709e..000000000 --- a/ccm-cms-types-glossaryitem/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-glossaryitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-glossaryitem/debian/postrm b/ccm-cms-types-glossaryitem/debian/postrm deleted file mode 100755 index 298766608..000000000 --- a/ccm-cms-types-glossaryitem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-glossaryitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-glossaryitem/debian/prerm b/ccm-cms-types-glossaryitem/debian/prerm deleted file mode 100755 index 0704e2d9a..000000000 --- a/ccm-cms-types-glossaryitem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-glossaryitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-glossaryitem/debian/rules b/ccm-cms-types-glossaryitem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-glossaryitem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-glossaryitem/debian/templates b/ccm-cms-types-glossaryitem/debian/templates deleted file mode 100755 index d34af9e9b..000000000 --- a/ccm-cms-types-glossaryitem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:07 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-glossaryitem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-glossaryitem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-glossaryitem". diff --git a/ccm-cms-types-htmlform/debian/ccm-auth-http.dirs b/ccm-cms-types-htmlform/debian/ccm-auth-http.dirs deleted file mode 100755 index 41dfc2b96..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-auth-http.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-htmlform-1.4.1 diff --git a/ccm-cms-types-htmlform/debian/ccm-build.sh b/ccm-cms-types-htmlform/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-htmlform/debian/ccm-clean.sh b/ccm-cms-types-htmlform/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-htmlform/debian/ccm-cms-types-htmlform.dirs b/ccm-cms-types-htmlform/debian/ccm-cms-types-htmlform.dirs deleted file mode 100755 index 389cebb66..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-cms-types-htmlform.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-htmlform-6.3.0 diff --git a/ccm-cms-types-htmlform/debian/ccm-config.sh b/ccm-cms-types-htmlform/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-htmlform/debian/ccm-disperse.sh b/ccm-cms-types-htmlform/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-htmlform/debian/ccm-install.sh b/ccm-cms-types-htmlform/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-htmlform/debian/ccm-settings-run.sh b/ccm-cms-types-htmlform/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-htmlform/debian/ccm-settings.sh b/ccm-cms-types-htmlform/debian/ccm-settings.sh deleted file mode 100755 index abd0ea62a..000000000 --- a/ccm-cms-types-htmlform/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-htmlform -version=6.3.0 -appname=ccm-cms-types-htmlform -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-htmlform/debian/changelog b/ccm-cms-types-htmlform/debian/changelog deleted file mode 100755 index ec37e7e3f..000000000 --- a/ccm-cms-types-htmlform/debian/changelog +++ /dev/null @@ -1,17 +0,0 @@ -ccm-cms-types-htmlform (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-htmlform (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:07 +0000 - -ccm-cms-types-htmlform (6.1.1-1) unstable; urgency=low - - * Initial release. - - -- Fabrice Retkowsky Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-htmlform/debian/compat b/ccm-cms-types-htmlform/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-htmlform/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-htmlform/debian/config b/ccm-cms-types-htmlform/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-cms-types-htmlform/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-htmlform/debian/control b/ccm-cms-types-htmlform/debian/control deleted file mode 100755 index 1d661b37f..000000000 --- a/ccm-cms-types-htmlform/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-htmlform -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-cms, ccm-devel, ccm-scripts, ccm-core, ccm-cms-types-article -Standards-Version: 3.6.1 - -Package: ccm-cms-types-htmlform -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-cms -Description: APLAWS: NTLM authentication module. - This package contains the Auth HTTP application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-htmlform-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-htmlform - Documentation for ccm-cms-types-htmlform. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-htmlform/debian/copyright b/ccm-cms-types-htmlform/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-htmlform/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-htmlform/debian/postinst b/ccm-cms-types-htmlform/debian/postinst deleted file mode 100755 index 83091e4d3..000000000 --- a/ccm-cms-types-htmlform/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-htmlform -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-htmlform/debian/postrm b/ccm-cms-types-htmlform/debian/postrm deleted file mode 100755 index 9500e9637..000000000 --- a/ccm-cms-types-htmlform/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-htmlform -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-htmlform/debian/prerm b/ccm-cms-types-htmlform/debian/prerm deleted file mode 100755 index 40f59a09b..000000000 --- a/ccm-cms-types-htmlform/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-htmlform -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-htmlform/debian/rules b/ccm-cms-types-htmlform/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-htmlform/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-htmlform/debian/templates b/ccm-cms-types-htmlform/debian/templates deleted file mode 100755 index 9c12f18f4..000000000 --- a/ccm-cms-types-htmlform/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-htmlform -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-htmlform". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-htmlform". diff --git a/ccm-cms-types-inlinesite/debian/ccm-build.sh b/ccm-cms-types-inlinesite/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-inlinesite/debian/ccm-clean.sh b/ccm-cms-types-inlinesite/debian/ccm-clean.sh deleted file mode 100755 index b17356980..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-inlinesite/debian/ccm-cms-types-inlinesite.dirs b/ccm-cms-types-inlinesite/debian/ccm-cms-types-inlinesite.dirs deleted file mode 100755 index b15144c54..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-cms-types-inlinesite.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-inlinesite-6.3.0 diff --git a/ccm-cms-types-inlinesite/debian/ccm-config.sh b/ccm-cms-types-inlinesite/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-inlinesite/debian/ccm-disperse.sh b/ccm-cms-types-inlinesite/debian/ccm-disperse.sh deleted file mode 100755 index 7038b547f..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-inlinesite/debian/ccm-install.sh b/ccm-cms-types-inlinesite/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-inlinesite/debian/ccm-settings-run.sh b/ccm-cms-types-inlinesite/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-inlinesite/debian/ccm-settings.sh b/ccm-cms-types-inlinesite/debian/ccm-settings.sh deleted file mode 100755 index 3ef7f6c0b..000000000 --- a/ccm-cms-types-inlinesite/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-inlinesite -version=6.3.0 -appname=ccm-cms-types-inlinesite -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-inlinesite/debian/changelog b/ccm-cms-types-inlinesite/debian/changelog deleted file mode 100755 index 415268773..000000000 --- a/ccm-cms-types-inlinesite/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-inlinesite (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-inlinesite (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:07 +0000 - -ccm-cms-types-inlinesite (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:52 +0000 - -ccm-cms-types-inlinesite (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:31:22 +0000 - -ccm-cms-types-inlinesite (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-inlinesite (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-inlinesite (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-inlinesite (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-inlinesite/debian/compat b/ccm-cms-types-inlinesite/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-inlinesite/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-inlinesite/debian/config b/ccm-cms-types-inlinesite/debian/config deleted file mode 100755 index 7b17f3214..000000000 --- a/ccm-cms-types-inlinesite/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-inlinesite/debian/control b/ccm-cms-types-inlinesite/debian/control deleted file mode 100755 index 39982feb1..000000000 --- a/ccm-cms-types-inlinesite/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-inlinesite -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-inlinesite -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Displays a remote website in a wireframe. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-inlinesite-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-inlinesite - Documentation for ccm-cms-types-inlinesite. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-inlinesite/debian/copyright b/ccm-cms-types-inlinesite/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-inlinesite/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-inlinesite/debian/postinst b/ccm-cms-types-inlinesite/debian/postinst deleted file mode 100755 index 206dd6471..000000000 --- a/ccm-cms-types-inlinesite/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-inlinesite -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-inlinesite/debian/postrm b/ccm-cms-types-inlinesite/debian/postrm deleted file mode 100755 index 34f7a5bbd..000000000 --- a/ccm-cms-types-inlinesite/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-inlinesite -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-inlinesite/debian/prerm b/ccm-cms-types-inlinesite/debian/prerm deleted file mode 100755 index 0386b6b10..000000000 --- a/ccm-cms-types-inlinesite/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-inlinesite -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-inlinesite/debian/rules b/ccm-cms-types-inlinesite/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-inlinesite/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-inlinesite/debian/templates b/ccm-cms-types-inlinesite/debian/templates deleted file mode 100755 index f0b7adb50..000000000 --- a/ccm-cms-types-inlinesite/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-inlinesite -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-inlinesite". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-inlinesite". diff --git a/ccm-cms-types-job/debian/ccm-build.sh b/ccm-cms-types-job/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-job/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-job/debian/ccm-clean.sh b/ccm-cms-types-job/debian/ccm-clean.sh deleted file mode 100755 index b17356980..000000000 --- a/ccm-cms-types-job/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-job/debian/ccm-cms-types-job.dirs b/ccm-cms-types-job/debian/ccm-cms-types-job.dirs deleted file mode 100755 index afe7eca1d..000000000 --- a/ccm-cms-types-job/debian/ccm-cms-types-job.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-job-6.3.0 diff --git a/ccm-cms-types-job/debian/ccm-config.sh b/ccm-cms-types-job/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-job/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-job/debian/ccm-disperse.sh b/ccm-cms-types-job/debian/ccm-disperse.sh deleted file mode 100755 index 7038b547f..000000000 --- a/ccm-cms-types-job/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-job/debian/ccm-install.sh b/ccm-cms-types-job/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-job/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-job/debian/ccm-settings-run.sh b/ccm-cms-types-job/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-job/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-job/debian/ccm-settings.sh b/ccm-cms-types-job/debian/ccm-settings.sh deleted file mode 100755 index c65433558..000000000 --- a/ccm-cms-types-job/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-job -version=6.3.0 -appname=ccm-cms-types-job -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-job/debian/changelog b/ccm-cms-types-job/debian/changelog deleted file mode 100755 index f03f5f3a7..000000000 --- a/ccm-cms-types-job/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-cms-types-job (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-job (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:07 +0000 - -ccm-cms-types-job (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:30:12 +0000 - -ccm-cms-types-job (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:52 +0000 - -ccm-cms-types-job (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:34:38 +0000 - -ccm-cms-types-job (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-job (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-job (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-job (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-job/debian/compat b/ccm-cms-types-job/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-job/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-job/debian/config b/ccm-cms-types-job/debian/config deleted file mode 100755 index 7b17f3214..000000000 --- a/ccm-cms-types-job/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-job/debian/control b/ccm-cms-types-job/debian/control deleted file mode 100755 index 08e242e2b..000000000 --- a/ccm-cms-types-job/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-job -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-job -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Job content type for publishing job vacancy announcements. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-job-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-job - Documentation for ccm-cms-types-job. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-job/debian/copyright b/ccm-cms-types-job/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-job/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-job/debian/postinst b/ccm-cms-types-job/debian/postinst deleted file mode 100755 index 1b3ef262b..000000000 --- a/ccm-cms-types-job/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-job -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-job/debian/postrm b/ccm-cms-types-job/debian/postrm deleted file mode 100755 index ba53ad4a1..000000000 --- a/ccm-cms-types-job/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-job -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-job/debian/prerm b/ccm-cms-types-job/debian/prerm deleted file mode 100755 index 6a26887da..000000000 --- a/ccm-cms-types-job/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-job -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-job/debian/rules b/ccm-cms-types-job/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-job/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-job/debian/templates b/ccm-cms-types-job/debian/templates deleted file mode 100755 index d3524ad5a..000000000 --- a/ccm-cms-types-job/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-job -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-job". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-job". diff --git a/ccm-cms-types-legalnotice/debian/ccm-build.sh b/ccm-cms-types-legalnotice/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-legalnotice/debian/ccm-clean.sh b/ccm-cms-types-legalnotice/debian/ccm-clean.sh deleted file mode 100755 index b17356980..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-legalnotice/debian/ccm-cms-types-legalnotice.dirs b/ccm-cms-types-legalnotice/debian/ccm-cms-types-legalnotice.dirs deleted file mode 100755 index 983dbd4eb..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-cms-types-legalnotice.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-legalnotice-6.3.0 diff --git a/ccm-cms-types-legalnotice/debian/ccm-config.sh b/ccm-cms-types-legalnotice/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-legalnotice/debian/ccm-disperse.sh b/ccm-cms-types-legalnotice/debian/ccm-disperse.sh deleted file mode 100755 index 7038b547f..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-legalnotice/debian/ccm-install.sh b/ccm-cms-types-legalnotice/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-legalnotice/debian/ccm-settings-run.sh b/ccm-cms-types-legalnotice/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-legalnotice/debian/ccm-settings.sh b/ccm-cms-types-legalnotice/debian/ccm-settings.sh deleted file mode 100755 index de395e72f..000000000 --- a/ccm-cms-types-legalnotice/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-legalnotice -version=6.3.0 -appname=ccm-cms-types-legalnotice -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-legalnotice/debian/changelog b/ccm-cms-types-legalnotice/debian/changelog deleted file mode 100755 index 8d990c0b9..000000000 --- a/ccm-cms-types-legalnotice/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-legalnotice (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-legalnotice (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-legalnotice (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:52 +0000 - -ccm-cms-types-legalnotice (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:54:59 +0000 - -ccm-cms-types-legalnotice (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-legalnotice (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-legalnotice (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-legalnotice (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-legalnotice/debian/compat b/ccm-cms-types-legalnotice/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-legalnotice/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-legalnotice/debian/config b/ccm-cms-types-legalnotice/debian/config deleted file mode 100755 index 7b17f3214..000000000 --- a/ccm-cms-types-legalnotice/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-legalnotice/debian/control b/ccm-cms-types-legalnotice/debian/control deleted file mode 100755 index 63e75ef74..000000000 --- a/ccm-cms-types-legalnotice/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-legalnotice -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-legalnotice -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Legal Notice for publishing legal notices. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-legalnotice-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-legalnotice - Documentation for ccm-cms-types-legalnotice. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-legalnotice/debian/copyright b/ccm-cms-types-legalnotice/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-legalnotice/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-legalnotice/debian/postinst b/ccm-cms-types-legalnotice/debian/postinst deleted file mode 100755 index 19c0c4f34..000000000 --- a/ccm-cms-types-legalnotice/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-legalnotice -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-legalnotice/debian/postrm b/ccm-cms-types-legalnotice/debian/postrm deleted file mode 100755 index e97be93f7..000000000 --- a/ccm-cms-types-legalnotice/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-legalnotice -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-legalnotice/debian/prerm b/ccm-cms-types-legalnotice/debian/prerm deleted file mode 100755 index 280453b35..000000000 --- a/ccm-cms-types-legalnotice/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-legalnotice -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-legalnotice/debian/rules b/ccm-cms-types-legalnotice/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-legalnotice/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-legalnotice/debian/templates b/ccm-cms-types-legalnotice/debian/templates deleted file mode 100755 index bee41e0cf..000000000 --- a/ccm-cms-types-legalnotice/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-legalnotice -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-legalnotice". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-legalnotice". diff --git a/ccm-cms-types-minutes/debian/ccm-build.sh b/ccm-cms-types-minutes/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-minutes/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-minutes/debian/ccm-clean.sh b/ccm-cms-types-minutes/debian/ccm-clean.sh deleted file mode 100755 index b17356980..000000000 --- a/ccm-cms-types-minutes/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-minutes/debian/ccm-cms-types-minutes.dirs b/ccm-cms-types-minutes/debian/ccm-cms-types-minutes.dirs deleted file mode 100755 index 9f0115547..000000000 --- a/ccm-cms-types-minutes/debian/ccm-cms-types-minutes.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-minutes-6.3.0 diff --git a/ccm-cms-types-minutes/debian/ccm-config.sh b/ccm-cms-types-minutes/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-minutes/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-minutes/debian/ccm-disperse.sh b/ccm-cms-types-minutes/debian/ccm-disperse.sh deleted file mode 100755 index 7038b547f..000000000 --- a/ccm-cms-types-minutes/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-minutes/debian/ccm-install.sh b/ccm-cms-types-minutes/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-minutes/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-minutes/debian/ccm-settings-run.sh b/ccm-cms-types-minutes/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-minutes/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-minutes/debian/ccm-settings.sh b/ccm-cms-types-minutes/debian/ccm-settings.sh deleted file mode 100755 index 95b9d8390..000000000 --- a/ccm-cms-types-minutes/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-minutes -version=6.3.0 -appname=ccm-cms-types-minutes -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-minutes/debian/changelog b/ccm-cms-types-minutes/debian/changelog deleted file mode 100755 index a0c525bf4..000000000 --- a/ccm-cms-types-minutes/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-minutes (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-minutes (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-minutes (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:52 +0000 - -ccm-cms-types-minutes (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:56:56 +0000 - -ccm-cms-types-minutes (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-minutes (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-minutes (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-minutes (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-minutes/debian/compat b/ccm-cms-types-minutes/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-minutes/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-minutes/debian/config b/ccm-cms-types-minutes/debian/config deleted file mode 100755 index 7b17f3214..000000000 --- a/ccm-cms-types-minutes/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-minutes/debian/control b/ccm-cms-types-minutes/debian/control deleted file mode 100755 index abf53a489..000000000 --- a/ccm-cms-types-minutes/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-minutes -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-minutes -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Minutes content type for publishing meeting minutes. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-minutes-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-minutes - Documentation for ccm-cms-types-minutes. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-minutes/debian/copyright b/ccm-cms-types-minutes/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-minutes/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-minutes/debian/postinst b/ccm-cms-types-minutes/debian/postinst deleted file mode 100755 index a74760b99..000000000 --- a/ccm-cms-types-minutes/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-minutes -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-minutes/debian/postrm b/ccm-cms-types-minutes/debian/postrm deleted file mode 100755 index a3c326065..000000000 --- a/ccm-cms-types-minutes/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-minutes -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-minutes/debian/prerm b/ccm-cms-types-minutes/debian/prerm deleted file mode 100755 index fe3398653..000000000 --- a/ccm-cms-types-minutes/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-minutes -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-minutes/debian/rules b/ccm-cms-types-minutes/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-minutes/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-minutes/debian/templates b/ccm-cms-types-minutes/debian/templates deleted file mode 100755 index e7c2b3337..000000000 --- a/ccm-cms-types-minutes/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:08 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-minutes -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-minutes". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-minutes". diff --git a/ccm-cms-types-motditem/debian/ccm-auth-http.dirs b/ccm-cms-types-motditem/debian/ccm-auth-http.dirs deleted file mode 100755 index ad6d89cc7..000000000 --- a/ccm-cms-types-motditem/debian/ccm-auth-http.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-motditem-1.4.1 diff --git a/ccm-cms-types-motditem/debian/ccm-build.sh b/ccm-cms-types-motditem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-motditem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-motditem/debian/ccm-clean.sh b/ccm-cms-types-motditem/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-cms-types-motditem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-motditem/debian/ccm-cms-types-motditem.dirs b/ccm-cms-types-motditem/debian/ccm-cms-types-motditem.dirs deleted file mode 100755 index 6b6c17d7e..000000000 --- a/ccm-cms-types-motditem/debian/ccm-cms-types-motditem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-motditem-6.3.0 diff --git a/ccm-cms-types-motditem/debian/ccm-config.sh b/ccm-cms-types-motditem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-motditem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-motditem/debian/ccm-disperse.sh b/ccm-cms-types-motditem/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-cms-types-motditem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-motditem/debian/ccm-install.sh b/ccm-cms-types-motditem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-motditem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-motditem/debian/ccm-settings-run.sh b/ccm-cms-types-motditem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-motditem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-motditem/debian/ccm-settings.sh b/ccm-cms-types-motditem/debian/ccm-settings.sh deleted file mode 100755 index 7592982c2..000000000 --- a/ccm-cms-types-motditem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-motditem -version=6.3.0 -appname=ccm-cms-types-motditem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-motditem/debian/changelog b/ccm-cms-types-motditem/debian/changelog deleted file mode 100755 index ca2eed3b8..000000000 --- a/ccm-cms-types-motditem/debian/changelog +++ /dev/null @@ -1,24 +0,0 @@ -ccm-cms-types-motditem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:57 +0000 - -ccm-cms-types-motditem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-motditem (6.1.1-2) unstable; urgency=low - - * Add ccm-devel to the build-dependancies. - * Add ccm-scripts to the build-dependancies too - - -- David Pashley Tue, 26 Apr 2005 15:21:46 +0100 - -ccm-cms-types-motditem (6.1.1-1) unstable; urgency=low - - * Initial release. - - -- Fabrice Retkowsky Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-motditem/debian/compat b/ccm-cms-types-motditem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-motditem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-motditem/debian/config b/ccm-cms-types-motditem/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-cms-types-motditem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-motditem/debian/control b/ccm-cms-types-motditem/debian/control deleted file mode 100755 index 37814b8b3..000000000 --- a/ccm-cms-types-motditem/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-motditem -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-cms, ccm-devel, ccm-scripts, ccm-core -Standards-Version: 3.6.1 - -Package: ccm-cms-types-motditem -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-cms -Description: APLAWS: NTLM authentication module. - This package contains the Auth HTTP application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-motditem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-motditem - Documentation for ccm-cms-types-motditem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-motditem/debian/copyright b/ccm-cms-types-motditem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-motditem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-motditem/debian/postinst b/ccm-cms-types-motditem/debian/postinst deleted file mode 100755 index 442df4133..000000000 --- a/ccm-cms-types-motditem/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-motditem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-motditem/debian/postrm b/ccm-cms-types-motditem/debian/postrm deleted file mode 100755 index ad7b7d5e2..000000000 --- a/ccm-cms-types-motditem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-motditem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-motditem/debian/prerm b/ccm-cms-types-motditem/debian/prerm deleted file mode 100755 index 5c0e3af12..000000000 --- a/ccm-cms-types-motditem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-motditem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-motditem/debian/rules b/ccm-cms-types-motditem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-motditem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-motditem/debian/templates b/ccm-cms-types-motditem/debian/templates deleted file mode 100755 index 68eb64e0e..000000000 --- a/ccm-cms-types-motditem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-motditem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-motditem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-motditem". diff --git a/ccm-cms-types-mparticle/debian/ccm-build.sh b/ccm-cms-types-mparticle/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-mparticle/debian/ccm-clean.sh b/ccm-cms-types-mparticle/debian/ccm-clean.sh deleted file mode 100755 index b603830b4..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-mparticle/debian/ccm-cms-types-mparticle.dirs b/ccm-cms-types-mparticle/debian/ccm-cms-types-mparticle.dirs deleted file mode 100755 index b8cb8ae03..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-cms-types-mparticle.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-mparticle-6.3.0 diff --git a/ccm-cms-types-mparticle/debian/ccm-config.sh b/ccm-cms-types-mparticle/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-mparticle/debian/ccm-disperse.sh b/ccm-cms-types-mparticle/debian/ccm-disperse.sh deleted file mode 100755 index c08119d5d..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-mparticle/debian/ccm-install.sh b/ccm-cms-types-mparticle/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-mparticle/debian/ccm-settings-run.sh b/ccm-cms-types-mparticle/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-mparticle/debian/ccm-settings.sh b/ccm-cms-types-mparticle/debian/ccm-settings.sh deleted file mode 100755 index 41c1a16dc..000000000 --- a/ccm-cms-types-mparticle/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-mparticle -version=6.3.0 -appname=ccm-cms-types-mparticle -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-mparticle/debian/changelog b/ccm-cms-types-mparticle/debian/changelog deleted file mode 100755 index b0d596d99..000000000 --- a/ccm-cms-types-mparticle/debian/changelog +++ /dev/null @@ -1,94 +0,0 @@ -ccm-cms-types-mparticle (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-mparticle (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-mparticle (6.1.1-6) unstable; urgency=low - - * Refactoring MPA/SiteProxy as index item patch, adding 404s for invalid - category hits - - -- My Thu, 28 Jul 2005 12:26:46 +0000 - -ccm-cms-types-mparticle (6.1.1-5) unstable; urgency=low - - * 18269 - getting search results on section to work on postgres - - -- My Mon, 25 Jul 2005 11:12:58 +0000 - -ccm-cms-types-mparticle (6.1.1-4) unstable; urgency=low - - * SiteProxy as index items - - -- My Fri, 24 Jun 2005 09:21:26 +0000 - -ccm-cms-types-mparticle (6.1.1-3) unstable; urgency=low - - * MPAs as index items - - -- My Thu, 23 Jun 2005 15:37:52 +0000 - -ccm-cms-types-mparticle (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:30:29 +0000 - -ccm-cms-types-mparticle (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-mparticle (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 14:59:28 +0000 - -ccm-cms-types-mparticle (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-mparticle (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-mparticle (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-mparticle (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-mparticle/debian/compat b/ccm-cms-types-mparticle/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-mparticle/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-mparticle/debian/config b/ccm-cms-types-mparticle/debian/config deleted file mode 100755 index 3b240fa27..000000000 --- a/ccm-cms-types-mparticle/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-mparticle/debian/control b/ccm-cms-types-mparticle/debian/control deleted file mode 100755 index 1fc3fc2f8..000000000 --- a/ccm-cms-types-mparticle/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-mparticle -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-mparticle -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Multi-Part Article content type for publishing complex articles with multiple sections and images. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-mparticle-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-mparticle - Documentation for ccm-cms-types-mparticle. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-mparticle/debian/copyright b/ccm-cms-types-mparticle/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-mparticle/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-mparticle/debian/postinst b/ccm-cms-types-mparticle/debian/postinst deleted file mode 100755 index 479f60c99..000000000 --- a/ccm-cms-types-mparticle/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-mparticle -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-mparticle/debian/postrm b/ccm-cms-types-mparticle/debian/postrm deleted file mode 100755 index de252d2d8..000000000 --- a/ccm-cms-types-mparticle/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-mparticle -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-mparticle/debian/prerm b/ccm-cms-types-mparticle/debian/prerm deleted file mode 100755 index 7f515b138..000000000 --- a/ccm-cms-types-mparticle/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-mparticle -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-mparticle/debian/rules b/ccm-cms-types-mparticle/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-mparticle/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-mparticle/debian/templates b/ccm-cms-types-mparticle/debian/templates deleted file mode 100755 index 7a946098b..000000000 --- a/ccm-cms-types-mparticle/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-mparticle -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-mparticle". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-mparticle". diff --git a/ccm-cms-types-newsitem/debian/ccm-build.sh b/ccm-cms-types-newsitem/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-newsitem/debian/ccm-clean.sh b/ccm-cms-types-newsitem/debian/ccm-clean.sh deleted file mode 100755 index b603830b4..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-newsitem/debian/ccm-cms-types-newsitem.dirs b/ccm-cms-types-newsitem/debian/ccm-cms-types-newsitem.dirs deleted file mode 100755 index 445285f6a..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-cms-types-newsitem.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-newsitem-6.3.0 diff --git a/ccm-cms-types-newsitem/debian/ccm-config.sh b/ccm-cms-types-newsitem/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-newsitem/debian/ccm-disperse.sh b/ccm-cms-types-newsitem/debian/ccm-disperse.sh deleted file mode 100755 index c08119d5d..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-newsitem/debian/ccm-install.sh b/ccm-cms-types-newsitem/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-newsitem/debian/ccm-settings-run.sh b/ccm-cms-types-newsitem/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-newsitem/debian/ccm-settings.sh b/ccm-cms-types-newsitem/debian/ccm-settings.sh deleted file mode 100755 index 286867d6b..000000000 --- a/ccm-cms-types-newsitem/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-newsitem -version=6.3.0 -appname=ccm-cms-types-newsitem -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-newsitem/debian/changelog b/ccm-cms-types-newsitem/debian/changelog deleted file mode 100755 index 90477087e..000000000 --- a/ccm-cms-types-newsitem/debian/changelog +++ /dev/null @@ -1,61 +0,0 @@ -ccm-cms-types-newsitem (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-newsitem (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-newsitem (6.1.1-2) unstable; urgency=low - - * Final (?) fix for dublincore dates, #17509 - - -- My Wed, 18 May 2005 08:29:00 +0000 - -ccm-cms-types-newsitem (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-newsitem (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-newsitem (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-newsitem (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-newsitem (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-newsitem/debian/compat b/ccm-cms-types-newsitem/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-newsitem/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-newsitem/debian/config b/ccm-cms-types-newsitem/debian/config deleted file mode 100755 index 3b240fa27..000000000 --- a/ccm-cms-types-newsitem/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-newsitem/debian/control b/ccm-cms-types-newsitem/debian/control deleted file mode 100755 index 452577718..000000000 --- a/ccm-cms-types-newsitem/debian/control +++ /dev/null @@ -1,20 +0,0 @@ -Source: ccm-cms-types-newsitem -Section: contrib/web -Priority: optional -Maintainer: Berkan Eskikaya -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.0 - -Package: ccm-cms-types-newsitem -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The News Item content type for publishing news. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-newsitem-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-newsitem - Documentation for ccm-cms-types-newsitem. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-newsitem/debian/copyright b/ccm-cms-types-newsitem/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-newsitem/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-newsitem/debian/postinst b/ccm-cms-types-newsitem/debian/postinst deleted file mode 100755 index 1f49c5c3a..000000000 --- a/ccm-cms-types-newsitem/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-newsitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-newsitem/debian/postrm b/ccm-cms-types-newsitem/debian/postrm deleted file mode 100755 index 97bc51470..000000000 --- a/ccm-cms-types-newsitem/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-newsitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-newsitem/debian/prerm b/ccm-cms-types-newsitem/debian/prerm deleted file mode 100755 index 807581c6b..000000000 --- a/ccm-cms-types-newsitem/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-newsitem -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-newsitem/debian/rules b/ccm-cms-types-newsitem/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-newsitem/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-newsitem/debian/templates b/ccm-cms-types-newsitem/debian/templates deleted file mode 100755 index 3f24f3068..000000000 --- a/ccm-cms-types-newsitem/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-newsitem -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-newsitem". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-newsitem". diff --git a/ccm-cms-types-organization/debian/ccm-build.sh b/ccm-cms-types-organization/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-organization/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-organization/debian/ccm-clean.sh b/ccm-cms-types-organization/debian/ccm-clean.sh deleted file mode 100755 index b603830b4..000000000 --- a/ccm-cms-types-organization/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-organization/debian/ccm-cms-types-organization.dirs b/ccm-cms-types-organization/debian/ccm-cms-types-organization.dirs deleted file mode 100755 index f3698fd03..000000000 --- a/ccm-cms-types-organization/debian/ccm-cms-types-organization.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-organization-6.3.0 diff --git a/ccm-cms-types-organization/debian/ccm-config.sh b/ccm-cms-types-organization/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-organization/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-organization/debian/ccm-disperse.sh b/ccm-cms-types-organization/debian/ccm-disperse.sh deleted file mode 100755 index c08119d5d..000000000 --- a/ccm-cms-types-organization/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-organization/debian/ccm-install.sh b/ccm-cms-types-organization/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-organization/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-organization/debian/ccm-settings-run.sh b/ccm-cms-types-organization/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-organization/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-organization/debian/ccm-settings.sh b/ccm-cms-types-organization/debian/ccm-settings.sh deleted file mode 100755 index 98c80cc62..000000000 --- a/ccm-cms-types-organization/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-organization -version=6.3.0 -appname=ccm-cms-types-organization -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-organization/debian/changelog b/ccm-cms-types-organization/debian/changelog deleted file mode 100755 index 898707560..000000000 --- a/ccm-cms-types-organization/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-organization (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-organization (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:08 +0000 - -ccm-cms-types-organization (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-organization (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 16:55:52 +0000 - -ccm-cms-types-organization (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-organization (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-organization (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-organization (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-organization/debian/compat b/ccm-cms-types-organization/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-organization/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-organization/debian/config b/ccm-cms-types-organization/debian/config deleted file mode 100755 index 3b240fa27..000000000 --- a/ccm-cms-types-organization/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-organization/debian/control b/ccm-cms-types-organization/debian/control deleted file mode 100755 index 58eb8bddc..000000000 --- a/ccm-cms-types-organization/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-organization -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-organization -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Stores organization information. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-organization-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-organization - Documentation for ccm-cms-types-organization. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-organization/debian/copyright b/ccm-cms-types-organization/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-organization/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-organization/debian/postinst b/ccm-cms-types-organization/debian/postinst deleted file mode 100755 index 5e36682a2..000000000 --- a/ccm-cms-types-organization/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-organization -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-organization/debian/postrm b/ccm-cms-types-organization/debian/postrm deleted file mode 100755 index 3209381b3..000000000 --- a/ccm-cms-types-organization/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-organization -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-organization/debian/prerm b/ccm-cms-types-organization/debian/prerm deleted file mode 100755 index ebf1e1b6c..000000000 --- a/ccm-cms-types-organization/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-organization -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-organization/debian/rules b/ccm-cms-types-organization/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-organization/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-organization/debian/templates b/ccm-cms-types-organization/debian/templates deleted file mode 100755 index b9de55f8e..000000000 --- a/ccm-cms-types-organization/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:09 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-organization -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-organization". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-organization". diff --git a/ccm-cms-types-pressrelease/debian/ccm-build.sh b/ccm-cms-types-pressrelease/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-pressrelease/debian/ccm-clean.sh b/ccm-cms-types-pressrelease/debian/ccm-clean.sh deleted file mode 100755 index fb639ebf9..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-pressrelease/debian/ccm-cms-types-pressrelease.dirs b/ccm-cms-types-pressrelease/debian/ccm-cms-types-pressrelease.dirs deleted file mode 100755 index ba24ea856..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-cms-types-pressrelease.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-pressrelease-6.3.0 diff --git a/ccm-cms-types-pressrelease/debian/ccm-config.sh b/ccm-cms-types-pressrelease/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-pressrelease/debian/ccm-disperse.sh b/ccm-cms-types-pressrelease/debian/ccm-disperse.sh deleted file mode 100755 index fe3616f2f..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-pressrelease/debian/ccm-install.sh b/ccm-cms-types-pressrelease/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-pressrelease/debian/ccm-settings-run.sh b/ccm-cms-types-pressrelease/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-pressrelease/debian/ccm-settings.sh b/ccm-cms-types-pressrelease/debian/ccm-settings.sh deleted file mode 100755 index a41790a04..000000000 --- a/ccm-cms-types-pressrelease/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-pressrelease -version=6.3.0 -appname=ccm-cms-types-pressrelease -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-pressrelease/debian/changelog b/ccm-cms-types-pressrelease/debian/changelog deleted file mode 100755 index 1f11be3ee..000000000 --- a/ccm-cms-types-pressrelease/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-pressrelease (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-pressrelease (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:09 +0000 - -ccm-cms-types-pressrelease (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-pressrelease (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 17:03:17 +0000 - -ccm-cms-types-pressrelease (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-pressrelease (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-pressrelease (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-pressrelease (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-pressrelease/debian/compat b/ccm-cms-types-pressrelease/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-pressrelease/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-pressrelease/debian/config b/ccm-cms-types-pressrelease/debian/config deleted file mode 100755 index 51c611c8f..000000000 --- a/ccm-cms-types-pressrelease/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-pressrelease/debian/control b/ccm-cms-types-pressrelease/debian/control deleted file mode 100755 index 370c6d801..000000000 --- a/ccm-cms-types-pressrelease/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-pressrelease -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-pressrelease -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-pressrelease-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-pressrelease - Documentation for ccm-cms-types-pressrelease. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-pressrelease/debian/copyright b/ccm-cms-types-pressrelease/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-pressrelease/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-pressrelease/debian/postinst b/ccm-cms-types-pressrelease/debian/postinst deleted file mode 100755 index 578db0709..000000000 --- a/ccm-cms-types-pressrelease/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-pressrelease -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-pressrelease/debian/postrm b/ccm-cms-types-pressrelease/debian/postrm deleted file mode 100755 index 4c1578940..000000000 --- a/ccm-cms-types-pressrelease/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-pressrelease -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-pressrelease/debian/prerm b/ccm-cms-types-pressrelease/debian/prerm deleted file mode 100755 index 2e4ac9b4c..000000000 --- a/ccm-cms-types-pressrelease/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-pressrelease -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-pressrelease/debian/rules b/ccm-cms-types-pressrelease/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-pressrelease/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-pressrelease/debian/templates b/ccm-cms-types-pressrelease/debian/templates deleted file mode 100755 index a858dd9b6..000000000 --- a/ccm-cms-types-pressrelease/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-pressrelease -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-pressrelease". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-pressrelease". diff --git a/ccm-cms-types-service/debian/ccm-build.sh b/ccm-cms-types-service/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-service/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-service/debian/ccm-clean.sh b/ccm-cms-types-service/debian/ccm-clean.sh deleted file mode 100755 index fb639ebf9..000000000 --- a/ccm-cms-types-service/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-service/debian/ccm-cms-types-service.dirs b/ccm-cms-types-service/debian/ccm-cms-types-service.dirs deleted file mode 100755 index 48e66a8e5..000000000 --- a/ccm-cms-types-service/debian/ccm-cms-types-service.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-service-6.3.0 diff --git a/ccm-cms-types-service/debian/ccm-config.sh b/ccm-cms-types-service/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-service/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-service/debian/ccm-disperse.sh b/ccm-cms-types-service/debian/ccm-disperse.sh deleted file mode 100755 index fe3616f2f..000000000 --- a/ccm-cms-types-service/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-service/debian/ccm-install.sh b/ccm-cms-types-service/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-service/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-service/debian/ccm-settings-run.sh b/ccm-cms-types-service/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-service/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-service/debian/ccm-settings.sh b/ccm-cms-types-service/debian/ccm-settings.sh deleted file mode 100755 index 2bcc44866..000000000 --- a/ccm-cms-types-service/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-service -version=6.3.0 -appname=ccm-cms-types-service -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-service/debian/changelog b/ccm-cms-types-service/debian/changelog deleted file mode 100755 index 0f72077ad..000000000 --- a/ccm-cms-types-service/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-cms-types-service (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-service (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:09 +0000 - -ccm-cms-types-service (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-service (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 17:05:38 +0000 - -ccm-cms-types-service (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-service (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-service (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-service (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-service/debian/compat b/ccm-cms-types-service/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-service/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-service/debian/config b/ccm-cms-types-service/debian/config deleted file mode 100755 index 51c611c8f..000000000 --- a/ccm-cms-types-service/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-service/debian/control b/ccm-cms-types-service/debian/control deleted file mode 100755 index 7c4d9b9ec..000000000 --- a/ccm-cms-types-service/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-service -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-service -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: The Service content type for publishing service information. - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-service-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-service - Documentation for ccm-cms-types-service. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-service/debian/copyright b/ccm-cms-types-service/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-service/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-service/debian/postinst b/ccm-cms-types-service/debian/postinst deleted file mode 100755 index 41d7764c5..000000000 --- a/ccm-cms-types-service/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-service -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-service/debian/postrm b/ccm-cms-types-service/debian/postrm deleted file mode 100755 index 49911a7b3..000000000 --- a/ccm-cms-types-service/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-service -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-service/debian/prerm b/ccm-cms-types-service/debian/prerm deleted file mode 100755 index 6067f0253..000000000 --- a/ccm-cms-types-service/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-service -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-service/debian/rules b/ccm-cms-types-service/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-service/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-service/debian/templates b/ccm-cms-types-service/debian/templates deleted file mode 100755 index fb0746137..000000000 --- a/ccm-cms-types-service/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-service -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-service". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-service". diff --git a/ccm-cms-types-siteproxy/debian/ccm-build.sh b/ccm-cms-types-siteproxy/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-siteproxy/debian/ccm-clean.sh b/ccm-cms-types-siteproxy/debian/ccm-clean.sh deleted file mode 100755 index fb639ebf9..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-siteproxy/debian/ccm-cms-types-siteproxy.dirs b/ccm-cms-types-siteproxy/debian/ccm-cms-types-siteproxy.dirs deleted file mode 100755 index 34fa19937..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-cms-types-siteproxy.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-siteproxy-6.3.1 diff --git a/ccm-cms-types-siteproxy/debian/ccm-config.sh b/ccm-cms-types-siteproxy/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-siteproxy/debian/ccm-disperse.sh b/ccm-cms-types-siteproxy/debian/ccm-disperse.sh deleted file mode 100755 index fe3616f2f..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-siteproxy/debian/ccm-install.sh b/ccm-cms-types-siteproxy/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-siteproxy/debian/ccm-settings-run.sh b/ccm-cms-types-siteproxy/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-siteproxy/debian/ccm-settings.sh b/ccm-cms-types-siteproxy/debian/ccm-settings.sh deleted file mode 100755 index dec8b43a9..000000000 --- a/ccm-cms-types-siteproxy/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-siteproxy -version=6.3.1 -appname=ccm-cms-types-siteproxy -appversion=6.3.1 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-siteproxy/debian/changelog b/ccm-cms-types-siteproxy/debian/changelog deleted file mode 100755 index b0c2ef761..000000000 --- a/ccm-cms-types-siteproxy/debian/changelog +++ /dev/null @@ -1,82 +0,0 @@ -ccm-cms-types-siteproxy (6.3.1-1) unstable; urgency=low - - * Automatic update of version number from 6.3.0 to 6.3.1 - - -- Runtime Collective Ltd. Fri, 30 Dec 2005 08:49:29 +0000 - -ccm-cms-types-siteproxy (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:58 +0000 - -ccm-cms-types-siteproxy (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 6.1.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:09 +0000 - -ccm-cms-types-siteproxy (6.1.1-3) unstable; urgency=low - - * Refactoring MPA/SiteProxy as index item patch, adding 404s for invalid - category hits - - -- My Thu, 28 Jul 2005 12:26:24 +0000 - -ccm-cms-types-siteproxy (6.1.1-2) unstable; urgency=low - - * SiteProxy as index items - - -- My Fri, 24 Jun 2005 09:21:39 +0000 - -ccm-cms-types-siteproxy (6.1.1-1) unstable; urgency=low - - * Automatic update of version number from 6.1.0 to 6.1.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:53 +0000 - -ccm-cms-types-siteproxy (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 17:13:42 +0000 - -ccm-cms-types-siteproxy (6.1.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-cms-types-siteproxy (6.1.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-cms-types-siteproxy (6.1.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-cms-types-siteproxy (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-siteproxy/debian/compat b/ccm-cms-types-siteproxy/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-siteproxy/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-siteproxy/debian/config b/ccm-cms-types-siteproxy/debian/config deleted file mode 100755 index 51c611c8f..000000000 --- a/ccm-cms-types-siteproxy/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-siteproxy/debian/control b/ccm-cms-types-siteproxy/debian/control deleted file mode 100755 index 089a60a96..000000000 --- a/ccm-cms-types-siteproxy/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-types-siteproxy -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-cms-types-siteproxy -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: - This package contains the Red Hat CCM Content Types application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-types-siteproxy-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-types-siteproxy - Documentation for ccm-cms-types-siteproxy. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-siteproxy/debian/copyright b/ccm-cms-types-siteproxy/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-siteproxy/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-siteproxy/debian/postinst b/ccm-cms-types-siteproxy/debian/postinst deleted file mode 100755 index 68ab261d6..000000000 --- a/ccm-cms-types-siteproxy/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-types-siteproxy -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-siteproxy/debian/postrm b/ccm-cms-types-siteproxy/debian/postrm deleted file mode 100755 index dccd808e6..000000000 --- a/ccm-cms-types-siteproxy/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-types-siteproxy -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-siteproxy/debian/prerm b/ccm-cms-types-siteproxy/debian/prerm deleted file mode 100755 index 3414c5882..000000000 --- a/ccm-cms-types-siteproxy/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-types-siteproxy -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-siteproxy/debian/rules b/ccm-cms-types-siteproxy/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-siteproxy/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-siteproxy/debian/templates b/ccm-cms-types-siteproxy/debian/templates deleted file mode 100755 index 158f1aee0..000000000 --- a/ccm-cms-types-siteproxy/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:10 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-types-siteproxy -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.1 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-cms-types-siteproxy". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-cms-types-siteproxy". diff --git a/ccm-cms-types-xmlfeed/debian/ccm-build.sh b/ccm-cms-types-xmlfeed/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-cms-types-xmlfeed/debian/ccm-clean.sh b/ccm-cms-types-xmlfeed/debian/ccm-clean.sh deleted file mode 100755 index 5913fc6be..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-cms-types-xmlfeed/debian/ccm-cms-types-xmlfeed.dirs b/ccm-cms-types-xmlfeed/debian/ccm-cms-types-xmlfeed.dirs deleted file mode 100755 index cc35c213a..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-cms-types-xmlfeed.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-types-xmlfeed-6.3.0 diff --git a/ccm-cms-types-xmlfeed/debian/ccm-config.sh b/ccm-cms-types-xmlfeed/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-cms-types-xmlfeed/debian/ccm-disperse.sh b/ccm-cms-types-xmlfeed/debian/ccm-disperse.sh deleted file mode 100755 index aa4fb68b3..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-cms-types-xmlfeed/debian/ccm-install.sh b/ccm-cms-types-xmlfeed/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-cms-types-xmlfeed/debian/ccm-settings-run.sh b/ccm-cms-types-xmlfeed/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-cms-types-xmlfeed/debian/ccm-settings.sh b/ccm-cms-types-xmlfeed/debian/ccm-settings.sh deleted file mode 100755 index 8e18200b7..000000000 --- a/ccm-cms-types-xmlfeed/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-cms-types-xmlfeed -version=6.3.0 -appname=ccm-cms-types-xmlfeed -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-cms-types-xmlfeed/debian/changelog b/ccm-cms-types-xmlfeed/debian/changelog deleted file mode 100755 index e6bd8b53d..000000000 --- a/ccm-cms-types-xmlfeed/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-ldn-xmlfeed (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-ldn-xmlfeed (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:14 +0000 - -ccm-ldn-xmlfeed (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:57 +0000 - -ccm-ldn-xmlfeed (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 12:41:43 +0000 - -ccm-ldn-xmlfeed (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-xmlfeed (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-xmlfeed (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-xmlfeed (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-types-xmlfeed/debian/compat b/ccm-cms-types-xmlfeed/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-types-xmlfeed/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-types-xmlfeed/debian/config b/ccm-cms-types-xmlfeed/debian/config deleted file mode 100755 index f0f5cae91..000000000 --- a/ccm-cms-types-xmlfeed/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-cms-types-xmlfeed/debian/control b/ccm-cms-types-xmlfeed/debian/control deleted file mode 100755 index e8ade1891..000000000 --- a/ccm-cms-types-xmlfeed/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-xmlfeed -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-cms-types-formsectionitem, ccm-cms-types-formitem -Standards-Version: 3.6.1 - -Package: ccm-ldn-xmlfeed -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-cms-types-formsectionitem, ccm-cms-types-formitem -Description: APLAWS: Formbuilder content type that lets you make requests to remote sites and style the returned XML. - This package contains the XML Feed application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-xmlfeed-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-xmlfeed - Documentation for ccm-ldn-xmlfeed. Provides the JavaDoc API documentation. diff --git a/ccm-cms-types-xmlfeed/debian/copyright b/ccm-cms-types-xmlfeed/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-types-xmlfeed/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-cms-types-xmlfeed/debian/postinst b/ccm-cms-types-xmlfeed/debian/postinst deleted file mode 100755 index de0cacfa4..000000000 --- a/ccm-cms-types-xmlfeed/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-xmlfeed -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-xmlfeed/debian/postrm b/ccm-cms-types-xmlfeed/debian/postrm deleted file mode 100755 index ef034c064..000000000 --- a/ccm-cms-types-xmlfeed/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-xmlfeed -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-cms-types-xmlfeed/debian/prerm b/ccm-cms-types-xmlfeed/debian/prerm deleted file mode 100755 index 9e67cfcb6..000000000 --- a/ccm-cms-types-xmlfeed/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-xmlfeed -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-cms-types-xmlfeed/debian/rules b/ccm-cms-types-xmlfeed/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-types-xmlfeed/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-cms-types-xmlfeed/debian/templates b/ccm-cms-types-xmlfeed/debian/templates deleted file mode 100755 index 1bb592a3e..000000000 --- a/ccm-cms-types-xmlfeed/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-xmlfeed -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-xmlfeed". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-xmlfeed". diff --git a/ccm-docmgr/debian/ccm-build.sh b/ccm-docmgr/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-docmgr/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-docmgr/debian/ccm-clean.sh b/ccm-docmgr/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-docmgr/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-docmgr/debian/ccm-config.sh b/ccm-docmgr/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-docmgr/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-docmgr/debian/ccm-disperse.sh b/ccm-docmgr/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-docmgr/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-docmgr/debian/ccm-docmgr-doc.install b/ccm-docmgr/debian/ccm-docmgr-doc.install deleted file mode 100755 index 8f6a5cbc7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc.install +++ /dev/null @@ -1,283 +0,0 @@ -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileInfoPropertiesPane.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.FileSize.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkSearchTable.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryItemsBrowser.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocModelBuilder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/LegacyCategoryDocsNavigatorPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocsNavigatorPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileUploadForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMConstants.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.DateFormat.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchStringValidationListener.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/PagingControlContainer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileRevisionsTable.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DCNDispatcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchListModelBuilder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoriesPrintListener.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFolderEdit.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultRenderer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkPane.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMDispatcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultDisplay.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileDimensionalNavbar.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/PagingControlContainer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/RepositoryTreeModel.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderAppCellRenderer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderAppCellRenderer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderIterator.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/RepositoryTreeModel.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderTreeNode.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTreeModel.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderContentTreeRenderer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderTreeNode.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTreeModel.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderIterator.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderContentTreeRenderer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkStep.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkPropertyForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/FileDisplay.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertyForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.FileFormatter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.FileFormatter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkStep.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertyForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkPropertyForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/FileDisplay.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultDisplay.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchListModelBuilder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocIndexPage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocFolderNavbar.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocFolderNavbar.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileRevisionsTable.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkPane.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.DateFormat.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFolderEdit.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultRenderer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/RecentUpdatedDocsPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMDispatcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocModelBuilder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/LegacyCategoryDocsNavigatorPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileDimensionalNavbar.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileUploadForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DCNDispatcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryItemsBrowser.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMConstants.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchStringValidationListener.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoriesPrintListener.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.FileSize.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkSearchTable.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocsNavigatorPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/GlobalizationUtil.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/class-use/GlobalizationUtil.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResults.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearchResults.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearchResults.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/Searcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResult.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchUtils.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResults.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/Searcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearchResults.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearchResults.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResult.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchUtils.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgr.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Document.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLinkLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLink.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolderLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/ResourceExistsException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Repository.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCollection.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/LegacyCategoryBrowserApplication.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgrConfig.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Resource.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCategoryBrowserApplication.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Util.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/MultilingualDocumentResolver.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/DocumentAssetPage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/DocumentAssetPage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocLinkInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocFolderInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocLinkInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/Initializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocumentInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/MimeIconInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocumentInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/Initializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/MimeIconInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocFolderInitializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCollection.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLink.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolderLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Util.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCategoryBrowserApplication.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ResourceExistsException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Resource.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLinkLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/LegacyCategoryBrowserApplication.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgrConfig.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Document.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgr.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Repository.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/GlobalizationUtil.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/class-use/GlobalizationUtil.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/DocBlobject.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImplCollection.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/TypeChangeException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Repository.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ContentTypeException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Constants.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Folder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImpl.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/File.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Util.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Lockable.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Resource.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceNotEmptyException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceExistsException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidMimeTypeFormatException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/MimeTypeXMLLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ApplicationAuthenticationListener.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidNameException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Folder.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceNotEmptyException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidNameException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMConstants.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMDispatcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.DateFormat.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/FileUploadForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMConstants.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.FileSize.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.FileSize.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/RecentUpdatedDocsPortlet.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/FileUploadForm.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.DateFormat.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMDispatcher.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Constants.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-use.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/Initializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/class-use/Initializer.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Resource.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceExistsException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImpl.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Lockable.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-tree.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ContentTypeException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/DocBlobject.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/TypeChangeException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-summary.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidMimeTypeFormatException.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/MimeTypeXMLLoader.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/File.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Repository.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Util.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-frame.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ApplicationAuthenticationListener.html -var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImplCollection.html -var/www/html/ccm-docmgr-6.3.0/api/constant-values.html -var/www/html/ccm-docmgr-6.3.0/api/overview-tree.html -var/www/html/ccm-docmgr-6.3.0/api/allclasses-noframe.html -var/www/html/ccm-docmgr-6.3.0/api/stylesheet.css -var/www/html/ccm-docmgr-6.3.0/api/resources/inherit.gif -var/www/html/ccm-docmgr-6.3.0/api/package-list -var/www/html/ccm-docmgr-6.3.0/api/overview-summary.html -var/www/html/ccm-docmgr-6.3.0/api/overview-frame.html -var/www/html/ccm-docmgr-6.3.0/api/packages.html -var/www/html/ccm-docmgr-6.3.0/api/deprecated-list.html -var/www/html/ccm-docmgr-6.3.0/api/help-doc.html -var/www/html/ccm-docmgr-6.3.0/api/index.html -var/www/html/ccm-docmgr-6.3.0/api/allclasses-frame.html -var/www/html/ccm-docmgr-6.3.0/api/index-all.html -var/www/html/ccm-docmgr-6.3.0/api/serialized-form.html diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/DEBIAN/control b/ccm-docmgr/debian/ccm-docmgr-doc/DEBIAN/control deleted file mode 100755 index cb6201184..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-docmgr-doc -Version: 6.3.0-20 -Section: contrib/web -Priority: optional -Architecture: all -Depends: ccm-tools -Installed-Size: 5168 -Maintainer: Runtime Packaging -Source: ccm-docmgr -Description: Documentation for ccm-docmgr - Documentation for ccm-docmgr. Provides the JavaDoc API documentation. diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/DEBIAN/md5sums b/ccm-docmgr/debian/ccm-docmgr-doc/DEBIAN/md5sums deleted file mode 100755 index 01ac99a50..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/DEBIAN/md5sums +++ /dev/null @@ -1,285 +0,0 @@ -ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-docmgr-doc/copyright -340c7e25bd0ba854bab58733251d572c usr/share/doc/ccm-docmgr-doc/changelog.Debian.gz -f1a4e61b1ac65e5d451e1b6081709f4d var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html -3d77dd12155b17d620e15e70fb55ad5e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html -ebfa895283dd0f3c9f3d88f1025e4ec8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileInfoPropertiesPane.html -b4af44eafa10ed5633d43eceafd70dbb var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.FileSize.html -7921ae5051b39753bf6c5bb44871deaa var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkSearchTable.html -1b3cd54e988d1013e25e5a9371a5a039 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchForm.html -314c5b0071e51069448d53a039b65b18 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryItemsBrowser.html -5897f641c19f8dd358ef5d6da8333220 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html -b5b919fa609b75be947d474950a59273 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocModelBuilder.html -0ee5cedbcb2682453665c2bc35ab2ab6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/LegacyCategoryDocsNavigatorPortlet.html -2ba294df67e2a2c0d9853bdf5960711c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocsNavigatorPortlet.html -b0efc18895e6152b96f59209501c05ec var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileUploadForm.html -78da9dada9b2b5083212e96f81b16c96 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMConstants.html -5b53be153d74f6df3cc648b84414ad45 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.DateFormat.html -f1c528ca63d92397c937e9bef4fe360b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchStringValidationListener.html -5909d21173da7709abaeb783529b8116 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/PagingControlContainer.html -1cd53b6c04391402e39eff6df665900c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileRevisionsTable.html -159a86a30c714d15a4396f809d8dce82 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.html -84ce2ea19834464db99546a65f281216 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DCNDispatcher.html -a9f2abe9f049067b0044b9ed3a710385 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchListModelBuilder.html -158d843bae242be9f38a377ddf6d3365 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoriesPrintListener.html -ecebdcb86eb46690eadc26a110a86cc7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFolderEdit.html -c721d618b5cc018e2dccbebb6f71fbe6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.html -08608f6b01425bec29becf979a5238e4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html -f4e038306e896f093f7b1ee6426c12f1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultRenderer.html -44753bd4f93a61d181cc27dde3d05313 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkPane.html -b39e1cf5a2f72c1c41c33c20815beb34 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMDispatcher.html -b76dc17ddf98185a4719f1319116ae30 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultDisplay.html -408bfaa5259175388d7cf26d1841a885 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html -2c9ad14d1001fb9c1ed8e60aff3db190 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.html -3914113792dd1c082be797c59965915a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileDimensionalNavbar.html -73889e3dc7ee045ac02bd99a5d6f3dff var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/PagingControlContainer.html -e3b80a8304ad0152659ec481c28b5007 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-use.html -d27d9aa270e3d52eae139f4ffc401529 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/RepositoryTreeModel.html -8e24be0ffcff102eec4a3d48fff9c284 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderAppCellRenderer.html -b6c093bc03cbcfe6e84bdc7a494e4279 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderAppCellRenderer.html -98526821c672e86ac118ee5e474d7443 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderIterator.html -eb15f003775a21daa19cd212586c1bb7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/RepositoryTreeModel.html -e25556bd9dfd536d5e5fcebbcb7002ee var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderTreeNode.html -bb61892233d67d1e6e4962ae47244af3 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTree.html -602bd50a15d2fa8be7d692adf2e02594 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTreeModel.html -50ad3ebe6e454e63a387cce1a8b0716e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderContentTreeRenderer.html -a401adae3f6a353efd9237cca7c50f6b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-summary.html -17ee46363485140bee2a165853893565 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderTreeNode.html -94ce0c243a0b921d2b2c89fa5633fb53 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTree.html -582ddd2832e4ef8575869dca14205b59 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-frame.html -0177f155a499c46190d32fef31fcb946 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-tree.html -aa3abeeddf4f78b6e884478b23b0928a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTreeModel.html -e485e7c8e7d9600f17b764e3e48de12a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderIterator.html -ab758549aa7236c00ebf0eaf3d392e65 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderContentTreeRenderer.html -314c2dc45fc398dc770eac663b1744d1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkStep.html -cb33aa4749f71e4dff5279791a61775a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.html -8841f834bfda5161429a4f58d7fb57b2 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkPropertyForm.html -1857bfe745f5abc77d62ff6f4097e22a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/FileDisplay.html -74e6ee6741d9acef1c7cbf8291404620 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertyForm.html -20f797537cef26419c9f5cda38327abf var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.FileFormatter.html -6260bc41a67d5a1f7700ff8811dca4ad var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.FileFormatter.html -65f938794ded95d313d9a12fc6187777 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-use.html -7d1ac1febaa2e1f14590474ed6ea0339 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkStep.html -961837c91c60d9c31571ca73ec1353d8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertyForm.html -cb2588b4e332df6bbcb2a5c53e941903 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkPropertyForm.html -dc5aaa9d973a887d41eca2acaf454aea var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-frame.html -336d8aa985ae778c9d959bc2cb7ac3af var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.html -3fb152daf8b5914857cb368aa55befc6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-tree.html -a59f9bcae2fe213e537ffbfa953d89da var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/FileDisplay.html -0a45cae46b0c01049920060b80eb5832 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-summary.html -38765f870899909325f9d5acc137acd5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html -b0aeb3c4a048673d19c6a5df8e425118 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-tree.html -ea71c9a0840aebd8c2b733ab583ae9cc var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultDisplay.html -08d81f28301e5895d3c701adf31ba81d var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchListModelBuilder.html -33ac4914a476ea2c69eb0014615b4469 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocIndexPage.html -6dff2b8c0653df57a2bcd61eefd6c716 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocFolderNavbar.html -cae37b4566b0d74c65b059b1637dd2eb var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocFolderNavbar.html -c7ff37f295960694ca8568537d9b7acb var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-use.html -d2627d19e37aa2fec095a3c7ed8b03e0 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-tree.html -c9afb86fe19f5bf772c84dcdb22f2b57 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-frame.html -a3f7fafd119ee572f4db66a3928f5b8b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.html -7a887b35074fa3347192832d23d89ddb var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-summary.html -4c4b33e807ede51eceb9e2540fdd4ea6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileRevisionsTable.html -65c5182820a0fef8b9c26c645e427f53 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkPane.html -7776db0c1d3983234a5ef3db6e88d2f0 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.DateFormat.html -d5233a55075701de6c4bd6fcf077e663 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFolderEdit.html -2059c010d93cd65baefd52986dc0c98e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultRenderer.html -2a6dc5b429c0fd888d2399e62b9ba80e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/RecentUpdatedDocsPortlet.html -c252b25cabdbf03baded7bd02bf7dfd4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMDispatcher.html -dcfd00c3999e198530201e25d63dd6e1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocModelBuilder.html -e127708818cd51654e240e34b2369a99 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.html -10492c52b4be98b07ffb642ffbfc301b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/LegacyCategoryDocsNavigatorPortlet.html -05f5c81d7d4e2574ff287c4a2199e900 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileDimensionalNavbar.html -a80b566334b28d56a4de756d9f8bcd56 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileUploadForm.html -85b2e1380d2d2f9cff0fc19b46e4c55c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.html -0709d40fa7cd956f539aaa3e536b016e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DCNDispatcher.html -4db53bd98c48e6f366b22363f326dc60 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryItemsBrowser.html -0fa49b8c06b1c2ebeecf43b679fca07d var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMConstants.html -94580841baee713d532e493b3cddb698 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchForm.html -5b161450f82fdaa16c84bb12529dbd3c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-use.html -768f9b0bd22756de5f3151afacd020af var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchStringValidationListener.html -fc16423db3840353bafa30207603f02d var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html -9dcd682ae760b111cfef506eeb983d19 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoriesPrintListener.html -244355f04ae343319ebdddb738351630 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.html -89ba805a2a45f917f8877b3dad38e1cc var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-frame.html -7e103434f752a25595f000e7dc12c990 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.html -156d2c97cea5f93311583bace4e7d994 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.FileSize.html -544d6c48804fc5466ab2a63b26178a5a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkSearchTable.html -43367b0966e8364339e0bf4202ce2110 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-summary.html -d852d0cc591c3bde7b18bc1f1c225de3 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocsNavigatorPortlet.html -349a03d5d26c073e9dbe2ac4432aa3a5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/GlobalizationUtil.html -25786c0eb959606cd6d1d61714bd961f var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-tree.html -36f6c854ab0dc26e3730a2ddc798e4ef var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-summary.html -17353b95f79a1cd76b2a9659d8d7c02c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/class-use/GlobalizationUtil.html -2afa83626c9ca3ec796cdd2ef76283a8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-frame.html -b869a8d6202126200ead570226d0fa9b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-use.html -b538278b306c14567e8b8c4cf2b134a1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-tree.html -65be89feab04ab3a719872ba03a53e23 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearcher.html -e134e1de77c7a6cd881c249f293d20a2 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResults.html -63932060caa914e55edbf1eb7408b71c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearchResults.html -e83f2b7af64352a9349ea3d608e63c9b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearchResults.html -6fe8ede849513be633a3017a1a33eeb4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/Searcher.html -87364691ab73d2b1d314ffe7c2475d41 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResult.html -888bf5b118c4074b444621b5019d6a96 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchUtils.html -1afc186da6de3f037b69837551308dda var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearcher.html -cefa6de0cd5867987035091be7559ec9 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResults.html -6ed55ad0b93adc2b6ebf0f6dd35f73f8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-use.html -06436ed7149f9d2dae9b829b71de1ba3 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/Searcher.html -37f8af8471fc046ab4be739c61c09aee var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearchResults.html -7dfb745f0e95d77563b3671f7b29c003 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearchResults.html -64294483d8497d806b9955e824a81abb var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearcher.html -54e9966a779a245ceeff9ed433712cf5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearcher.html -cab6d7aecf83946024a5967297571e94 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-frame.html -c949e68c8d0a7125bf95f67599c5ae9c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResult.html -859060e9fc44b09f7057da7c30a5373c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchUtils.html -04430983ea3a983aa8b0490ab49c5adc var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-summary.html -5a2d406b4d27f617cd0e7d6c5c0618d8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentLoader.html -f59c96f01158d93602cdf7dd63ac5cc4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentLoader.html -80868542e81a7bea24b0e5e2703ccc5e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgr.html -b9d3e2fd382b73b289b612449b244eb4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Document.html -dafeae720a02df7ef5ce2a4ff4510cc4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLinkLoader.html -9c0d1c029154df87f1b6f997389683da var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLink.html -d304c6626c57752b1a142e222acb1001 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolder.html -d289e2852147d5164e711eff73d21006 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolderLoader.html -6226631bf9d23703cf3c0b29f490b1e5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/ResourceExistsException.html -9af0737a8675e6cbc57862ecf84222f1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Repository.html -f58b0a6b423be3307687eb24e730ad3c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCollection.html -9f4de20fe0ca53a317e1fd66a9cebb68 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/LegacyCategoryBrowserApplication.html -75543c45c79b71286c1fdf9979e5b048 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgrConfig.html -8a496f812ceaf6fd16275a93e1786506 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Resource.html -ea783cb3c0706794270c27dccc508647 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCategoryBrowserApplication.html -987d3db5dfc101defab6bf92a64909b1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Util.html -7d767720c9503ab7d856d28c515729bf var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.html -697fa1f8ef2dd8788cd9af252699df21 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-summary.html -9f28514cd644d33e64e60b37d46bab29 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-frame.html -7ec24b206a2f8b89cb2e1bed5f0e16d4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/MultilingualDocumentResolver.html -b67240a397ff1139e6e40952ce907dfc var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/DocumentAssetPage.html -dcb817e36a28c5cbf2aa208af18e10e7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/DocumentAssetPage.html -a56412365a6336c1ddebcb12f5ee06cd var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-tree.html -1bce7e05fc91354c9e59265805ba96ac var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-use.html -4d6de5e803553ab8764ef8891720aa2e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-frame.html -f3c37bb5989f9e365906cf4bf0f57765 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-summary.html -c36b9de6257886f0eef1d6e2ff27515b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocLinkInitializer.html -893dcd87be30133dcdddb8de5b234aa7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocFolderInitializer.html -8e5f1e796c99d05da3dccc2302d71437 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocLinkInitializer.html -7f2bea601be107cbf1464dd5d7f8da9a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/Initializer.html -7449338a15cfdd423aa2f218626c3452 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocumentInitializer.html -a5d1b4b6afe79ed7026de42b344eaa45 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/MimeIconInitializer.html -cb11a7bcb99c89955d940cdcacfe273a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-frame.html -f5ba5c2b51f8bea37a3abcaf36be009c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-use.html -c119c7c81ea30a5c98df9cfc92cd2d1b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocumentInitializer.html -ddf2139015d08ff906ed44ef4ea69052 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-tree.html -114b1caadbbce45b81018315d5daefde var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/Initializer.html -2f823edb3cd79978511baa07151dc06b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/MimeIconInitializer.html -8008598f5523d92c771b68dd24d0cbc3 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocFolderInitializer.html -bc6ad974ef06e6a436a7f2e7fbec0b51 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-tree.html -f855fdb8db64b0af76a9dfced749a45c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCollection.html -e9b8d341998751e977b5a514dcfd87cc var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLink.html -83e48587a7a93a7e02e3179ca7d15476 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolderLoader.html -564d71234d31f527a93027d580ef110c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Util.html -1cf78815743ca79cd9380a3a2fa707e6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCategoryBrowserApplication.html -55e5db66409e48548011ed05a389ad9b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ResourceExistsException.html -f177cc22847940d53a604dc592cb37e7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Resource.html -2c691876cb4adf403975d95bb2dbfcd5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLinkLoader.html -1c0e256dd4574d2e0e21c8624f4b9d1c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-use.html -3e4bfe940c9c7fb0c4367323626c285b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/LegacyCategoryBrowserApplication.html -c609fc4566dfca806472d570611c5e2e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgrConfig.html -06f27ad4aa5d6f9a2bbab352524dd5b2 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Document.html -e4a10a18bc5ed5550ddbd55d307ca7e2 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolder.html -1af3a9a117e761392c835fe81fcc4b75 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgr.html -500f4d1d879ae486386691db33284f06 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Repository.html -d784b653f62894740e3fa842cd5c45f1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-summary.html -d47c658d9ac16500aaf457dda17eb8e4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-frame.html -0ee354d16cbde1cb91859e07f9bcf9d6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-tree.html -9dc2abffe5448aa07f05506fc85e8470 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/GlobalizationUtil.html -46da8335ef29401bc7c44b9d06f4ba32 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-use.html -54bcced194a46318111dea5316786624 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-summary.html -5ebd4f415687d28377bd9ceda130f1b9 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/class-use/GlobalizationUtil.html -e4e57a3c47ea23b260f3e1b44dd4b956 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/DocBlobject.html -34c4e83a3f29346fb2bf01d1ea1ae8a0 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImplCollection.html -f8cf038ec7b8fb8451790172de721e33 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/TypeChangeException.html -da8abacfdc8d19b701f5e96036c53064 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Repository.html -c56735148021d4230df4d71e7b7a8533 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ContentTypeException.html -f75a19463f6565daac61c58b529d8529 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Constants.html -17f5bc7c9c2658fd3feae89b5cec54ef var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Folder.html -02d981f6055e4755ef2003da28fa28b3 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImpl.html -3e4e22f11df3cbdfc6136cb4ebc18ac5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/File.html -0ea19c5dfac3c521ed10fdef24cc459e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Util.html -7439112a7fbb9c451b6af6fe30f0f298 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Lockable.html -de27469ba20448b85d8ee238ffcc42c6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Resource.html -5d614c1241a9df87d0a86724d8cff45e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceNotEmptyException.html -34dc743a8655156279213c090a7e5b44 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceException.html -ef5bfb354027daa711466fb437e3b1bd var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceExistsException.html -d13891d60b8c5750087dfa157209c441 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidMimeTypeFormatException.html -6d6eecb1bfe71c685630feceaf771f8b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/MimeTypeXMLLoader.html -d4807be29d32cfb784faa4ff072692e6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ApplicationAuthenticationListener.html -5e918889e63589288a2d2e686f391ed0 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidNameException.html -dab45f566857c0cf4035d65f497601a3 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Folder.html -f378977ce74f6f6f7e992c0d79c47555 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-use.html -7fb7d8e3f9f8ce34772ecb922f41539b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceNotEmptyException.html -dfb1c83cc65334b9fc83f8d0e14258f0 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidNameException.html -3325f8a5ace62cf3b1a10c1c8a0f59a2 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMConstants.html -881ae53628e962d528534e187fa976c4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMDispatcher.html -e0204071b662d3ea0d3a064fd273da26 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.html -1c22f1f4b9bdc7ed619650ac897870ce var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.DateFormat.html -90a01a5e0ab90081c6ae5ca94d1896c8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html -4a58eb47a00a606474de533e4efafeab var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/FileUploadForm.html -b0cd341a8a71253dde13402ea347da9a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMConstants.html -4c0d0edac4dd95769a5d9f54cf05388d var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html -7a1c44ed44bbc169a667612db8bd6f95 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html -d30874e6aa333bbff4c29146f0aaece9 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.html -090d4153c16d1d78ccd1bc4499529877 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html -a628a3703c5b1ccaa4316f1e91197436 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.FileSize.html -6b508c68924e8308b24c085c5e012d6a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-use.html -04a6d16f2d52077f0a59b340b9ed3e89 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html -d33a5057ee59c598af26ee3d92e75ed8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.FileSize.html -81b91e749830fdd8235f7554079091b7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.html -9fae49635e43b1dd4d84c815d8f3b5fe var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html -591a6bc196eed8b3e6165094cf6289cf var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/RecentUpdatedDocsPortlet.html -3be02a4990103c919c4159e8acace62c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/FileUploadForm.html -08b1bbdd258a2bd67e085407e52b22c5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-summary.html -431e9f7a4e1a49060ce2d4f901e5a1aa var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-tree.html -8a377594b1a595bc473d51011b5a56eb var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.html -c030f9fd2e6c7b7699197d19a53b325a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.DateFormat.html -d5fecd951b6ddac12546543bd0e34f67 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMDispatcher.html -4ffd556f5026ec52889da94578c046e7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-frame.html -114e433a7e57002b3141583063d50de8 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html -d5549fae9bed55ac003d5c91ef40f5be var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Constants.html -0e50112bf91d2f70acf2cc37c1858fc5 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-tree.html -6bb7b0677aefc0a42b412cd91246c238 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-use.html -92c6212ddf519809b2be03acbf3996d9 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-frame.html -24beb0631824d8a4faf1ebb82457d740 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/Initializer.html -d599bfd2bc8741de7deb366f35f6f850 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-summary.html -5d91f10981e7a8da0a9a76b1b31b00ce var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/class-use/Initializer.html -fe2647e4d429ad4ace2610020c58721e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Resource.html -add5fe9cf77ec0d83eed4dfbde7f239b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceExistsException.html -1bb85f0af2303d0d813de3f5581122b1 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImpl.html -0c56cb29da068a4f85f6c13e5257f85e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Lockable.html -9c71b7809e543474237090ca1834f5f9 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-tree.html -a37783081eeb398f7f1ffeb4661d8b5b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ContentTypeException.html -0f2947654219741f7b544dd2300c0468 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/DocBlobject.html -afac496dca0c846bb76542aa8690001e var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/TypeChangeException.html -413902b00e71af6a1c63b0942a1d5491 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-summary.html -8e347295ea3dbe264cc7df03d7f8109c var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceException.html -85e4e17482be1e51bde333c0f0ae56e7 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidMimeTypeFormatException.html -b48ac21f2623bfffb4fd1299a7a5ca81 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/MimeTypeXMLLoader.html -c1289f9c74dabdd50099602ea2cd22a4 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/File.html -f7756c1361ee8b6c1570010fac798bc6 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Repository.html -790158c2e0c02edb0b3fb806954c9d35 var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Util.html -1db2fc35695dc588d252afe8a1cf50ab var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-frame.html -6871ad82af8bf74430e9e44871ed9f9b var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ApplicationAuthenticationListener.html -3e7b4b6e70d9f5340ec49d42d434269a var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImplCollection.html -2aa9433e22de4ca7c453cbc4374189d8 var/www/html/ccm-docmgr-6.3.0/api/constant-values.html -84fb7af9b30f4e499a32bb396f4bf535 var/www/html/ccm-docmgr-6.3.0/api/overview-tree.html -ef31c316b8a2a909b320154e2170f54d var/www/html/ccm-docmgr-6.3.0/api/allclasses-noframe.html -8cc88314fce0cc52e57f9ccb2cb8436e var/www/html/ccm-docmgr-6.3.0/api/stylesheet.css -220f4eda0bd49915699315f18b8b03cf var/www/html/ccm-docmgr-6.3.0/api/resources/inherit.gif -b1b15144c673777a60557915a7dfcb1e var/www/html/ccm-docmgr-6.3.0/api/package-list -473e34f40579f59e52d3b5e90e854167 var/www/html/ccm-docmgr-6.3.0/api/overview-summary.html -f2fbb5bb2c2a239099f7d45321ce7d94 var/www/html/ccm-docmgr-6.3.0/api/overview-frame.html -a047f349c45a6b4c54d462c7eff95149 var/www/html/ccm-docmgr-6.3.0/api/packages.html -f752bf5e7305d54603b5300043fcde0a var/www/html/ccm-docmgr-6.3.0/api/deprecated-list.html -7c669924024eec35a2186fc481f38339 var/www/html/ccm-docmgr-6.3.0/api/help-doc.html -ae50b8f4436caed0d0ac0db1e9e40290 var/www/html/ccm-docmgr-6.3.0/api/index.html -0b71156b0661eb6c0603f0e45fa4df74 var/www/html/ccm-docmgr-6.3.0/api/allclasses-frame.html -ba0a9af40fb3cc7f913ea20d6e30d9eb var/www/html/ccm-docmgr-6.3.0/api/index-all.html -eb590b69b1dbb663b00e2e2d0db05c47 var/www/html/ccm-docmgr-6.3.0/api/serialized-form.html diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/usr/share/doc/ccm-docmgr-doc/changelog.Debian.gz b/ccm-docmgr/debian/ccm-docmgr-doc/usr/share/doc/ccm-docmgr-doc/changelog.Debian.gz deleted file mode 100755 index 0a90d8060..000000000 Binary files a/ccm-docmgr/debian/ccm-docmgr-doc/usr/share/doc/ccm-docmgr-doc/changelog.Debian.gz and /dev/null differ diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/usr/share/doc/ccm-docmgr-doc/copyright b/ccm-docmgr/debian/ccm-docmgr-doc/usr/share/doc/ccm-docmgr-doc/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/usr/share/doc/ccm-docmgr-doc/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/allclasses-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/allclasses-frame.html deleted file mode 100755 index cd8b48d69..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/allclasses-frame.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - -All Classes (Document Manager API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
ApplicationAuthenticationListener -
-BrowseFileInfoPropertiesPane -
-BrowseFileRevisionsTable -
-BrowseFolderEdit -
-CategoriesPrintListener -
-CategoryDocModelBuilder -
-CategoryDocsNavigatorPortlet -
-CategoryItemsBrowser -
-Constants -
-ContentTypeException -
-CreateDocLinkPane -
-CreateDocLinkSearchTable -
-DCNDispatcher -
-DMConstants -
-DMConstants -
-DMDispatcher -
-DMDispatcher -
-DMUtils -
-DMUtils -
-DMUtils.DateFormat -
-DMUtils.DateFormat -
-DMUtils.FileSize -
-DMUtils.FileSize -
-DocBlobject -
-DocFolder -
-DocFolderAppCellRenderer -
-DocFolderContentTreeRenderer -
-DocFolderInitializer -
-DocFolderIterator -
-DocFolderLoader -
-DocFolderNavbar -
-DocFolderTreeNode -
-DocFoldersContentTree -
-DocFoldersContentTreeModel -
-DocIndexPage -
-DocLink -
-DocLinkInitializer -
-DocLinkLoader -
-DocLinkPropertyForm -
-DocLinkStep -
-DocMgr -
-DocMgrConfig -
-DocmgrBasePage -
-DocmgrBasePage -
-Document -
-DocumentAssetPage -
-DocumentCategoryBrowserApplication -
-DocumentCollection -
-DocumentInitializer -
-DocumentLoader -
-DocumentPropertiesStep -
-DocumentPropertiesStep.FileFormatter -
-DocumentPropertyForm -
-File -
-FileDimensionalNavbar -
-FileDisplay -
-FileUploadForm -
-FileUploadForm -
-Folder -
-GlobalizationUtil -
-GlobalizationUtil -
-Initializer -
-Initializer -
-IntermediaSearchResults -
-IntermediaSearcher -
-InvalidMimeTypeFormatException -
-InvalidNameException -
-LegacyCategoryBrowserApplication -
-LegacyCategoryDocsNavigatorPortlet -
-Lockable -
-LuceneSearchResults -
-LuceneSearcher -
-MimeIconInitializer -
-MimeTypeXMLLoader -
-MultilingualDocumentResolver -
-PagingControlContainer -
-RecentUpdatedDocsPortlet -
-RecentUpdatedDocsPortlet -
-Repository -
-Repository -
-RepositoryTreeModel -
-Resource -
-Resource -
-ResourceException -
-ResourceExistsException -
-ResourceExistsException -
-ResourceImpl -
-ResourceImplCollection -
-ResourceNotEmptyException -
-SearchForm -
-SearchList -
-SearchList.SearchResultDisplay -
-SearchList.SearchResultRenderer -
-SearchListModelBuilder -
-SearchResult -
-SearchResults -
-SearchStringValidationListener -
-SearchUtils -
-Searcher -
-TypeChangeException -
-Util -
-Util -
-
- - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/allclasses-noframe.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/allclasses-noframe.html deleted file mode 100755 index 42fcd2055..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/allclasses-noframe.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - -All Classes (Document Manager API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
ApplicationAuthenticationListener -
-BrowseFileInfoPropertiesPane -
-BrowseFileRevisionsTable -
-BrowseFolderEdit -
-CategoriesPrintListener -
-CategoryDocModelBuilder -
-CategoryDocsNavigatorPortlet -
-CategoryItemsBrowser -
-Constants -
-ContentTypeException -
-CreateDocLinkPane -
-CreateDocLinkSearchTable -
-DCNDispatcher -
-DMConstants -
-DMConstants -
-DMDispatcher -
-DMDispatcher -
-DMUtils -
-DMUtils -
-DMUtils.DateFormat -
-DMUtils.DateFormat -
-DMUtils.FileSize -
-DMUtils.FileSize -
-DocBlobject -
-DocFolder -
-DocFolderAppCellRenderer -
-DocFolderContentTreeRenderer -
-DocFolderInitializer -
-DocFolderIterator -
-DocFolderLoader -
-DocFolderNavbar -
-DocFolderTreeNode -
-DocFoldersContentTree -
-DocFoldersContentTreeModel -
-DocIndexPage -
-DocLink -
-DocLinkInitializer -
-DocLinkLoader -
-DocLinkPropertyForm -
-DocLinkStep -
-DocMgr -
-DocMgrConfig -
-DocmgrBasePage -
-DocmgrBasePage -
-Document -
-DocumentAssetPage -
-DocumentCategoryBrowserApplication -
-DocumentCollection -
-DocumentInitializer -
-DocumentLoader -
-DocumentPropertiesStep -
-DocumentPropertiesStep.FileFormatter -
-DocumentPropertyForm -
-File -
-FileDimensionalNavbar -
-FileDisplay -
-FileUploadForm -
-FileUploadForm -
-Folder -
-GlobalizationUtil -
-GlobalizationUtil -
-Initializer -
-Initializer -
-IntermediaSearchResults -
-IntermediaSearcher -
-InvalidMimeTypeFormatException -
-InvalidNameException -
-LegacyCategoryBrowserApplication -
-LegacyCategoryDocsNavigatorPortlet -
-Lockable -
-LuceneSearchResults -
-LuceneSearcher -
-MimeIconInitializer -
-MimeTypeXMLLoader -
-MultilingualDocumentResolver -
-PagingControlContainer -
-RecentUpdatedDocsPortlet -
-RecentUpdatedDocsPortlet -
-Repository -
-Repository -
-RepositoryTreeModel -
-Resource -
-Resource -
-ResourceException -
-ResourceExistsException -
-ResourceExistsException -
-ResourceImpl -
-ResourceImplCollection -
-ResourceNotEmptyException -
-SearchForm -
-SearchList -
-SearchList.SearchResultDisplay -
-SearchList.SearchResultRenderer -
-SearchListModelBuilder -
-SearchResult -
-SearchResults -
-SearchStringValidationListener -
-SearchUtils -
-Searcher -
-TypeChangeException -
-Util -
-Util -
-
- - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolder.html deleted file mode 100755 index 5e7151a65..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolder.html +++ /dev/null @@ -1,983 +0,0 @@ - - - - - - -DocFolder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocFolder

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.versioning.VersionedACSObject
-                  extended bycom.arsdigita.cms.ContentItem
-                      extended bycom.arsdigita.cms.Folder
-                          extended bycom.arsdigita.cms.docmgr.DocFolder
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, com.arsdigita.cms.CustomCopy, Resource
-
-
-
-
public class DocFolder
extends com.arsdigita.cms.Folder
implements Resource
- -

-This class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field. Otherwise, it would just be cms.Folder. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.cms.Folder
com.arsdigita.cms.Folder.ItemCollection
-  - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-          Data object type for this domain object
-static StringDESCRIPTION - -
-           
-static StringTYPE - -
-          Data object type for this domain object (for CMS compatibility)
- - - - - - - -
Fields inherited from class com.arsdigita.cms.Folder
HOME_FOLDER, HOME_SECTION, INDEX, ITEMS, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ContentItem
ANCESTORS, AUDITING, CHILDREN, CONTENT_SECTION, CONTENT_TYPE, DRAFT, DRAFT_VERSION, extraXMLGenerators, LANGUAGE, LIVE, PARENT, PENDING, VERSION, VERSIONS
- - - - - - - -
Fields inherited from class com.arsdigita.versioning.VersionedACSObject
IS_DELETED, MASTER
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.Resource
SEPARATOR, SEPARATOR_CHAR
-  - - - - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
DocFolder() - -
-           
DocFolder(BigDecimal id) - -
-           
DocFolder(com.arsdigita.persistence.DataObject obj) - -
-           
DocFolder(com.arsdigita.persistence.OID id) - -
-           
DocFolder(String type) - -
-           
DocFolder(String title, - String descrip, - DocFolder parent) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- ResourcecopyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourcecopyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- StringgetDescription() - -
-          Returns a description of the resource, or null if no - description has been provided.
- ResourcegetParentResource() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
-static RepositorygetRepository(Resource r) - -
-           
-static DocFoldergetRootFolder(DocFolder f) - -
-           
- StringgetTitle() - -
-          Returns the title of the file or folder corresponding to this - resource.
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- booleanisRoot() - -
-          Is this the root?
-static DocFolderretrieveDocFolder(com.arsdigita.persistence.DataObject docfolderData) - -
-          Returns a DocFolder for the given data object.
- DocFolderretrieveSubFolder(String folderTitle) - -
-           
- ResourceretrieveSubResource(String resourceTitle) - -
-           
- voidsetDescription(String description) - -
-           
- voidsetParentResource(Resource r) - -
-          Set parent object
- voidsetTitle(String title) - -
-           
- URLtoURL() - -
-          Returns the URL corresponding to this resource.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.Folder
addItem, addPendingVersion, afterSave, autoPublishIfAssociated, beforeDelete, beforeSave, canPublishToFS, containsFolders, copyItemsToFolder, copyProperty, delete, getBaseDataObjectType, getDisplayName, getIndexItem, getItem, getItems, getItems, getLabel, getLifecycle, getPrimaryInstances, getUserHomeFolder, isEmpty, makeCopy, publish, removeIndexItem, removeLifecycle, removePendingVersion, setIndexItem, setLabel, setLifecycle, setUserHomeFolder, setVersion, unpublish
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ContentItem
addCategory, assertDraft, assertLive, assertMaster, assertPending, copy, copy, copyProperty, copyServices, copyServicesFrom, createLiveVersion, createPendingVersion, get, getCategories, getCategoryCollection, getChildren, getContentSection, getContentType, getCreationDate, getCreationIP, getCreationUser, getDraftVersion, getExtraXMLGenerators, getLanguage, getLastModifiedDate, getLastModifiedIP, getLastModifiedUser, getLiveVersion, getLocale, getName, getParent, getPath, getPathInfo, getPathInfo, getPathNoJsp, getPendingVersions, getPublicVersion, getPublishListenerClassName, getVersion, getWorkingVersion, initialize, isDraftVersion, isLive, isLiveVersion, isPendingVersion, isPublished, promotePendingVersion, publishToFS, removeCategory, removeLifecycle, republish, set, setContentSection, setContentType, setDefaultCategory, setLanguage, setLive, setLiveVersion, setName, setParent, setVersionRecursively, unpublishFromFS
- - - - - - - -
Methods inherited from class com.arsdigita.versioning.VersionedACSObject
applyTag, applyUniqueTag, autoPropagateMaster, getMaster, getRolledBackTo, getTransactions, getTransactions, isMaster, isRolledBack, isSubtype, permanentlyDelete, propagateMaster, recordAttributeChange, rollBackTo, rollBackTo, rollForward, save, setMaster, trackChanges
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, clear, disconnect, equals, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.cms.docmgr.Resource
delete, getID, getPath, save, toString
-  -

- - - - - - - - -
-Field Detail
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
Data object type for this domain object -

-

-
See Also:
Constant Field Values
-
-
- -

-TYPE

-
-public static final String TYPE
-
-
Data object type for this domain object (for CMS compatibility) -

-

-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocFolder

-
-public DocFolder()
-
-
-
- -

-DocFolder

-
-public DocFolder(BigDecimal id)
-          throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-DocFolder

-
-public DocFolder(com.arsdigita.persistence.OID id)
-          throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-DocFolder

-
-public DocFolder(com.arsdigita.persistence.DataObject obj)
-
-
-
- -

-DocFolder

-
-public DocFolder(String type)
-
-
-
- -

-DocFolder

-
-public DocFolder(String title,
-                 String descrip,
-                 DocFolder parent)
-
-
- - - - - - - - -
-Method Detail
- -

-retrieveDocFolder

-
-public static DocFolder retrieveDocFolder(com.arsdigita.persistence.DataObject docfolderData)
-
-
Returns a DocFolder for the given data object. Use this method instead - of the new Docfolder(DataObject) method. This method uses the domain - object factory to produce the appropriate docfolder class. -

-

-
-
-
-
Parameters:
docfolderData - the docfolder DataObject -
Returns:
the docfolder for the given data object.
-
-
-
- -

-retrieveSubFolder

-
-public DocFolder retrieveSubFolder(String folderTitle)
-                            throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
-
-
- -
Throws: -
com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-retrieveSubResource

-
-public Resource retrieveSubResource(String resourceTitle)
-                             throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
-
-
- -
Throws: -
com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a folder. -

-

-
Specified by:
isFolder in interface Resource
-
-
-
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a file. -

-

-
Specified by:
isFile in interface Resource
-
-
-
-
-
-
- -

-getTitle

-
-public String getTitle()
-
-
Description copied from interface: Resource
-
Returns the title of the file or folder corresponding to this - resource. Use title instead of name to be CMS friendly -

-

-
Specified by:
getTitle in interface Resource
-
-
-
-
-
-
- -

-setTitle

-
-public void setTitle(String title)
-
-
-
-
-
-
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Description copied from interface: Resource
-
Returns a description of the resource, or null if no - description has been provided. -

-

-
Specified by:
getDescription in interface Resource
-
-
-
-
-
-
- -

-setDescription

-
-public void setDescription(String description)
-
-
-
-
-
-
-
-
-
- -

-copyTo

-
-public Resource copyTo(Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location. Preserves the - original name of the resource but places the copy inside a new - parent resource. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
parent - the parent of the copy -
Returns:
a copy of the original resource -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location with a new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy
parent - the parent of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name)
-                throws ResourceExistsException
-
-
Copies the resource into the same location (same parent) with a - new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
Description copied from interface: Resource
-
Returns the URL corresponding to this resource. -

-

-
Specified by:
toURL in interface Resource
-
-
-
-
-
-
- -

-isRoot

-
-public boolean isRoot()
-
-
Description copied from interface: Resource
-
Is this the root? -

-

-
Specified by:
isRoot in interface Resource
-
-
-
-
-
-
- -

-getParentResource

-
-public Resource getParentResource()
-
-
Description copied from interface: Resource
-
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -

-

-
Specified by:
getParentResource in interface Resource
-
-
-
-
-
-
- -

-setParentResource

-
-public void setParentResource(Resource r)
-
-
Description copied from interface: Resource
-
Set parent object -

-

-
Specified by:
setParentResource in interface Resource
-
-
-
-
-
-
- -

-getRootFolder

-
-public static DocFolder getRootFolder(DocFolder f)
-
-
-
-
-
-
-
-
-
- -

-getRepository

-
-public static Repository getRepository(Resource r)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolderLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolderLoader.html deleted file mode 100755 index e01da0ad1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocFolderLoader.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - -DocFolderLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocFolderLoader

-
-java.lang.Object
-  extended bycom.arsdigita.util.parameter.AbstractParameterContext
-      extended bycom.arsdigita.runtime.AbstractScript
-          extended bycom.arsdigita.loader.PackageLoader
-              extended bycom.arsdigita.cms.contenttypes.AbstractContentTypeLoader
-                  extended bycom.arsdigita.cms.docmgr.DocFolderLoader
-
-
-
All Implemented Interfaces:
com.arsdigita.util.parameter.ParameterContext, com.arsdigita.runtime.Script
-
-
-
-
public class DocFolderLoader
extends com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.loader.PackageLoader
s_log
-  - - - - - - - - - - -
-Constructor Summary
DocFolderLoader() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- String[]getTypes() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
getContentSections, prepareSection, run, setDefaultTemplate
- - - - - - - -
Methods inherited from class com.arsdigita.loader.PackageLoader
exists, exists, exists, load, loader, requires, requires, requires
- - - - - - - -
Methods inherited from class com.arsdigita.util.parameter.AbstractParameterContext
get, get, getParameters, load, load, loadInfo, register, save, set, validate, validate
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.util.parameter.ParameterContext
get, get, getParameters, load, save, set, validate
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFolderLoader

-
-public DocFolderLoader()
-
-
- - - - - - - - -
-Method Detail
- -

-getTypes

-
-public String[] getTypes()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLink.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLink.html deleted file mode 100755 index c27ace21a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLink.html +++ /dev/null @@ -1,1229 +0,0 @@ - - - - - - -DocLink (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocLink

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.versioning.VersionedACSObject
-                  extended bycom.arsdigita.cms.ContentItem
-                      extended bycom.arsdigita.cms.ContentPage
-                          extended bycom.arsdigita.cms.docmgr.DocLink
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, com.arsdigita.cms.CustomCopy, Resource, com.arsdigita.search.Searchable, com.arsdigita.search.intermedia.Searchable
-
-
-
-
public class DocLink
extends com.arsdigita.cms.ContentPage
implements Resource, com.arsdigita.search.Searchable
- -

-DomainObject class which represents DocLink ContentType objects. - - A DocLink will either have an internal reference to another Document - _or_ contain an external (http) URL. -

- -

-

-
Author:
-
Shashin Shinde, Crag Wolfe - - $Id: DocLink.java,v 1.1 2004/12/15 16:06:37 pkopunec Exp $
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-          Data object type for this domain object
-static StringDESCRIPTION - -
-           
-static StringLAST_MOD_LOCAL - -
-           
-static StringTYPE - -
-          Data object type for this domain object (for CMS compatibility)
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ContentPage
LAUNCH_DATE, PAGES_IN_CATEGORY, PAGES_IN_FOLDER, QUERY_CATEGORY_ID, QUERY_PAGE, QUERY_ROOT_ID, QUERY_TYPE, SUMMARY, TITLE, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ContentItem
ANCESTORS, AUDITING, CHILDREN, CONTENT_SECTION, CONTENT_TYPE, DRAFT, DRAFT_VERSION, extraXMLGenerators, LANGUAGE, LIVE, NAME, PARENT, PENDING, VERSION, VERSIONS
- - - - - - - -
Fields inherited from class com.arsdigita.versioning.VersionedACSObject
IS_DELETED, MASTER
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.Resource
SEPARATOR, SEPARATOR_CHAR
- - - - - - - -
Fields inherited from interface com.arsdigita.search.intermedia.Searchable
versionId
-  - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
DocLink() - -
-           
DocLink(BigDecimal id) - -
-           
DocLink(com.arsdigita.persistence.DataObject obj) - -
-           
DocLink(com.arsdigita.persistence.OID id) - -
-           
DocLink(String type) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidbeforeSave() - -
-           
- ResourcecopyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourcecopyTo(String name) - -
-          Copies the resource into the same location (same parent) with passed - in name as new name.
- ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voiddelete() - -
-          Delete this Link along with it's parent ContentBundle
- StringgetDescription() - -
-          Returns a description of the resource, or null if no - description has been provided.
- StringgetExternalURL() - -
-           
- DategetLastModifiedLocal() - -
-           
- ResourcegetParentResource() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
- RepositorygetRepository() - -
-           
- StringgetSearchLanguage() - -
-           
- StringgetSearchLinkText() - -
-           
- byte[]getSearchRawContent() - -
-          Over-ride to avoid any indexing of data for this ContentType.
- StringgetSearchUrlStub() - -
-           
- StringgetSearchXMLContent() - -
-          Over-ride to avoid any indexing of data for this ContentType.
- DocumentgetTarget() - -
-           
- booleanisExternal() - -
-           
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- booleanisRoot() - -
-          Is this the root?
- voidsetCategories(String[] catIDs) - -
-           
- voidsetDescription(String desc) - -
-           
- voidsetExternalURL(String externalURL) - -
-           
- voidsetLastModifiedLocal(Date last) - -
-           
- voidsetParentResource(Resource parent) - -
-          Set parent object
- voidsetRepository(Repository repository) - -
-           
- voidsetTarget(Document target) - -
-          Set Target Document of this Link.Also set's the name of the Link.
- voidsetTitle(String title) - -
-           
- URLtoURL() - -
-          Returns the URL corresponding to this resource.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ContentPage
getBaseDataObjectType, getContentBundle, getDisplayName, getLaunchDate, getPagesInSectionQuery, getPagesInSectionQuery, getPagesInSectionQuery, getPagesInSectionQuery, getSearchSummary, getTitle, setLaunchDate, setName, setPagesQueryParameters, setPagesQueryParameters
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ContentItem
addCategory, addPendingVersion, afterSave, assertDraft, assertLive, assertMaster, assertPending, beforeDelete, canPublishToFS, copy, copy, copyProperty, copyProperty, copyServices, copyServicesFrom, createLiveVersion, createPendingVersion, get, getCategories, getCategoryCollection, getChildren, getContentSection, getContentType, getCreationDate, getCreationIP, getCreationUser, getDraftVersion, getExtraXMLGenerators, getLanguage, getLastModifiedDate, getLastModifiedIP, getLastModifiedUser, getLifecycle, getLiveVersion, getLocale, getName, getParent, getPath, getPathInfo, getPathInfo, getPathNoJsp, getPendingVersions, getPublicVersion, getPublishListenerClassName, getVersion, getWorkingVersion, initialize, isDraftVersion, isLive, isLiveVersion, isPendingVersion, isPublished, makeCopy, promotePendingVersion, publish, publishToFS, removeCategory, removeLifecycle, removePendingVersion, republish, set, setContentSection, setContentType, setDefaultCategory, setLanguage, setLifecycle, setLive, setLiveVersion, setParent, setVersion, setVersionRecursively, unpublish, unpublishFromFS
- - - - - - - -
Methods inherited from class com.arsdigita.versioning.VersionedACSObject
applyTag, applyUniqueTag, autoPropagateMaster, getMaster, getRolledBackTo, getTransactions, getTransactions, isMaster, isRolledBack, isSubtype, permanentlyDelete, propagateMaster, recordAttributeChange, rollBackTo, rollBackTo, rollForward, save, setMaster, trackChanges
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, clear, disconnect, equals, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.cms.docmgr.Resource
getID, getPath, getTitle, save, toString
- - - - - - - -
Methods inherited from interface com.arsdigita.search.intermedia.Searchable
getSearchSummary
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
Data object type for this domain object -

-

-
See Also:
Constant Field Values
-
-
- -

-TYPE

-
-public static final String TYPE
-
-
Data object type for this domain object (for CMS compatibility) -

-

-
See Also:
Constant Field Values
-
-
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-LAST_MOD_LOCAL

-
-public static final String LAST_MOD_LOCAL
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocLink

-
-public DocLink()
-
-
-
- -

-DocLink

-
-public DocLink(BigDecimal id)
-        throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-DocLink

-
-public DocLink(com.arsdigita.persistence.OID id)
-        throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-DocLink

-
-public DocLink(com.arsdigita.persistence.DataObject obj)
-
-
-
- -

-DocLink

-
-public DocLink(String type)
-
-
- - - - - - - - -
-Method Detail
- -

-setTitle

-
-public void setTitle(String title)
-
-
-
-
-
-
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Description copied from interface: Resource
-
Returns a description of the resource, or null if no - description has been provided. -

-

-
Specified by:
getDescription in interface Resource
-
-
-
See Also:
Resource.getDescription()
-
-
-
- -

-setDescription

-
-public void setDescription(String desc)
-
-
-
-
-
-
-
-
-
- -

-isExternal

-
-public boolean isExternal()
-
-
-
-
-
-
-
-
-
- -

-getExternalURL

-
-public String getExternalURL()
-
-
-
-
-
-
-
-
-
- -

-setExternalURL

-
-public void setExternalURL(String externalURL)
-
-
-
-
-
-
-
-
-
- -

-getRepository

-
-public Repository getRepository()
-
-
-
-
-
-
-
-
-
- -

-setRepository

-
-public void setRepository(Repository repository)
-
-
-
-
-
-
-
-
-
- -

-getLastModifiedLocal

-
-public Date getLastModifiedLocal()
-
-
-
-
-
-
-
-
-
- -

-setLastModifiedLocal

-
-public void setLastModifiedLocal(Date last)
-
-
-
-
-
-
-
-
-
- -

-setTarget

-
-public void setTarget(Document target)
-
-
Set Target Document of this Link.Also set's the name of the Link. - i.e. target.getName()-LinkToxxxx -

-

-
-
-
-
-
-
-
- -

-getTarget

-
-public Document getTarget()
-
-
-
-
-
-
-
-
-
- -

-getParentResource

-
-public Resource getParentResource()
-
-
Description copied from interface: Resource
-
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -

-

-
Specified by:
getParentResource in interface Resource
-
-
-
See Also:
Returns the parent DocFolder
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a folder. -

-

-
Specified by:
isFolder in interface Resource
-
-
-
See Also:
returns false to indicate that it's not a folder.
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a file. -

-

-
Specified by:
isFile in interface Resource
-
-
-
See Also:
returns true to indicate that it's a file.
-
-
-
- -

-copyTo

-
-public Resource copyTo(Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location. Preserves the - original name of the resource but places the copy inside a new - parent resource. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
parent - the parent of the copy -
Returns:
a copy of the original resource -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location with a new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy
parent - the parent of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name)
-                throws ResourceExistsException
-
-
Copies the resource into the same location (same parent) with passed - in name as new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
Description copied from interface: Resource
-
Returns the URL corresponding to this resource. -

-

-
Specified by:
toURL in interface Resource
-
-
-
See Also:
Not Supported.throws UnsupportedOperationException
-
-
-
- -

-setParentResource

-
-public void setParentResource(Resource parent)
-
-
Description copied from interface: Resource
-
Set parent object -

-

-
Specified by:
setParentResource in interface Resource
-
-
-
See Also:
Resource.setParentResource(com.arsdigita.cms.docmgr.Resource)
-
-
-
- -

-isRoot

-
-public boolean isRoot()
-
-
Description copied from interface: Resource
-
Is this the root? -

-

-
Specified by:
isRoot in interface Resource
-
-
-
See Also:
returns false to indicate that it's not the root.
-
-
-
- -

-delete

-
-public void delete()
-            throws com.arsdigita.persistence.PersistenceException
-
-
Delete this Link along with it's parent ContentBundle -

-

-
Specified by:
delete in interface Resource
-
-
- -
Throws: -
com.arsdigita.persistence.PersistenceException
See Also:
DomainObject.delete()
-
-
-
- -

-getSearchXMLContent

-
-public String getSearchXMLContent()
-
-
Over-ride to avoid any indexing of data for this ContentType. - returns empty string; -

-

-
Specified by:
getSearchXMLContent in interface com.arsdigita.search.intermedia.Searchable
-
-
-
-
-
-
- -

-getSearchRawContent

-
-public byte[] getSearchRawContent()
-
-
Over-ride to avoid any indexing of data for this ContentType. - returns empty byte array; -

-

-
Specified by:
getSearchRawContent in interface com.arsdigita.search.intermedia.Searchable
-
-
-
-
-
-
- -

-setCategories

-
-public void setCategories(String[] catIDs)
-
-
-
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
-
-
-
-
- -

-getSearchLanguage

-
-public String getSearchLanguage()
-
-
-
Specified by:
getSearchLanguage in interface com.arsdigita.search.intermedia.Searchable
-
-
-
-
-
-
- -

-getSearchLinkText

-
-public String getSearchLinkText()
-
-
-
Specified by:
getSearchLinkText in interface com.arsdigita.search.intermedia.Searchable
-
-
-
-
-
-
- -

-getSearchUrlStub

-
-public String getSearchUrlStub()
-
-
-
Specified by:
getSearchUrlStub in interface com.arsdigita.search.intermedia.Searchable
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLinkLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLinkLoader.html deleted file mode 100755 index 2727b6654..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocLinkLoader.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - -DocLinkLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocLinkLoader

-
-java.lang.Object
-  extended bycom.arsdigita.util.parameter.AbstractParameterContext
-      extended bycom.arsdigita.runtime.AbstractScript
-          extended bycom.arsdigita.loader.PackageLoader
-              extended bycom.arsdigita.cms.contenttypes.AbstractContentTypeLoader
-                  extended bycom.arsdigita.cms.docmgr.DocLinkLoader
-
-
-
All Implemented Interfaces:
com.arsdigita.util.parameter.ParameterContext, com.arsdigita.runtime.Script
-
-
-
-
public class DocLinkLoader
extends com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.loader.PackageLoader
s_log
-  - - - - - - - - - - -
-Constructor Summary
DocLinkLoader() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- String[]getTypes() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
getContentSections, prepareSection, run, setDefaultTemplate
- - - - - - - -
Methods inherited from class com.arsdigita.loader.PackageLoader
exists, exists, exists, load, loader, requires, requires, requires
- - - - - - - -
Methods inherited from class com.arsdigita.util.parameter.AbstractParameterContext
get, get, getParameters, load, load, loadInfo, register, save, set, validate, validate
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.util.parameter.ParameterContext
get, get, getParameters, load, save, set, validate
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocLinkLoader

-
-public DocLinkLoader()
-
-
- - - - - - - - -
-Method Detail
- -

-getTypes

-
-public String[] getTypes()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgr.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgr.html deleted file mode 100755 index 791d15e08..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgr.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - -DocMgr (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocMgr

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.DocMgr
-
-
-
-
public class DocMgr
extends Object
- -

-Provides a set of helper methods for the DocManager module. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static DocMgrConfiggetConfig() - -
-          Retrieves the current configuration
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - - - - -
-Method Detail
- -

-getConfig

-
-public static DocMgrConfig getConfig()
-
-
Retrieves the current configuration -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgrConfig.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgrConfig.html deleted file mode 100755 index c0f448c95..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocMgrConfig.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - -DocMgrConfig (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocMgrConfig

-
-java.lang.Object
-  extended bycom.arsdigita.util.parameter.AbstractParameterContext
-      extended bycom.arsdigita.runtime.AbstractConfig
-          extended bycom.arsdigita.cms.docmgr.DocMgrConfig
-
-
-
All Implemented Interfaces:
com.arsdigita.util.parameter.ParameterContext
-
-
-
-
public final class DocMgrConfig
extends com.arsdigita.runtime.AbstractConfig
- -

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
-  - - - - - - - - - - -
-Constructor Summary
DocMgrConfig() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- StringgetContentSection() - -
-           
- intgetInternalGroupID() - -
-           
- intgetLegacyFolderID() - -
-           
- StringgetLegacyFolderName() - -
-           
- intgetRowsPerPage() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.AbstractConfig
load, load, load, require
- - - - - - - -
Methods inherited from class com.arsdigita.util.parameter.AbstractParameterContext
get, get, getParameters, load, load, loadInfo, register, save, set, validate, validate
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocMgrConfig

-
-public DocMgrConfig()
-
-
- - - - - - - - -
-Method Detail
- -

-getContentSection

-
-public String getContentSection()
-
-
-
-
-
-
- -

-getLegacyFolderName

-
-public String getLegacyFolderName()
-
-
-
-
-
-
- -

-getLegacyFolderID

-
-public int getLegacyFolderID()
-
-
-
-
-
-
- -

-getInternalGroupID

-
-public int getInternalGroupID()
-
-
-
-
-
-
- -

-getRowsPerPage

-
-public int getRowsPerPage()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Document.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Document.html deleted file mode 100755 index 7c8a94944..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Document.html +++ /dev/null @@ -1,1436 +0,0 @@ - - - - - - -Document (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class Document

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.versioning.VersionedACSObject
-                  extended bycom.arsdigita.cms.ContentItem
-                      extended bycom.arsdigita.cms.ContentPage
-                          extended bycom.arsdigita.cms.docmgr.Document
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, com.arsdigita.cms.CustomCopy, Resource
-
-
-
-
public class Document
extends com.arsdigita.cms.ContentPage
implements Resource
- -

-This content type represents a document. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringAUTHOR - -
-           
-static StringAUTHOR_LAST_NAME - -
-           
-static StringBASE_DATA_OBJECT_TYPE - -
-          Data object type for this domain object
-static StringCREATOR - -
-           
-static StringDESCRIPTION - -
-          PDL properties
-static StringFILE - -
-           
-static StringLAST_MOD_LOCAL - -
-           
-static StringREPOSITORY - -
-           
-static StringTYPE - -
-          Data object type for this domain object (for CMS compatibility)
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ContentPage
LAUNCH_DATE, PAGES_IN_CATEGORY, PAGES_IN_FOLDER, QUERY_CATEGORY_ID, QUERY_PAGE, QUERY_ROOT_ID, QUERY_TYPE, SUMMARY, TITLE, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ContentItem
ANCESTORS, AUDITING, CHILDREN, CONTENT_SECTION, CONTENT_TYPE, DRAFT, DRAFT_VERSION, extraXMLGenerators, LANGUAGE, LIVE, NAME, PARENT, PENDING, VERSION, VERSIONS
- - - - - - - -
Fields inherited from class com.arsdigita.versioning.VersionedACSObject
IS_DELETED, MASTER
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.Resource
SEPARATOR, SEPARATOR_CHAR
-  - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
Document() - -
-           
Document(BigDecimal id) - -
-           
Document(com.arsdigita.persistence.DataObject obj) - -
-           
Document(com.arsdigita.persistence.OID id) - -
-           
Document(String type) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidbeforeSave() - -
-           
- ResourcecopyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourcecopyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voiddelete() - -
-          Deletes the Parent ContentBundle of this Document.
- StringgetAuthor() - -
-           
- StringgetAuthorLastName() - -
-           
- com.arsdigita.kernel.UsergetCreator() - -
-           
- StringgetDescription() - -
-          Returns a description of the resource, or null if no - description has been provided.
- com.arsdigita.cms.Folder.ItemCollectiongetDocumentsWithName(com.arsdigita.cms.Folder parentFolder, - String name) - -
-           
- com.arsdigita.cms.FileAssetgetFile() - -
-          Accessor.
- StringgetImpliedAuthor() - -
-           
- DategetLastModifiedLocal() - -
-           
- ResourcegetParentResource() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
- StringgetPrettyMimeType() - -
-           
- RepositorygetRepository() - -
-           
- StringgetSearchLanguage() - -
-           
- StringgetSearchLinkText() - -
-           
- byte[]getSearchRawContent() - -
-           
- StringgetSearchUrlStub() - -
-           
- BigDecimalgetSize() - -
-          Returns the size of the file in bytes.
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- booleanisRoot() - -
-          Is this the root?
-static DocumentretrieveDocument(com.arsdigita.persistence.DataObject documentData) - -
-          Returns a document for the given data object.
- voidsetAuthor(String author) - -
-           
- voidsetCategories(String[] catIDs) - -
-           
- voidsetCreator(com.arsdigita.kernel.User creator) - -
-           
- voidsetDescription(String description) - -
-           
- voidsetFile(com.arsdigita.cms.FileAsset file) - -
-          Mutator.
- voidsetLastModifiedLocal(Date last) - -
-           
- voidsetParentResource(Resource r) - -
-          Set parent object
- voidsetRepository(Repository repository) - -
-           
- voidsetTitle(String title) - -
-           
- URLtoURL() - -
-          Returns the URL corresponding to this resource.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ContentPage
getBaseDataObjectType, getContentBundle, getDisplayName, getLaunchDate, getPagesInSectionQuery, getPagesInSectionQuery, getPagesInSectionQuery, getPagesInSectionQuery, getSearchSummary, getTitle, setLaunchDate, setName, setPagesQueryParameters, setPagesQueryParameters
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ContentItem
addCategory, addPendingVersion, afterSave, assertDraft, assertLive, assertMaster, assertPending, beforeDelete, canPublishToFS, copy, copy, copyProperty, copyProperty, copyServices, copyServicesFrom, createLiveVersion, createPendingVersion, get, getCategories, getCategoryCollection, getChildren, getContentSection, getContentType, getCreationDate, getCreationIP, getCreationUser, getDraftVersion, getExtraXMLGenerators, getLanguage, getLastModifiedDate, getLastModifiedIP, getLastModifiedUser, getLifecycle, getLiveVersion, getLocale, getName, getParent, getPath, getPathInfo, getPathInfo, getPathNoJsp, getPendingVersions, getPublicVersion, getPublishListenerClassName, getVersion, getWorkingVersion, initialize, isDraftVersion, isLive, isLiveVersion, isPendingVersion, isPublished, makeCopy, promotePendingVersion, publish, publishToFS, removeCategory, removeLifecycle, removePendingVersion, republish, set, setContentSection, setContentType, setDefaultCategory, setLanguage, setLifecycle, setLive, setLiveVersion, setParent, setVersion, setVersionRecursively, unpublish, unpublishFromFS
- - - - - - - -
Methods inherited from class com.arsdigita.versioning.VersionedACSObject
applyTag, applyUniqueTag, autoPropagateMaster, getMaster, getRolledBackTo, getTransactions, getTransactions, isMaster, isRolledBack, isSubtype, permanentlyDelete, propagateMaster, recordAttributeChange, rollBackTo, rollBackTo, rollForward, save, setMaster, trackChanges
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, clear, disconnect, equals, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.cms.docmgr.Resource
getID, getPath, getTitle, save, toString
-  -

- - - - - - - - -
-Field Detail
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
PDL properties -

-

-
See Also:
Constant Field Values
-
-
- -

-FILE

-
-public static final String FILE
-
-
-
See Also:
Constant Field Values
-
-
- -

-AUTHOR

-
-public static final String AUTHOR
-
-
-
See Also:
Constant Field Values
-
-
- -

-CREATOR

-
-public static final String CREATOR
-
-
-
See Also:
Constant Field Values
-
-
- -

-LAST_MOD_LOCAL

-
-public static final String LAST_MOD_LOCAL
-
-
-
See Also:
Constant Field Values
-
-
- -

-AUTHOR_LAST_NAME

-
-public static final String AUTHOR_LAST_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-REPOSITORY

-
-public static final String REPOSITORY
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
Data object type for this domain object -

-

-
See Also:
Constant Field Values
-
-
- -

-TYPE

-
-public static final String TYPE
-
-
Data object type for this domain object (for CMS compatibility) -

-

-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Document

-
-public Document()
-
-
-
- -

-Document

-
-public Document(BigDecimal id)
-         throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-Document

-
-public Document(com.arsdigita.persistence.OID id)
-         throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-Document

-
-public Document(com.arsdigita.persistence.DataObject obj)
-
-
-
- -

-Document

-
-public Document(String type)
-
-
- - - - - - - - -
-Method Detail
- -

-retrieveDocument

-
-public static Document retrieveDocument(com.arsdigita.persistence.DataObject documentData)
-
-
Returns a document for the given data object. Use this method instead - of the new Document(DataObject) method. This method uses the domain - object factory to produce the appropriate document class. -

-

-
-
-
-
Parameters:
documentData - the document DataObject -
Returns:
the document for the given data object.
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Description copied from interface: Resource
-
Returns a description of the resource, or null if no - description has been provided. -

-

-
Specified by:
getDescription in interface Resource
-
-
-
-
-
-
- -

-setDescription

-
-public void setDescription(String description)
-
-
-
-
-
-
-
-
-
- -

-getCreator

-
-public com.arsdigita.kernel.User getCreator()
-
-
-
-
-
-
-
-
-
- -

-setCreator

-
-public void setCreator(com.arsdigita.kernel.User creator)
-
-
-
-
-
-
-
-
-
- -

-getRepository

-
-public Repository getRepository()
-
-
-
-
-
-
-
-
-
- -

-setRepository

-
-public void setRepository(Repository repository)
-
-
-
-
-
-
-
-
-
- -

-getLastModifiedLocal

-
-public Date getLastModifiedLocal()
-
-
-
-
-
-
-
-
-
- -

-setLastModifiedLocal

-
-public void setLastModifiedLocal(Date last)
-
-
-
-
-
-
-
-
-
- -

-getImpliedAuthor

-
-public String getImpliedAuthor()
-
-
-
-
-
-
-
-
-
- -

-getAuthor

-
-public String getAuthor()
-
-
-
-
-
-
-
-
-
- -

-setAuthor

-
-public void setAuthor(String author)
-
-
-
-
-
-
-
-
-
- -

-getAuthorLastName

-
-public String getAuthorLastName()
-
-
-
-
-
-
-
-
-
- -

-setTitle

-
-public void setTitle(String title)
-
-
-
-
-
-
-
-
-
- -

-getFile

-
-public com.arsdigita.cms.FileAsset getFile()
-
-
Accessor. Get the file associated with this item. -

-

-
-
-
-
-
-
-
- -

-setFile

-
-public void setFile(com.arsdigita.cms.FileAsset file)
-
-
Mutator. Set the file associated with this item. -

-

-
-
-
-
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a folder. -

-

-
Specified by:
isFolder in interface Resource
-
-
-
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a file. -

-

-
Specified by:
isFile in interface Resource
-
-
-
-
-
-
- -

-copyTo

-
-public Resource copyTo(Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location. Preserves the - original name of the resource but places the copy inside a new - parent resource. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
parent - the parent of the copy -
Returns:
a copy of the original resource -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location with a new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy
parent - the parent of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name)
-                throws ResourceExistsException
-
-
Copies the resource into the same location (same parent) with a - new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
Description copied from interface: Resource
-
Returns the URL corresponding to this resource. -

-

-
Specified by:
toURL in interface Resource
-
-
-
-
-
-
- -

-getSize

-
-public BigDecimal getSize()
-
-
Returns the size of the file in bytes. -

-

-
-
-
- -
Returns:
the size of the file in bytes, or 0 (should be -1?) if - the size cannot be computed.
-
-
-
- -

-isRoot

-
-public boolean isRoot()
-
-
Description copied from interface: Resource
-
Is this the root? -

-

-
Specified by:
isRoot in interface Resource
-
-
-
-
-
-
- -

-getPrettyMimeType

-
-public String getPrettyMimeType()
-
-
-
-
-
-
-
-
-
- -

-getParentResource

-
-public Resource getParentResource()
-
-
Description copied from interface: Resource
-
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -

-

-
Specified by:
getParentResource in interface Resource
-
-
-
-
-
-
- -

-setParentResource

-
-public void setParentResource(Resource r)
-
-
Description copied from interface: Resource
-
Set parent object -

-

-
Specified by:
setParentResource in interface Resource
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
-
-
-
-
- -

-setCategories

-
-public void setCategories(String[] catIDs)
-
-
-
-
-
-
-
-
-
- -

-getDocumentsWithName

-
-public com.arsdigita.cms.Folder.ItemCollection getDocumentsWithName(com.arsdigita.cms.Folder parentFolder,
-                                                                    String name)
-
-
-
-
-
-
-
-
-
- -

-delete

-
-public void delete()
-            throws com.arsdigita.persistence.PersistenceException
-
-
Deletes the Parent ContentBundle of this Document. -

-

-
Specified by:
delete in interface Resource
-
-
- -
Throws: -
com.arsdigita.persistence.PersistenceException
See Also:
DomainObject.delete()
-
-
-
- -

-getSearchLanguage

-
-public String getSearchLanguage()
-
-
-
-
-
-
-
-
-
- -

-getSearchRawContent

-
-public byte[] getSearchRawContent()
-
-
-
-
-
-
-
-
-
- -

-getSearchUrlStub

-
-public String getSearchUrlStub()
-
-
-
-
-
-
-
-
-
- -

-getSearchLinkText

-
-public String getSearchLinkText()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCategoryBrowserApplication.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCategoryBrowserApplication.html deleted file mode 100755 index 80a7053c7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCategoryBrowserApplication.html +++ /dev/null @@ -1,433 +0,0 @@ - - - - - - -DocumentCategoryBrowserApplication (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocumentCategoryBrowserApplication

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.web.Application
-                      extended bycom.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication
-
-
-
-
public class DocumentCategoryBrowserApplication
extends com.arsdigita.web.Application
- -

-A repository is the application that provides access to files and - folders. -

- -

-

-
Author:
-
Stefan Deusch (stefan@arsdigita.com), Ron Henderson (ron@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.web.Application
PRIMARY_URL, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
DocumentCategoryBrowserApplication(BigDecimal id) - -
-          Constructor.
DocumentCategoryBrowserApplication(com.arsdigita.persistence.DataObject obj) - -
-          Constructs a repository from the underlying data object.
DocumentCategoryBrowserApplication(com.arsdigita.persistence.OID oid) - -
-          Retreives a repository from the database usings its OID.
-  - - - - - - - - - - - - - - - -
-Method Summary
-static DocumentCategoryBrowserApplicationcreate(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.web.Application
afterDelete, beforeDelete, beforeSave, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
afterSave, createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocumentCategoryBrowserApplication

-
-public DocumentCategoryBrowserApplication(com.arsdigita.persistence.OID oid)
-                                   throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Retreives a repository from the database usings its OID. -

-

Parameters:
oid - the OID of the repository
-
- -

-DocumentCategoryBrowserApplication

-
-public DocumentCategoryBrowserApplication(BigDecimal id)
-                                   throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Constructor. The contained DataObject is retrieved - from the persistent storage mechanism with an OID - specified by id. -

-

Parameters:
id - The id for the retrieved - DataObject.
-
- -

-DocumentCategoryBrowserApplication

-
-public DocumentCategoryBrowserApplication(com.arsdigita.persistence.DataObject obj)
-
-
Constructs a repository from the underlying data object. -

-

- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-create

-
-public static DocumentCategoryBrowserApplication create(String urlName,
-                                                        String title,
-                                                        com.arsdigita.web.Application parent)
-
-
This is called when the application is created. -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCollection.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCollection.html deleted file mode 100755 index 062248566..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentCollection.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - -DocumentCollection (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocumentCollection

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainQuery
-      extended bycom.arsdigita.domain.DomainCollection
-          extended bycom.arsdigita.cms.docmgr.DocumentCollection
-
-
-
All Implemented Interfaces:
com.arsdigita.persistence.DataQuery
-
-
-
-
public class DocumentCollection
extends com.arsdigita.domain.DomainCollection
- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainCollection
m_dataCollection, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainQuery
m_dataQuery
-  - - - - - - - - - - -
-Constructor Summary
DocumentCollection(com.arsdigita.persistence.DataCollection dataCollection) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- DocumentgetDocument() - -
-          Get the current item as a Document domain object.
- com.arsdigita.domain.DomainObjectgetDomainObject() - -
-          Get the current item as a Document domain object.
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainQuery
addEqualsFilter, addFilter, addFilter, addInSubqueryFilter, addInSubqueryFilter, addNotEqualsFilter, addNotInSubqueryFilter, addOrder, addOrderWithNull, addPath, alias, clearFilter, clearOrder, close, first, get, getFilterFactory, getOption, getParameter, getPosition, getPropertyValues, getType, hasProperty, isAfterLast, isBeforeFirst, isEmpty, isFirst, isLast, last, next, previous, removeFilter, reset, rewind, setFilter, setOption, setOrder, setParameter, setRange, setRange, setReturnsLowerBound, setReturnsUpperBound, size
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocumentCollection

-
-public DocumentCollection(com.arsdigita.persistence.DataCollection dataCollection)
-
-
- - - - - - - - -
-Method Detail
- -

-getDomainObject

-
-public com.arsdigita.domain.DomainObject getDomainObject()
-
-
Get the current item as a Document domain object. -

-

- -
Returns:
a Document domain object.
-
-
-
- -

-getDocument

-
-public Document getDocument()
-
-
Get the current item as a Document domain object. -

-

- -
Returns:
a Document domain object.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentLoader.html deleted file mode 100755 index 8272202be..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/DocumentLoader.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - -DocumentLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class DocumentLoader

-
-java.lang.Object
-  extended bycom.arsdigita.util.parameter.AbstractParameterContext
-      extended bycom.arsdigita.runtime.AbstractScript
-          extended bycom.arsdigita.loader.PackageLoader
-              extended bycom.arsdigita.cms.contenttypes.AbstractContentTypeLoader
-                  extended bycom.arsdigita.cms.docmgr.DocumentLoader
-
-
-
All Implemented Interfaces:
com.arsdigita.util.parameter.ParameterContext, com.arsdigita.runtime.Script
-
-
-
-
public class DocumentLoader
extends com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.loader.PackageLoader
s_log
-  - - - - - - - - - - -
-Constructor Summary
DocumentLoader() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- String[]getTypes() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.contenttypes.AbstractContentTypeLoader
getContentSections, prepareSection, run, setDefaultTemplate
- - - - - - - -
Methods inherited from class com.arsdigita.loader.PackageLoader
exists, exists, exists, load, loader, requires, requires, requires
- - - - - - - -
Methods inherited from class com.arsdigita.util.parameter.AbstractParameterContext
get, get, getParameters, load, load, loadInfo, register, save, set, validate, validate
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.util.parameter.ParameterContext
get, get, getParameters, load, save, set, validate
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocumentLoader

-
-public DocumentLoader()
-
-
- - - - - - - - -
-Method Detail
- -

-getTypes

-
-public String[] getTypes()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/LegacyCategoryBrowserApplication.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/LegacyCategoryBrowserApplication.html deleted file mode 100755 index fd2cc3527..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/LegacyCategoryBrowserApplication.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - - - -LegacyCategoryBrowserApplication (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class LegacyCategoryBrowserApplication

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.web.Application
-                      extended bycom.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication
-
-
-
-
public class LegacyCategoryBrowserApplication
extends com.arsdigita.web.Application
- -

-browse items by category within a given toplevel (legacy) folder. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.web.Application
PRIMARY_URL, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
LegacyCategoryBrowserApplication(BigDecimal id) - -
-          Constructor.
LegacyCategoryBrowserApplication(com.arsdigita.persistence.DataObject obj) - -
-          Constructs a repository from the underlying data object.
LegacyCategoryBrowserApplication(com.arsdigita.persistence.OID oid) - -
-          Retreives a repository from the database usings its OID.
-  - - - - - - - - - - - - - - - -
-Method Summary
-static LegacyCategoryBrowserApplicationcreate(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.web.Application
afterDelete, beforeDelete, beforeSave, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
afterSave, createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-LegacyCategoryBrowserApplication

-
-public LegacyCategoryBrowserApplication(com.arsdigita.persistence.OID oid)
-                                 throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Retreives a repository from the database usings its OID. -

-

Parameters:
oid - the OID of the repository
-
- -

-LegacyCategoryBrowserApplication

-
-public LegacyCategoryBrowserApplication(BigDecimal id)
-                                 throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Constructor. The contained DataObject is retrieved - from the persistent storage mechanism with an OID - specified by id. -

-

Parameters:
id - The id for the retrieved - DataObject.
-
- -

-LegacyCategoryBrowserApplication

-
-public LegacyCategoryBrowserApplication(com.arsdigita.persistence.DataObject obj)
-
-
Constructs a repository from the underlying data object. -

-

- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-create

-
-public static LegacyCategoryBrowserApplication create(String urlName,
-                                                      String title,
-                                                      com.arsdigita.web.Application parent)
-
-
This is called when the application is created. -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Repository.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Repository.html deleted file mode 100755 index dfd16bfde..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Repository.html +++ /dev/null @@ -1,676 +0,0 @@ - - - - - - -Repository (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class Repository

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.web.Application
-                      extended bycom.arsdigita.cms.docmgr.Repository
-
-
-
-
public class Repository
extends com.arsdigita.web.Application
- -

-A repository is the application that provides access to files and - folders. -

- -

-

-
Author:
-
Stefan Deusch (stefan@arsdigita.com), Ron Henderson (ron@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringOWNER - -
-           
-static StringROOT - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.web.Application
PRIMARY_URL, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
Repository(BigDecimal id) - -
-          Constructor.
Repository(com.arsdigita.persistence.DataObject obj) - -
-          Constructs a repository from the underlying data object.
Repository(com.arsdigita.persistence.OID oid) - -
-          Retreives a repository from the database usings its OID.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-          Grant write permission to the Portal participants.
-protected  voidbeforeSave() - -
-           
-static Repositorycreate(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-protected  StringgetBaseDataObjectType() - -
-           
-static RepositorygetCurrentRepository(HttpServletRequest req) - -
-           
- com.arsdigita.kernel.PartygetOwner() - -
-          Returns the party owning the repository.
-static DocumentCollectiongetRecentlyModifiedDocuments() - -
-           
-static DocumentCollectiongetRecentlyModifiedDocuments(Repository rep) - -
-           
- DocFoldergetRoot() - -
-           
-static ResourceretrieveResource(String absPath) - -
-          Convenience method to retrieve a resource (file or folder) by - absolute path name.
- voidsetLegacyRoot() - -
-           
-static voidsetRepositoryRoot(String folderName) - -
-          Special case, only called by import script, so we can specify - where the root folders of repositories belong.
- - - - - - - -
Methods inherited from class com.arsdigita.web.Application
afterDelete, beforeDelete, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
-
- -

-OWNER

-
-public static final String OWNER
-
-
-
See Also:
Constant Field Values
-
-
- -

-ROOT

-
-public static final String ROOT
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Repository

-
-public Repository(com.arsdigita.persistence.OID oid)
-           throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Retreives a repository from the database usings its OID. -

-

Parameters:
oid - the OID of the repository
-
- -

-Repository

-
-public Repository(BigDecimal id)
-           throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Constructor. The contained DataObject is retrieved - from the persistent storage mechanism with an OID - specified by id. -

-

Parameters:
id - The id for the retrieved - DataObject.
-
- -

-Repository

-
-public Repository(com.arsdigita.persistence.DataObject obj)
-
-
Constructs a repository from the underlying data object. -

-

- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
Grant write permission to the Portal participants. -

-

-
-
-
-
- -

-create

-
-public static Repository create(String urlName,
-                                String title,
-                                com.arsdigita.web.Application parent)
-
-
This is called when the application is created. -

-

-
-
-
-
- -

-setRepositoryRoot

-
-public static void setRepositoryRoot(String folderName)
-
-
Special case, only called by import script, so we can specify - where the root folders of repositories belong. For instance, - if the content section is "foo", and the folderName argument is - "special", whenever a Repository is instantiated it will create - its root DocFolder under "foo/special". -

-

-
-
-
-
- -

-retrieveResource

-
-public static Resource retrieveResource(String absPath)
-
-
Convenience method to retrieve a resource (file or folder) by - absolute path name. -

-

-
-
-
-
- -

-getOwner

-
-public com.arsdigita.kernel.Party getOwner()
-
-
Returns the party owning the repository. -

-

- -
Returns:
the party owning the repository.
-
-
-
- -

-getRoot

-
-public DocFolder getRoot()
-
-
- -
Returns:
the root file folder for this repository
-
-
-
- -

-setLegacyRoot

-
-public void setLegacyRoot()
-
-
-
-
-
-
- -

-getRecentlyModifiedDocuments

-
-public static DocumentCollection getRecentlyModifiedDocuments()
-
-
-
-
-
-
- -

-getRecentlyModifiedDocuments

-
-public static DocumentCollection getRecentlyModifiedDocuments(Repository rep)
-
-
-
-
-
-
- -

-getCurrentRepository

-
-public static Repository getCurrentRepository(HttpServletRequest req)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Resource.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Resource.html deleted file mode 100755 index a345d1b36..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Resource.html +++ /dev/null @@ -1,622 +0,0 @@ - - - - - - -Resource (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Interface Resource

-
-
All Known Implementing Classes:
DocFolder, DocLink, Document
-
-
-
-
public interface Resource
- -

-This interface describes the functionality common to operations - on files and folders in the document manager application. - - Concrete implementations of this interface may vary in the - implementation of the data store. For example, persistent data for - resource might be stored in a file system or a database. -

- -

-

-
Version:
-
$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/Resource.java#2 $
-
Author:
-
Stefan Deusch (stefan@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringSEPARATOR - -
-          The path-separator character, represented as a string for convenience.
-static charSEPARATOR_CHAR - -
-          The path-separator character.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- ResourcecopyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourcecopyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voiddelete() - -
-           
- StringgetDescription() - -
-          Returns a description of the resource, or null if no - description has been provided.
- BigDecimalgetID() - -
-          Returns a unique identifier for this resource.
- ResourcegetParentResource() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
- StringgetPath() - -
-          Converts this resource into a pathname string.
- StringgetTitle() - -
-          Returns the title of the file or folder corresponding to this - resource.
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- booleanisRoot() - -
-          Is this the root?
- voidsave() - -
-          The usual save operation
- voidsetParentResource(Resource parent) - -
-          Set parent object
- StringtoString() - -
-          Returns the pathname string of this resource.
- URLtoURL() - -
-          Returns the URL corresponding to this resource.
-  -

- - - - - - - - -
-Field Detail
- -

-SEPARATOR

-
-public static final String SEPARATOR
-
-
The path-separator character, represented as a string for convenience. -

-

-
See Also:
Constant Field Values
-
-
- -

-SEPARATOR_CHAR

-
-public static final char SEPARATOR_CHAR
-
-
The path-separator character. -

-

-
-
- - - - - - - - - - - -
-Method Detail
- -

-getTitle

-
-public String getTitle()
-
-
Returns the title of the file or folder corresponding to this - resource. Use title instead of name to be CMS friendly -

-

-
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Returns a description of the resource, or null if no - description has been provided. -

-

-
-
-
-
- -

-getParentResource

-
-public Resource getParentResource()
-
-
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -

-

-
-
-
-
- -

-getPath

-
-public String getPath()
-
-
Converts this resource into a pathname string. -

-

-
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Tests whether this resource is a folder. -

-

-
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Tests whether this resource is a file. -

-

-
-
-
-
- -

-copyTo

-
-public Resource copyTo(Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location. Preserves the - original name of the resource but places the copy inside a new - parent resource. -

-

-
Parameters:
parent - the parent of the copy -
Returns:
a copy of the original resource -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location with a new name. -

-

-
Parameters:
name - the name of the copy
parent - the parent of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name)
-                throws ResourceExistsException
-
-
Copies the resource into the same location (same parent) with a - new name. -

-

-
Parameters:
name - the name of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-toString

-
-public String toString()
-
-
Returns the pathname string of this resource. -

-

-
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
Returns the URL corresponding to this resource. -

-

-
-
-
-
- -

-getID

-
-public BigDecimal getID()
-
-
Returns a unique identifier for this resource. -

-

-
-
-
-
- -

-setParentResource

-
-public void setParentResource(Resource parent)
-
-
Set parent object -

-

-
-
-
-
- -

-save

-
-public void save()
-
-
The usual save operation -

-

-
-
-
-
- -

-isRoot

-
-public boolean isRoot()
-
-
Is this the root? -

-

-
-
-
-
- -

-delete

-
-public void delete()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ResourceExistsException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ResourceExistsException.html deleted file mode 100755 index 2008a8098..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ResourceExistsException.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - -ResourceExistsException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class ResourceExistsException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended byjava.lang.RuntimeException
-              extended bycom.arsdigita.cms.docmgr.ResourceExistsException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class ResourceExistsException
extends RuntimeException
- -

-Exception thrown to indicate that another resource exists with the - same parent and name. -

- -

-

-
Version:
-
$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ResourceExistsException.java#1 $
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
ResourceExistsException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-ResourceExistsException

-
-public ResourceExistsException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Util.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Util.html deleted file mode 100755 index df4a6cf57..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/Util.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - -Util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr -
-Class Util

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.Util
-
-
-
-
public class Util
extends Object
- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
Util() - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static voidredirectToLoginPage(com.arsdigita.bebop.PageState ps) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-Util

-
-public Util()
-
-
- - - - - - - - -
-Method Detail
- -

-redirectToLoginPage

-
-public static void redirectToLoginPage(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolder.html deleted file mode 100755 index 9aeb322fb..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolder.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocFolder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocFolder

-
- - - - - - - - - - - - - - - - - -
-Packages that use DocFolder
com.arsdigita.cms.docmgr  
com.arsdigita.cms.docmgr.ui  
com.arsdigita.cms.docmgr.ui.tree  
-  -

- - - - - -
-Uses of DocFolder in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return DocFolder
- DocFolderRepository.getRoot() - -
-           
-static DocFolderDocFolder.retrieveDocFolder(com.arsdigita.persistence.DataObject docfolderData) - -
-          Returns a DocFolder for the given data object.
- DocFolderDocFolder.retrieveSubFolder(String folderTitle) - -
-           
-static DocFolderDocFolder.getRootFolder(DocFolder f) - -
-           
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr with parameters of type DocFolder
-static DocFolderDocFolder.getRootFolder(DocFolder f) - -
-           
-  -

- - - - - - - - -
Constructors in com.arsdigita.cms.docmgr with parameters of type DocFolder
DocFolder(String title, - String descrip, - DocFolder parent) - -
-           
-  -

- - - - - -
-Uses of DocFolder in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.ui that return DocFolder
-static DocFolderDMUtils.getRootFolder(com.arsdigita.bebop.PageState state) - -
-          Gets or sets the root folder id and returns the root DocFolder
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.ui with parameters of type DocFolder
-static voidDMUtils.setRoot(com.arsdigita.bebop.PageState state, - DocFolder root) - -
-          Change global state parameter of root folder.
-  -

- - - - - -
-Uses of DocFolder in com.arsdigita.cms.docmgr.ui.tree
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.ui.tree that return DocFolder
- DocFolderDocFolderTreeNode.getFolder() - -
-           
-  -

- - - - - - - - -
Constructors in com.arsdigita.cms.docmgr.ui.tree with parameters of type DocFolder
DocFolderTreeNode(DocFolder df) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolderLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolderLoader.html deleted file mode 100755 index fd499a330..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocFolderLoader.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocFolderLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocFolderLoader

-
-No usage of com.arsdigita.cms.docmgr.DocFolderLoader -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLink.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLink.html deleted file mode 100755 index 4b2acac08..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLink.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocLink (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocLink

-
- - - - - - - - - -
-Packages that use DocLink
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of DocLink in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.ui that return DocLink
-static DocLinkDMUtils.getDocLink(BigDecimal id) - -
-          Attempts to load a DocLink by passed in ID.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLinkLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLinkLoader.html deleted file mode 100755 index d6e1359c2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocLinkLoader.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocLinkLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocLinkLoader

-
-No usage of com.arsdigita.cms.docmgr.DocLinkLoader -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgr.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgr.html deleted file mode 100755 index 9a9f82b9d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgr.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocMgr (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocMgr

-
-No usage of com.arsdigita.cms.docmgr.DocMgr -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgrConfig.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgrConfig.html deleted file mode 100755 index c530f9ecb..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocMgrConfig.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocMgrConfig (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocMgrConfig

-
- - - - - - - - - -
-Packages that use DocMgrConfig
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of DocMgrConfig in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return DocMgrConfig
-static DocMgrConfigDocMgr.getConfig() - -
-          Retrieves the current configuration
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Document.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Document.html deleted file mode 100755 index af088ed58..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Document.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.Document (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.Document

-
- - - - - - - - - - - - - -
-Packages that use Document
com.arsdigita.cms.docmgr  
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of Document in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return Document
- DocumentDocLink.getTarget() - -
-           
-static DocumentDocument.retrieveDocument(com.arsdigita.persistence.DataObject documentData) - -
-          Returns a document for the given data object.
- DocumentDocumentCollection.getDocument() - -
-          Get the current item as a Document domain object.
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr with parameters of type Document
- voidDocLink.setTarget(Document target) - -
-          Set Target Document of this Link.Also set's the name of the Link.
-  -

- - - - - -
-Uses of Document in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.ui that return Document
-static DocumentDMUtils.getFile(BigDecimal id) - -
-          Attempts to load a file by ID.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCategoryBrowserApplication.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCategoryBrowserApplication.html deleted file mode 100755 index a00fa6325..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCategoryBrowserApplication.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication

-
- - - - - - - - - -
-Packages that use DocumentCategoryBrowserApplication
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of DocumentCategoryBrowserApplication in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return DocumentCategoryBrowserApplication
-static DocumentCategoryBrowserApplicationDocumentCategoryBrowserApplication.create(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCollection.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCollection.html deleted file mode 100755 index eab10a38c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentCollection.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocumentCollection (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocumentCollection

-
- - - - - - - - - -
-Packages that use DocumentCollection
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of DocumentCollection in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return DocumentCollection
-static DocumentCollectionRepository.getRecentlyModifiedDocuments() - -
-           
-static DocumentCollectionRepository.getRecentlyModifiedDocuments(Repository rep) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentLoader.html deleted file mode 100755 index f5b511517..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/DocumentLoader.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.DocumentLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.DocumentLoader

-
-No usage of com.arsdigita.cms.docmgr.DocumentLoader -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/LegacyCategoryBrowserApplication.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/LegacyCategoryBrowserApplication.html deleted file mode 100755 index 3f4943f0a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/LegacyCategoryBrowserApplication.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication

-
- - - - - - - - - -
-Packages that use LegacyCategoryBrowserApplication
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of LegacyCategoryBrowserApplication in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return LegacyCategoryBrowserApplication
-static LegacyCategoryBrowserApplicationLegacyCategoryBrowserApplication.create(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Repository.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Repository.html deleted file mode 100755 index fe729534c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Repository.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.Repository (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.Repository

-
- - - - - - - - - -
-Packages that use Repository
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of Repository in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return Repository
- RepositoryDocLink.getRepository() - -
-           
- RepositoryDocument.getRepository() - -
-           
-static RepositoryRepository.create(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-static RepositoryRepository.getCurrentRepository(HttpServletRequest req) - -
-           
-static RepositoryDocFolder.getRepository(Resource r) - -
-           
-  -

- - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr with parameters of type Repository
- voidDocLink.setRepository(Repository repository) - -
-           
- voidDocument.setRepository(Repository repository) - -
-           
-static DocumentCollectionRepository.getRecentlyModifiedDocuments(Repository rep) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Resource.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Resource.html deleted file mode 100755 index c6024afbd..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Resource.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.cms.docmgr.Resource (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.cms.docmgr.Resource

-
- - - - - - - - - -
-Packages that use Resource
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of Resource in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - - - - - - - - - -
Classes in com.arsdigita.cms.docmgr that implement Resource
- classDocFolder - -
-          This class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field.
- classDocLink - -
-          DomainObject class which represents DocLink ContentType objects.
- classDocument - -
-          This content type represents a document.
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that return Resource
- ResourceDocLink.getParentResource() - -
-           
- ResourceDocLink.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocLink.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceDocLink.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with passed - in name as new name.
- ResourceDocument.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocument.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceDocument.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourceDocument.getParentResource() - -
-           
-static ResourceRepository.retrieveResource(String absPath) - -
-          Convenience method to retrieve a resource (file or folder) by - absolute path name.
- ResourceResource.getParentResource() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
- ResourceResource.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceResource.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceResource.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourceDocFolder.retrieveSubResource(String resourceTitle) - -
-           
- ResourceDocFolder.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocFolder.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceDocFolder.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourceDocFolder.getParentResource() - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr with parameters of type Resource
- ResourceDocLink.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocLink.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voidDocLink.setParentResource(Resource parent) - -
-           
- ResourceDocument.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocument.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voidDocument.setParentResource(Resource r) - -
-           
- ResourceResource.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceResource.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voidResource.setParentResource(Resource parent) - -
-          Set parent object
- ResourceDocFolder.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocFolder.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voidDocFolder.setParentResource(Resource r) - -
-           
-static RepositoryDocFolder.getRepository(Resource r) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/ResourceExistsException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/ResourceExistsException.html deleted file mode 100755 index 6bd8b6d73..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/ResourceExistsException.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ResourceExistsException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ResourceExistsException

-
- - - - - - - - - -
-Packages that use ResourceExistsException
com.arsdigita.cms.docmgr  
-  -

- - - - - -
-Uses of ResourceExistsException in com.arsdigita.cms.docmgr
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr that throw ResourceExistsException
- ResourceDocLink.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocLink.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceDocLink.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with passed - in name as new name.
- ResourceDocument.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocument.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceDocument.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourceResource.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceResource.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceResource.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourceDocFolder.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceDocFolder.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceDocFolder.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Util.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Util.html deleted file mode 100755 index 1274f357b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/class-use/Util.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.Util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.Util

-
-No usage of com.arsdigita.cms.docmgr.Util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/DocumentAssetPage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/DocumentAssetPage.html deleted file mode 100755 index 50ea2fc27..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/DocumentAssetPage.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - -DocumentAssetPage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.dispatcher -
-Class DocumentAssetPage

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Page
-                      extended bycom.arsdigita.cms.dispatcher.CMSPage
-                          extended bycom.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.dispatcher.Dispatcher, com.arsdigita.util.Lockable, com.arsdigita.cms.dispatcher.ResourceHandler
-
-
-
-
public class DocumentAssetPage
extends com.arsdigita.cms.dispatcher.CMSPage
- -

-A resource handler which streams out a blob from the database. -

- -

-

-
Version:
-
$Revision: #1 $ $DateTime: 2003/08/18 23:54:14 $
-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringASSET_ID - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.CMSPage
ASSETS, CMS_XML_NS, PAGE_CLASS
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Page
m_invisible, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocumentAssetPage() - -
-          Construct the resource handler
-  - - - - - - - - - - - -
-Method Summary
- voiddispatch(HttpServletRequest request, - HttpServletResponse response, - com.arsdigita.dispatcher.RequestContext actx) - -
-          Streams an image from the database.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.CMSPage
buildPage, generateXMLHelper, getContentItem, getContentItem, getContentSection, getContentSection, getCurrentUser, getXMLParameter, init, setXMLParameter
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Page
add, add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, lock, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-ASSET_ID

-
-public static final String ASSET_ID
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocumentAssetPage

-
-public DocumentAssetPage()
-
-
Construct the resource handler -

-

- - - - - - - - -
-Method Detail
- -

-dispatch

-
-public void dispatch(HttpServletRequest request,
-                     HttpServletResponse response,
-                     com.arsdigita.dispatcher.RequestContext actx)
-              throws IOException,
-                     ServletException
-
-
Streams an image from the database. -

-

-
Parameters:
request - The servlet request object
response - the servlet response object
actx - The request context -
Throws: -
IOException -
ServletException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.html deleted file mode 100755 index f13a16836..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.html +++ /dev/null @@ -1,809 +0,0 @@ - - - - - - -MultilingualDocumentResolver (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.dispatcher -
-Class MultilingualDocumentResolver

-
-java.lang.Object
-  extended bycom.arsdigita.cms.dispatcher.AbstractItemResolver
-      extended bycom.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver
-
-
-
All Implemented Interfaces:
com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
-
public class MultilingualDocumentResolver
extends com.arsdigita.cms.dispatcher.AbstractItemResolver
implements com.arsdigita.cms.dispatcher.ItemResolver
- -

-Adapted from MultilingualItemResolver. Unlike - MultilingualItemResolver, this resolver needs to account for - Documents that have file extensions. -

- -

-

-
Version:
-
$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.java#1 $
-
Author:
-
Crag Wolfe - - Resolves items to URLs and URLs to items for multiple language - variants. - - Created Mon Jan 20 14:30:03 2003., Michael Hanisch
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected static StringITEM_ID - -
-          The string identifying an item's ID in the query string of a - URL.
-protected static StringSEPARATOR - -
-          The separator used in URL query strings; should be either "&" - or ";".
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.AbstractItemResolver
TEMPLATE_CONTEXT_PREFIX
-  - - - - - - - - - - -
-Constructor Summary
MultilingualDocumentResolver() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  StringgenerateDraftURL(com.arsdigita.cms.ContentSection section, - BigDecimal itemId) - -
-          Returns content item's draft version URL
- StringgenerateItemURL(com.arsdigita.bebop.PageState state, - BigDecimal itemId, - String name, - com.arsdigita.cms.ContentSection section, - String context) - -
-          Generates a URL for a content item.
- StringgenerateItemURL(com.arsdigita.bebop.PageState state, - BigDecimal itemId, - String name, - com.arsdigita.cms.ContentSection section, - String context, - String templateContext) - -
-          Generates a URL for a content item.
- StringgenerateItemURL(com.arsdigita.bebop.PageState state, - com.arsdigita.cms.ContentItem item, - com.arsdigita.cms.ContentSection section, - String context) - -
-          Generates a URL for a content item.
- StringgenerateItemURL(com.arsdigita.bebop.PageState state, - com.arsdigita.cms.ContentItem item, - com.arsdigita.cms.ContentSection section, - String context, - String templateContext) - -
-          Generates a URL for a content item.
-protected  StringgenerateLiveURL(com.arsdigita.cms.ContentSection section, - com.arsdigita.cms.ContentItem item, - String templateContext) - -
-          Generate a language-independent URL to the - item in the given section.
-protected  StringgeneratePreviewURL(com.arsdigita.cms.ContentSection section, - com.arsdigita.cms.ContentItem item, - String templateContext) - -
-          Generate a URL which can be used to preview the - item, using the given - templateContext.
- StringgetCurrentContext(com.arsdigita.bebop.PageState state) - -
-          Fetches the current context based on the page state.
- com.arsdigita.cms.ContentItemgetItem(com.arsdigita.cms.ContentSection section, - String url, - String context) - -
-          Returns a content item based on section, url, and use context.
-protected  com.arsdigita.cms.ContentItemgetItemFromDraftURL(String url) - -
-          Retrieves ITEM_ID parameter from URL and - instantiates item according to this ID.
-protected  com.arsdigita.cms.ContentItemgetItemFromLangAndBundle(String lang, - com.arsdigita.cms.ContentItem item) - -
-          Finds a language instance of a content item given the bundle, - name, and lang string
-protected  com.arsdigita.cms.ContentItemgetItemFromLiveURL(String url, - com.arsdigita.cms.Folder parentFolder) - -
-          Returns a content item based on URL relative to the root - folder.
- com.arsdigita.cms.dispatcher.CMSPagegetMasterPage(com.arsdigita.cms.ContentItem item, - HttpServletRequest request) - -
-          Returns a master page based on page state (and content - section).
-protected  String[]getNameAndLangFromURLFrag(String url) - -
-          Returns an array containing the the item's name and lang based - on the URL fragment.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.AbstractItemResolver
getTemplateFromURL, stripTemplateFromURL
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.cms.dispatcher.ItemResolver
getTemplateFromURL, stripTemplateFromURL
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-ITEM_ID

-
-protected static final String ITEM_ID
-
-
The string identifying an item's ID in the query string of a - URL. -

-

-
See Also:
Constant Field Values
-
-
- -

-SEPARATOR

-
-protected static final String SEPARATOR
-
-
The separator used in URL query strings; should be either "&" - or ";". -

-

-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-MultilingualDocumentResolver

-
-public MultilingualDocumentResolver()
-
-
- - - - - - - - -
-Method Detail
- -

-getItem

-
-public com.arsdigita.cms.ContentItem getItem(com.arsdigita.cms.ContentSection section,
-                                             String url,
-                                             String context)
-
-
Returns a content item based on section, url, and use context. -

-

-
Specified by:
getItem in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
section - The current content section
url - The section-relative URL
context - The use context, - e.g. ContentItem.LIVE, - CMSDispatcher.PREVIEW or - ContentItem.DRAFT. See getCurrentContext(com.arsdigita.bebop.PageState). -
Returns:
The content item, or null if no such item exists
-
-
-
- -

-getCurrentContext

-
-public String getCurrentContext(com.arsdigita.bebop.PageState state)
-
-
Fetches the current context based on the page state. -

-

-
Specified by:
getCurrentContext in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
state - the current page state -
Returns:
the context of the current URL, such as - ContentItem.LIVE or ContentItem.DRAFT
See Also:
ContentItem.LIVE, -ContentItem.DRAFT
-
-
-
- -

-generateItemURL

-
-public String generateItemURL(com.arsdigita.bebop.PageState state,
-                              BigDecimal itemId,
-                              String name,
-                              com.arsdigita.cms.ContentSection section,
-                              String context)
-
-
Generates a URL for a content item. -

-

-
Specified by:
generateItemURL in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
itemId - The item ID
name - The name of the content page
state - The page state
section - the content section to which the item belongs
context - the context of the URL, such as "live" or - "admin" -
Returns:
The URL of the item
See Also:
getCurrentContext(com.arsdigita.bebop.PageState)
-
-
-
- -

-generateItemURL

-
-public String generateItemURL(com.arsdigita.bebop.PageState state,
-                              BigDecimal itemId,
-                              String name,
-                              com.arsdigita.cms.ContentSection section,
-                              String context,
-                              String templateContext)
-
-
Generates a URL for a content item. -

-

-
Specified by:
generateItemURL in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
itemId - The item ID
name - The name of the content page
state - The page state
section - the content section to which the item belongs
context - the context of the URL, such as "live" or - "admin"
templateContext - the context for the URL, such as - "public" -
Returns:
The URL of the item
See Also:
getCurrentContext(com.arsdigita.bebop.PageState)
-
-
-
- -

-generateItemURL

-
-public String generateItemURL(com.arsdigita.bebop.PageState state,
-                              com.arsdigita.cms.ContentItem item,
-                              com.arsdigita.cms.ContentSection section,
-                              String context)
-
-
Generates a URL for a content item. -

-

-
Specified by:
generateItemURL in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
item - The item
state - The page state
section - the content section to which the item belongs
context - the context of the URL, such as "live" or - "admin" -
Returns:
The URL of the item
See Also:
getCurrentContext(com.arsdigita.bebop.PageState)
-
-
-
- -

-generateItemURL

-
-public String generateItemURL(com.arsdigita.bebop.PageState state,
-                              com.arsdigita.cms.ContentItem item,
-                              com.arsdigita.cms.ContentSection section,
-                              String context,
-                              String templateContext)
-
-
Generates a URL for a content item. -

-

-
Specified by:
generateItemURL in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
item - The item
state - The page state
section - the content section to which the item belongs
context - the context of the URL, such as "live" or - "admin"
templateContext - the context for the URL, such as - "public" -
Returns:
The URL of the item
See Also:
getCurrentContext(com.arsdigita.bebop.PageState)
-
-
-
- -

-getMasterPage

-
-public com.arsdigita.cms.dispatcher.CMSPage getMasterPage(com.arsdigita.cms.ContentItem item,
-                                                          HttpServletRequest request)
-                                                   throws ServletException
-
-
Returns a master page based on page state (and content - section). -

-

-
Specified by:
getMasterPage in interface com.arsdigita.cms.dispatcher.ItemResolver
-
-
-
Parameters:
item - The content item
request - The HTTP request -
Returns:
The master page -
Throws: -
ServletException
-
-
-
- -

-generateDraftURL

-
-protected String generateDraftURL(com.arsdigita.cms.ContentSection section,
-                                  BigDecimal itemId)
-
-
Returns content item's draft version URL -

-

-
-
-
-
Parameters:
section - The content section to which the item belongs
itemId - The content item's ID -
Returns:
generated URL string
-
-
-
- -

-generateLiveURL

-
-protected String generateLiveURL(com.arsdigita.cms.ContentSection section,
-                                 com.arsdigita.cms.ContentItem item,
-                                 String templateContext)
-
-
Generate a language-independent URL to the - item in the given section.

When a client - retrieves this URL, the URL is resolved to point to a specific - language instance of the item referenced here, i.e. this URL - will be resolved to a language-specific URL - internally. -

-

-
-
-
-
Parameters:
section - the ContentSection that contains this item
item - ContentItem for which a URL should be - constructed.
templateContext - template context; will be ignored if null -
Returns:
a language-independent URL to the - item in the given section, which will - be presented within the given templateContext
-
-
-
- -

-generatePreviewURL

-
-protected String generatePreviewURL(com.arsdigita.cms.ContentSection section,
-                                    com.arsdigita.cms.ContentItem item,
-                                    String templateContext)
-
-
Generate a URL which can be used to preview the - item, using the given - templateContext.

Only a specific language - instance can be previewed, meaning there no language - negotiation is involved when a request is made to a URL that - has been generated by this method. -

-

-
-
-
-
Parameters:
section - The ContentSection which contains - the item
item - The ContentItem for which a URL should - be generated.
templateContext - the context that determines which - template should render the item when it is previewed; ignored - if the argument given here is null -
Returns:
a URL which can be used to preview the given - item
-
-
-
- -

-getItemFromDraftURL

-
-protected com.arsdigita.cms.ContentItem getItemFromDraftURL(String url)
-
-
Retrieves ITEM_ID parameter from URL and - instantiates item according to this ID. -

-

-
-
-
-
Parameters:
url - URL that indicates which item should be retrieved; - must contain the ITEM_ID parameter -
Returns:
the ContentItem the given url - points to, or null if no ID has been found in the - url
-
-
-
- -

-getItemFromLiveURL

-
-protected com.arsdigita.cms.ContentItem getItemFromLiveURL(String url,
-                                                           com.arsdigita.cms.Folder parentFolder)
-
-
Returns a content item based on URL relative to the root - folder. -

-

-
-
-
-
Parameters:
url - The content item url
parentFolder - The parent folder object, url must be relevant to it -
Returns:
The Content Item instance, it can also be either Bundle - or Folder objects, depending on URL and file language extension
-
-
-
- -

-getNameAndLangFromURLFrag

-
-protected String[] getNameAndLangFromURLFrag(String url)
-
-
Returns an array containing the the item's name and lang based - on the URL fragment. -

-

-
-
-
- -
Returns:
a two-element string array, the first element - containing the bundle name, and the second element containing - the lang string
-
-
-
- -

-getItemFromLangAndBundle

-
-protected com.arsdigita.cms.ContentItem getItemFromLangAndBundle(String lang,
-                                                                 com.arsdigita.cms.ContentItem item)
-
-
Finds a language instance of a content item given the bundle, - name, and lang string -

-

-
-
-
-
Parameters:
lang - The lang string from the URL
item - The content bundle -
Returns:
The negotiated lang instance for the current request.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/DocumentAssetPage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/DocumentAssetPage.html deleted file mode 100755 index 59440b098..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/DocumentAssetPage.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage

-
-No usage of com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/MultilingualDocumentResolver.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/MultilingualDocumentResolver.html deleted file mode 100755 index d8bc5c3d2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/class-use/MultilingualDocumentResolver.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver

-
-No usage of com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-frame.html deleted file mode 100755 index a9779815e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.dispatcher (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.dispatcher - - - - -
-Classes  - -
-DocumentAssetPage -
-MultilingualDocumentResolver
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-summary.html deleted file mode 100755 index d2d859c92..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-summary.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.dispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.dispatcher -

- - - - - - - - - - - - - -
-Class Summary
DocumentAssetPageA resource handler which streams out a blob from the database.
MultilingualDocumentResolverAdapted from MultilingualItemResolver.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-tree.html deleted file mode 100755 index aab4b62e2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-tree.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.dispatcher Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.dispatcher -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.cms.dispatcher.AbstractItemResolver (implements com.arsdigita.cms.dispatcher.ItemResolver) - -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.cms.dispatcher.CMSPage (implements com.arsdigita.cms.dispatcher.ResourceHandler) - -
              -
            -
          -
        -
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-use.html deleted file mode 100755 index 3da2bb324..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/dispatcher/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.dispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.dispatcher

-
-No usage of com.arsdigita.cms.docmgr.dispatcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocFolderInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocFolderInitializer.html deleted file mode 100755 index cb43b0d88..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocFolderInitializer.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - -DocFolderInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.installer -
-Class DocFolderInitializer

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.installer.DocFolderInitializer
-
-
-
-
public class DocFolderInitializer
extends Object
- -

-Loader class for the DocFolder content type. Registers the content - type, and creates an authoring kit for it. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringDESCRIPTION - -
-           
-static StringLABEL - -
-           
-  - - - - - - - - - - -
-Constructor Summary
DocFolderInitializer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidload() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-LABEL

-
-public static final String LABEL
-
-
-
See Also:
Constant Field Values
-
-
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocFolderInitializer

-
-public DocFolderInitializer()
-
-
- - - - - - - - -
-Method Detail
- -

-load

-
-public void load()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocLinkInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocLinkInitializer.html deleted file mode 100755 index fea64b92f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocLinkInitializer.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - -DocLinkInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.installer -
-Class DocLinkInitializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended bycom.arsdigita.cms.contenttypes.ContentTypeInitializer
-          extended bycom.arsdigita.cms.docmgr.installer.DocLinkInitializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class DocLinkInitializer
extends com.arsdigita.cms.contenttypes.ContentTypeInitializer
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.contenttypes.ContentTypeInitializer
EMPTY_ARRAY
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocLinkInitializer() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- String[]getStylesheets() - -
-           
- StringgetTraversalXML() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.contenttypes.ContentTypeInitializer
init
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.CompoundInitializer
add, init, init
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocLinkInitializer

-
-public DocLinkInitializer()
-
-
- - - - - - - - -
-Method Detail
- -

-getTraversalXML

-
-public String getTraversalXML()
-
-
-
-
-
-
- -

-getStylesheets

-
-public String[] getStylesheets()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocumentInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocumentInitializer.html deleted file mode 100755 index fa12fc1d6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/DocumentInitializer.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - -DocumentInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.installer -
-Class DocumentInitializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended bycom.arsdigita.cms.contenttypes.ContentTypeInitializer
-          extended bycom.arsdigita.cms.docmgr.installer.DocumentInitializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class DocumentInitializer
extends com.arsdigita.cms.contenttypes.ContentTypeInitializer
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.contenttypes.ContentTypeInitializer
EMPTY_ARRAY
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocumentInitializer() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- String[]getStylesheets() - -
-           
- StringgetTraversalXML() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.contenttypes.ContentTypeInitializer
init
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.CompoundInitializer
add, init, init
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocumentInitializer

-
-public DocumentInitializer()
-
-
- - - - - - - - -
-Method Detail
- -

-getTraversalXML

-
-public String getTraversalXML()
-
-
-
-
-
-
- -

-getStylesheets

-
-public String[] getStylesheets()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/Initializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/Initializer.html deleted file mode 100755 index 84336c7f4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/Initializer.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - -Initializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.installer -
-Class Initializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended bycom.arsdigita.cms.docmgr.installer.Initializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class Initializer
extends com.arsdigita.runtime.CompoundInitializer
- -

-Initializes the document manager package, sets up the - DomainFactory, registers knowledge types and portlets. -

- -

-

-
Version:
-
$Revision: #11 $ $Date: 2004/01/14 $
-
Author:
-
Stefan Deusch, David Dao
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringCONTENT_SECTION - -
-           
-static StringINTERNAL_GROUP_ID - -
-           
-static StringLEGACY_FOLDER_NAME - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
Initializer() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- com.arsdigita.initializer.ConfigurationgetConfiguration() - -
-          Returns the configuration object used by this initializer.
- voidinit(com.arsdigita.runtime.DomainInitEvent e) - -
-           
- voidshutdown() - -
-          Shutdown the document manager.
- voidstartup() - -
-          Called on startup.
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.CompoundInitializer
add, init, init
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-CONTENT_SECTION

-
-public static final String CONTENT_SECTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-INTERNAL_GROUP_ID

-
-public static final String INTERNAL_GROUP_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-LEGACY_FOLDER_NAME

-
-public static final String LEGACY_FOLDER_NAME
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Initializer

-
-public Initializer()
-
-
- - - - - - - - -
-Method Detail
- -

-getConfiguration

-
-public com.arsdigita.initializer.Configuration getConfiguration()
-
-
Returns the configuration object used by this initializer. -

-

-
-
-
-
- -

-init

-
-public void init(com.arsdigita.runtime.DomainInitEvent e)
-
-
-
-
-
-
- -

-startup

-
-public void startup()
-
-
Called on startup. -

-

-
-
-
-
- -

-shutdown

-
-public void shutdown()
-
-
Shutdown the document manager. -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/MimeIconInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/MimeIconInitializer.html deleted file mode 100755 index 6e1426937..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/MimeIconInitializer.html +++ /dev/null @@ -1,414 +0,0 @@ - - - - - - -MimeIconInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.installer -
-Class MimeIconInitializer

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.installer.MimeIconInitializer
-
-
-
All Implemented Interfaces:
com.arsdigita.initializer.Initializer
-
-
-
-
public class MimeIconInitializer
extends Object
implements com.arsdigita.initializer.Initializer
- -

-Initializes mime-type to icon map. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringDEFAULT_ICON - -
-           
-static StringICON_URL_ROOT - -
-           
-static StringMIME_ICON_MAP - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.initializer.Initializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
MimeIconInitializer() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- com.arsdigita.initializer.ConfigurationgetConfiguration() - -
-          Returns the configuration object used by this initializer.
-static StringgetMimeIconURL(String mimeTypeName) - -
-           
- voidshutdown() - -
-          Shutdown the document manager.
- voidstartup() - -
-          Called on startup.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-ICON_URL_ROOT

-
-public static String ICON_URL_ROOT
-
-
-
-
-
- -

-MIME_ICON_MAP

-
-public static final String MIME_ICON_MAP
-
-
-
See Also:
Constant Field Values
-
-
- -

-DEFAULT_ICON

-
-public static final String DEFAULT_ICON
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-MimeIconInitializer

-
-public MimeIconInitializer()
-
-
- - - - - - - - -
-Method Detail
- -

-getConfiguration

-
-public com.arsdigita.initializer.Configuration getConfiguration()
-
-
Returns the configuration object used by this initializer. -

-

-
Specified by:
getConfiguration in interface com.arsdigita.initializer.Initializer
-
-
-
-
-
-
- -

-startup

-
-public void startup()
-
-
Called on startup. -

-

-
Specified by:
startup in interface com.arsdigita.initializer.Initializer
-
-
-
-
-
-
- -

-getMimeIconURL

-
-public static String getMimeIconURL(String mimeTypeName)
-
-
-
-
-
-
-
-
-
- -

-shutdown

-
-public void shutdown()
-
-
Shutdown the document manager. -

-

-
Specified by:
shutdown in interface com.arsdigita.initializer.Initializer
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocFolderInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocFolderInitializer.html deleted file mode 100755 index e4f6e7b1c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocFolderInitializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.installer.DocFolderInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.installer.DocFolderInitializer

-
-No usage of com.arsdigita.cms.docmgr.installer.DocFolderInitializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocLinkInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocLinkInitializer.html deleted file mode 100755 index deb442dde..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocLinkInitializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.installer.DocLinkInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.installer.DocLinkInitializer

-
-No usage of com.arsdigita.cms.docmgr.installer.DocLinkInitializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocumentInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocumentInitializer.html deleted file mode 100755 index b876274ba..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/DocumentInitializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.installer.DocumentInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.installer.DocumentInitializer

-
-No usage of com.arsdigita.cms.docmgr.installer.DocumentInitializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/Initializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/Initializer.html deleted file mode 100755 index 07136c3ef..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/Initializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.installer.Initializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.installer.Initializer

-
-No usage of com.arsdigita.cms.docmgr.installer.Initializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/MimeIconInitializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/MimeIconInitializer.html deleted file mode 100755 index d2ef7cba8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/class-use/MimeIconInitializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.installer.MimeIconInitializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.installer.MimeIconInitializer

-
-No usage of com.arsdigita.cms.docmgr.installer.MimeIconInitializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-frame.html deleted file mode 100755 index 3f3d114b2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-frame.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.installer (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.installer - - - - -
-Classes  - -
-DocFolderInitializer -
-DocLinkInitializer -
-DocumentInitializer -
-Initializer -
-MimeIconInitializer
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-summary.html deleted file mode 100755 index fb9561e91..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-summary.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.installer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.installer -

- - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
DocFolderInitializerLoader class for the DocFolder content type.
DocLinkInitializer 
DocumentInitializer 
InitializerInitializes the document manager package, sets up the - DomainFactory, registers knowledge types and portlets.
MimeIconInitializerInitializes mime-type to icon map.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-tree.html deleted file mode 100755 index 431e64978..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-tree.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.installer Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.installer -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    • class com.arsdigita.cms.docmgr.installer.DocFolderInitializer
    • class com.arsdigita.cms.docmgr.installer.MimeIconInitializer (implements com.arsdigita.initializer.Initializer) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-use.html deleted file mode 100755 index af6547db4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/installer/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.installer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.installer

-
-No usage of com.arsdigita.cms.docmgr.installer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-frame.html deleted file mode 100755 index 37885f4d2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-frame.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr - - - - -
-Interfaces  - -
-Resource
- - - - - - -
-Classes  - -
-DocFolder -
-DocFolderLoader -
-DocLink -
-DocLinkLoader -
-DocMgr -
-DocMgrConfig -
-Document -
-DocumentCategoryBrowserApplication -
-DocumentCollection -
-DocumentLoader -
-LegacyCategoryBrowserApplication -
-Repository -
-Util
- - - - - - -
-Exceptions  - -
-ResourceExistsException
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-summary.html deleted file mode 100755 index 04a066e3a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-summary.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr -

- - - - - - - - - -
-Interface Summary
ResourceThis interface describes the functionality common to operations - on files and folders in the document manager application.
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
DocFolderThis class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field.
DocFolderLoader 
DocLinkDomainObject class which represents DocLink ContentType objects.
DocLinkLoader 
DocMgrProvides a set of helper methods for the DocManager module.
DocMgrConfig 
DocumentThis content type represents a document.
DocumentCategoryBrowserApplicationA repository is the application that provides access to files and - folders.
DocumentCollection 
DocumentLoader 
LegacyCategoryBrowserApplicationbrowse items by category within a given toplevel (legacy) folder.
RepositoryA repository is the application that provides access to files and - folders.
Util 
-  - -

- - - - - - - - - -
-Exception Summary
ResourceExistsExceptionException thrown to indicate that another resource exists with the - same parent and name.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-tree.html deleted file mode 100755 index 751b2f746..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-tree.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.util.parameter.AbstractParameterContext (implements com.arsdigita.util.parameter.ParameterContext) -
        -
      • class com.arsdigita.runtime.AbstractConfig -
      • class com.arsdigita.runtime.AbstractScript (implements com.arsdigita.runtime.Script) -
          -
        • class com.arsdigita.loader.PackageLoader -
        -
      -
    • class com.arsdigita.cms.docmgr.DocMgr
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.kernel.Resource -
          • class com.arsdigita.versioning.VersionedACSObject (implements com.arsdigita.auditing.Audited) -
              -
            • class com.arsdigita.cms.ContentItem (implements com.arsdigita.cms.CustomCopy) -
                -
              • class com.arsdigita.cms.ContentPage
                  -
                • class com.arsdigita.cms.docmgr.DocLink (implements com.arsdigita.cms.docmgr.Resource, com.arsdigita.search.Searchable) -
                • class com.arsdigita.cms.docmgr.Document (implements com.arsdigita.cms.docmgr.Resource) -
                -
              • class com.arsdigita.cms.Folder
                  -
                • class com.arsdigita.cms.docmgr.DocFolder (implements com.arsdigita.cms.docmgr.Resource) -
                -
              -
            -
          -
        -
      -
    • class com.arsdigita.domain.DomainQuery (implements com.arsdigita.persistence.DataQuery) -
        -
      • class com.arsdigita.domain.DomainCollection -
      -
    • class java.lang.Throwable (implements java.io.Serializable) - -
    • class com.arsdigita.cms.docmgr.Util
    -
-

-Interface Hierarchy -

-
    -
  • interface com.arsdigita.cms.docmgr.Resource
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-use.html deleted file mode 100755 index 2a9eb976c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/package-use.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr

-
- - - - - - - - - - - - - - - - - -
-Packages that use com.arsdigita.cms.docmgr
com.arsdigita.cms.docmgr  
com.arsdigita.cms.docmgr.ui  
com.arsdigita.cms.docmgr.ui.tree  
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Classes in com.arsdigita.cms.docmgr used by com.arsdigita.cms.docmgr
DocFolder - -
-          This class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field.
DocMgrConfig - -
-           
Document - -
-          This content type represents a document.
DocumentCategoryBrowserApplication - -
-          A repository is the application that provides access to files and - folders.
DocumentCollection - -
-           
LegacyCategoryBrowserApplication - -
-          browse items by category within a given toplevel (legacy) folder.
Repository - -
-          A repository is the application that provides access to files and - folders.
Resource - -
-          This interface describes the functionality common to operations - on files and folders in the document manager application.
ResourceExistsException - -
-          Exception thrown to indicate that another resource exists with the - same parent and name.
-  -

- - - - - - - - - - - - - - -
-Classes in com.arsdigita.cms.docmgr used by com.arsdigita.cms.docmgr.ui
DocFolder - -
-          This class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field.
DocLink - -
-          DomainObject class which represents DocLink ContentType objects.
Document - -
-          This content type represents a document.
-  -

- - - - - - - - -
-Classes in com.arsdigita.cms.docmgr used by com.arsdigita.cms.docmgr.ui.tree
DocFolder - -
-          This class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearchResults.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearchResults.html deleted file mode 100755 index c81b14519..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearchResults.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - -IntermediaSearchResults (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Class IntermediaSearchResults

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.search.IntermediaSearchResults
-
-
-
All Implemented Interfaces:
SearchResults
-
-
-
-
public class IntermediaSearchResults
extends Object
implements SearchResults
- -

-

-
Version:
-
$Revision: #1 $ $Date: 2003/08/20 $
-
Author:
-
hbrock@redhat.com
-
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
IntermediaSearchResults(com.arsdigita.search.SearchDataQuery q) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- IteratorgetResults() - -
-          Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called.
- longgetTotalSize() - -
-          Returns the size of the wrapped SearchDataQuery
- voidsetRange(Integer first, - Integer last) - -
-          Sets the indexes of the first and last results returned.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-IntermediaSearchResults

-
-public IntermediaSearchResults(com.arsdigita.search.SearchDataQuery q)
-
-
- - - - - - - - -
-Method Detail
- -

-getTotalSize

-
-public long getTotalSize()
-
-
Returns the size of the wrapped SearchDataQuery -

-

-
Specified by:
getTotalSize in interface SearchResults
-
-
-
See Also:
SearchResults.getTotalSize()
-
-
-
- -

-setRange

-
-public void setRange(Integer first,
-                     Integer last)
-
-
Description copied from interface: SearchResults
-
Sets the indexes of the first and last results returned. - Result numbering begins with 0 -

-

-
Specified by:
setRange in interface SearchResults
-
-
-
Parameters:
first -
last -
See Also:
com.arsdigita.cms.docmgr.search.SearchResults#setRange(int, int)
-
-
-
- -

-getResults

-
-public Iterator getResults()
-
-
Description copied from interface: SearchResults
-
Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called. -

-

-
Specified by:
getResults in interface SearchResults
-
-
-
See Also:
SearchResults.getResults()
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearcher.html deleted file mode 100755 index c63ae73f5..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/IntermediaSearcher.html +++ /dev/null @@ -1,471 +0,0 @@ - - - - - - -IntermediaSearcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Class IntermediaSearcher

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.search.IntermediaSearcher
-
-
-
All Implemented Interfaces:
Searcher
-
-
-
-
public class IntermediaSearcher
extends Object
implements Searcher
- -

-

- Implement the Intermedia-based simple and advanced searches for the site. -

-

- -

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-protected static String[]m_columns - -
-           
-  - - - - - - - - - - -
-Constructor Summary
IntermediaSearcher() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- SearchResultsadvancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
-protected  StringcleanUpSearchString(String terms, - String joiner) - -
-           
-protected  com.arsdigita.search.SearchDataQuerycreateAdvancedQuery(String searchString, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
-protected  StringcreateSearchString(String[] types, - String[] sections, - String searchString, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate) - -
-           
-protected  com.arsdigita.search.SearchDataQuerycreateSimpleQuery(String searchString, - com.arsdigita.kernel.User user) - -
-           
-protected  String[]objectToString(Object[] objects) - -
-          Yet another dumb method brought to you by Java
- SearchResultssimpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-m_columns

-
-protected static final String[] m_columns
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-IntermediaSearcher

-
-public IntermediaSearcher()
-
-
- - - - - - - - -
-Method Detail
- -

-simpleSearch

-
-public SearchResults simpleSearch(String terms,
-                                  com.arsdigita.kernel.User user)
-
-
-
Specified by:
simpleSearch in interface Searcher
-
-
-
-
-
-
- -

-createSimpleQuery

-
-protected com.arsdigita.search.SearchDataQuery createSimpleQuery(String searchString,
-                                                                 com.arsdigita.kernel.User user)
-
-
-
-
-
-
-
-
-
- -

-advancedSearch

-
-public SearchResults advancedSearch(String terms,
-                                    String author,
-                                    String mimeType,
-                                    BigDecimal workspaceID,
-                                    Date lastModifiedStartDate,
-                                    Date lastModifiedEndDate,
-                                    String[] types,
-                                    String[] sections,
-                                    com.arsdigita.kernel.User user,
-                                    Collection categoryIDs)
-
-
-
Specified by:
advancedSearch in interface Searcher
-
-
-
-
-
-
- -

-createAdvancedQuery

-
-protected com.arsdigita.search.SearchDataQuery createAdvancedQuery(String searchString,
-                                                                   com.arsdigita.kernel.User user,
-                                                                   Collection categoryIDs)
-
-
-
-
-
-
-
-
-
- -

-cleanUpSearchString

-
-protected String cleanUpSearchString(String terms,
-                                     String joiner)
-
-
-
-
-
-
-
-
-
- -

-createSearchString

-
-protected String createSearchString(String[] types,
-                                    String[] sections,
-                                    String searchString,
-                                    String author,
-                                    String mimeType,
-                                    BigDecimal workspaceID,
-                                    Date lastModifiedStartDate,
-                                    Date lastModifiedEndDate)
-
-
-
-
-
-
-
-
-
- -

-objectToString

-
-protected String[] objectToString(Object[] objects)
-
-
Yet another dumb method brought to you by Java -

-

-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearchResults.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearchResults.html deleted file mode 100755 index 59bac1577..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearchResults.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - -LuceneSearchResults (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Class LuceneSearchResults

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.search.LuceneSearchResults
-
-
-
All Implemented Interfaces:
SearchResults
-
-
-
-
public class LuceneSearchResults
extends Object
implements SearchResults
- -

-

-
Version:
-
$Revision: #1 $ $Date: 2003/08/20 $
-
Author:
-
hbrock@redhat.com
-
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
LuceneSearchResults(com.arsdigita.lucene.LuceneSearch search) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- IteratorgetResults() - -
-          Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called.
- longgetTotalSize() - -
-          Returns the number of search results
- voidsetRange(Integer first, - Integer last) - -
-          Sets the indexes of the first and last results returned.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-LuceneSearchResults

-
-public LuceneSearchResults(com.arsdigita.lucene.LuceneSearch search)
-
-
- - - - - - - - -
-Method Detail
- -

-getTotalSize

-
-public long getTotalSize()
-
-
Description copied from interface: SearchResults
-
Returns the number of search results -

-

-
Specified by:
getTotalSize in interface SearchResults
-
-
-
See Also:
SearchResults.getTotalSize()
-
-
-
- -

-setRange

-
-public void setRange(Integer first,
-                     Integer last)
-
-
Description copied from interface: SearchResults
-
Sets the indexes of the first and last results returned. - Result numbering begins with 0 -

-

-
Specified by:
setRange in interface SearchResults
-
-
-
Parameters:
first -
last -
See Also:
SearchResults.setRange(Integer, Integer)
-
-
-
- -

-getResults

-
-public Iterator getResults()
-
-
Description copied from interface: SearchResults
-
Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called. -

-

-
Specified by:
getResults in interface SearchResults
-
-
-
See Also:
SearchResults.getResults()
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearcher.html deleted file mode 100755 index 38a9bb2db..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/LuceneSearcher.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - -LuceneSearcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Class LuceneSearcher

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.search.LuceneSearcher
-
-
-
All Implemented Interfaces:
Searcher
-
-
-
-
public class LuceneSearcher
extends Object
implements Searcher
- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
LuceneSearcher() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- SearchResultsadvancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-          Returns a collection of the search results.
- SearchResultssimpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-LuceneSearcher

-
-public LuceneSearcher()
-
-
- - - - - - - - -
-Method Detail
- -

-simpleSearch

-
-public SearchResults simpleSearch(String terms,
-                                  com.arsdigita.kernel.User user)
-
-
-
Specified by:
simpleSearch in interface Searcher
-
-
-
-
-
-
- -

-advancedSearch

-
-public SearchResults advancedSearch(String terms,
-                                    String author,
-                                    String mimeType,
-                                    BigDecimal workspaceID,
-                                    Date lastModifiedStartDate,
-                                    Date lastModifiedEndDate,
-                                    String[] types,
-                                    String[] sections,
-                                    com.arsdigita.kernel.User user,
-                                    Collection categoryIDs)
-
-
Returns a collection of the search results. - Currently does not filter by section, user, author, mimeType, workspace - or dates. -

-

-
Specified by:
advancedSearch in interface Searcher
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResult.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResult.html deleted file mode 100755 index 0527ca308..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResult.html +++ /dev/null @@ -1,543 +0,0 @@ - - - - - - -SearchResult (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Class SearchResult

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.search.SearchResult
-
-
-
All Implemented Interfaces:
Comparable
-
-
-
-
public class SearchResult
extends Object
implements Comparable
- -

-Encapsulates a DataQuery returned from SearchSpecification - and provides convenience methods for retrieving results. - - ********************* WARNING *********************** - ********************* WARNING *********************** - ********************* WARNING *********************** - - Under *NO* circumstances change anything in this file. - Doing so will break backwards compatability with the - remote search SOAP API. - - ********************* WARNING *********************** - ********************* WARNING *********************** - ********************* WARNING *********************** -

- -

-

-
Author:
-
Simon Buckle (sbuckle@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - - -
-Constructor Summary
SearchResult() - -
-           
SearchResult(BigDecimal id, - String link_text, - String url_stub, - String summary, - BigDecimal score) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- intcompareTo(Object o) - -
-           
- BigDecimalgetID() - -
-           
- StringgetLink() - -
-           
- BigDecimalgetScore() - -
-           
- StringgetSummary() - -
-           
- StringgetUrlStub() - -
-           
- voidsetID(BigDecimal id) - -
-           
- voidsetLink(String link) - -
-           
- voidsetScore(BigDecimal score) - -
-           
- voidsetSummary(String summary) - -
-           
- voidsetUrlStub(String urlStub) - -
-           
- StringtoString() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchResult

-
-public SearchResult()
-
-
-
- -

-SearchResult

-
-public SearchResult(BigDecimal id,
-                    String link_text,
-                    String url_stub,
-                    String summary,
-                    BigDecimal score)
-
-
- - - - - - - - -
-Method Detail
- -

-getSummary

-
-public String getSummary()
-
-
-
-
-
-
-
-
-
- -

-setSummary

-
-public void setSummary(String summary)
-
-
-
-
-
-
-
-
-
- -

-getScore

-
-public BigDecimal getScore()
-
-
-
-
-
-
-
-
-
- -

-setScore

-
-public void setScore(BigDecimal score)
-
-
-
-
-
-
-
-
-
- -

-getID

-
-public BigDecimal getID()
-
-
-
-
-
-
-
-
-
- -

-setID

-
-public void setID(BigDecimal id)
-
-
-
-
-
-
-
-
-
- -

-getLink

-
-public String getLink()
-
-
-
-
-
-
-
-
-
- -

-setLink

-
-public void setLink(String link)
-
-
-
-
-
-
-
-
-
- -

-getUrlStub

-
-public String getUrlStub()
-
-
-
-
-
-
-
-
-
- -

-setUrlStub

-
-public void setUrlStub(String urlStub)
-
-
-
-
-
-
-
-
-
- -

-toString

-
-public String toString()
-
-
-
-
-
-
-
-
-
- -

-compareTo

-
-public int compareTo(Object o)
-
-
-
Specified by:
compareTo in interface Comparable
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResults.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResults.html deleted file mode 100755 index 68ee9fa16..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchResults.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - -SearchResults (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Interface SearchResults

-
-
All Known Implementing Classes:
IntermediaSearchResults, LuceneSearchResults
-
-
-
-
public interface SearchResults
- -

-

-
Version:
-
$Revision: #1 $ $Date: 2003/08/20 $
-
Author:
-
hbrock@redhat.com
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- IteratorgetResults() - -
-          Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called.
- longgetTotalSize() - -
-          Returns the number of search results
- voidsetRange(Integer first, - Integer last) - -
-          Sets the indexes of the first and last results returned.
-  -

- - - - - - - - - - - - - - -
-Method Detail
- -

-getTotalSize

-
-public long getTotalSize()
-
-
Returns the number of search results -

-

-
-
-
-
- -

-setRange

-
-public void setRange(Integer first,
-                     Integer last)
-
-
Sets the indexes of the first and last results returned. - Result numbering begins with 0 -

-

-
Parameters:
first -
last -
-
-
-
- -

-getResults

-
-public Iterator getResults()
-
-
Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called. -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchUtils.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchUtils.html deleted file mode 100755 index 31d83f2b1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/SearchUtils.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - -SearchUtils (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Class SearchUtils

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.search.SearchUtils
-
-
-
-
public abstract class SearchUtils
extends Object
- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
SearchUtils() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static SearchResultsgetAdvancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
-static SearchergetSearcher() - -
-           
-static SearchResultsgetSimpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
-static voidreindexObjects(com.arsdigita.persistence.DataCollection objects, - String idAttribute) - -
-           
-static voidsetSearcher(Searcher searcher) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchUtils

-
-public SearchUtils()
-
-
- - - - - - - - -
-Method Detail
- -

-setSearcher

-
-public static void setSearcher(Searcher searcher)
-
-
-
-
-
-
- -

-getSearcher

-
-public static Searcher getSearcher()
-
-
-
-
-
-
- -

-getSimpleSearch

-
-public static SearchResults getSimpleSearch(String terms,
-                                            com.arsdigita.kernel.User user)
-
-
-
-
-
-
- -

-getAdvancedSearch

-
-public static SearchResults getAdvancedSearch(String terms,
-                                              String author,
-                                              String mimeType,
-                                              BigDecimal workspaceID,
-                                              Date lastModifiedStartDate,
-                                              Date lastModifiedEndDate,
-                                              String[] types,
-                                              String[] sections,
-                                              com.arsdigita.kernel.User user,
-                                              Collection categoryIDs)
-
-
-
-
-
-
- -

-reindexObjects

-
-public static void reindexObjects(com.arsdigita.persistence.DataCollection objects,
-                                  String idAttribute)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/Searcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/Searcher.html deleted file mode 100755 index 76b1b6439..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/Searcher.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - -Searcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.search -
-Interface Searcher

-
-
All Known Implementing Classes:
IntermediaSearcher, LuceneSearcher
-
-
-
-
public interface Searcher
- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- SearchResultsadvancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
- SearchResultssimpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
-  -

- - - - - - - - - - - - - - -
-Method Detail
- -

-simpleSearch

-
-public SearchResults simpleSearch(String terms,
-                                  com.arsdigita.kernel.User user)
-
-
-
-
-
-
- -

-advancedSearch

-
-public SearchResults advancedSearch(String terms,
-                                    String author,
-                                    String mimeType,
-                                    BigDecimal workspaceID,
-                                    Date lastModifiedStartDate,
-                                    Date lastModifiedEndDate,
-                                    String[] types,
-                                    String[] sections,
-                                    com.arsdigita.kernel.User user,
-                                    Collection categoryIDs)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearchResults.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearchResults.html deleted file mode 100755 index fa1903e7e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearchResults.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.search.IntermediaSearchResults (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.search.IntermediaSearchResults

-
-No usage of com.arsdigita.cms.docmgr.search.IntermediaSearchResults -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearcher.html deleted file mode 100755 index d8e781f1a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/IntermediaSearcher.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.search.IntermediaSearcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.search.IntermediaSearcher

-
-No usage of com.arsdigita.cms.docmgr.search.IntermediaSearcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearchResults.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearchResults.html deleted file mode 100755 index c57bd61a6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearchResults.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.search.LuceneSearchResults (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.search.LuceneSearchResults

-
-No usage of com.arsdigita.cms.docmgr.search.LuceneSearchResults -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearcher.html deleted file mode 100755 index 2369636ef..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/LuceneSearcher.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.search.LuceneSearcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.search.LuceneSearcher

-
-No usage of com.arsdigita.cms.docmgr.search.LuceneSearcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResult.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResult.html deleted file mode 100755 index 84c192838..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResult.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.search.SearchResult (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.search.SearchResult

-
- - - - - - - - - -
-Packages that use SearchResult
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of SearchResult in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - -
Constructors in com.arsdigita.cms.docmgr.ui with parameters of type SearchResult
SearchList.SearchResultDisplay(SearchResult result) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResults.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResults.html deleted file mode 100755 index 40437ed8e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchResults.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.cms.docmgr.search.SearchResults (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.cms.docmgr.search.SearchResults

-
- - - - - - - - - - - - - -
-Packages that use SearchResults
com.arsdigita.cms.docmgr.search  
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of SearchResults in com.arsdigita.cms.docmgr.search
-  -

- - - - - - - - - - - - - -
Classes in com.arsdigita.cms.docmgr.search that implement SearchResults
- classIntermediaSearchResults - -
-           
- classLuceneSearchResults - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.search that return SearchResults
-static SearchResultsSearchUtils.getSimpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
-static SearchResultsSearchUtils.getAdvancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
- SearchResultsLuceneSearcher.simpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
- SearchResultsLuceneSearcher.advancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-          Returns a collection of the search results.
- SearchResultsSearcher.simpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
- SearchResultsSearcher.advancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
- SearchResultsIntermediaSearcher.simpleSearch(String terms, - com.arsdigita.kernel.User user) - -
-           
- SearchResultsIntermediaSearcher.advancedSearch(String terms, - String author, - String mimeType, - BigDecimal workspaceID, - Date lastModifiedStartDate, - Date lastModifiedEndDate, - String[] types, - String[] sections, - com.arsdigita.kernel.User user, - Collection categoryIDs) - -
-           
-  -

- - - - - -
-Uses of SearchResults in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.ui that return SearchResults
- SearchResultsSearchForm.getSearchHits(com.arsdigita.bebop.PageState state) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchUtils.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchUtils.html deleted file mode 100755 index 0aaa998ad..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/SearchUtils.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.search.SearchUtils (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.search.SearchUtils

-
-No usage of com.arsdigita.cms.docmgr.search.SearchUtils -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/Searcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/Searcher.html deleted file mode 100755 index de5182217..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/class-use/Searcher.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.cms.docmgr.search.Searcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.cms.docmgr.search.Searcher

-
- - - - - - - - - -
-Packages that use Searcher
com.arsdigita.cms.docmgr.search  
-  -

- - - - - -
-Uses of Searcher in com.arsdigita.cms.docmgr.search
-  -

- - - - - - - - - - - - - -
Classes in com.arsdigita.cms.docmgr.search that implement Searcher
- classIntermediaSearcher - -
-           - Implement the Intermedia-based simple and advanced searches for the site.
- classLuceneSearcher - -
-           
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.search that return Searcher
-static SearcherSearchUtils.getSearcher() - -
-           
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.docmgr.search with parameters of type Searcher
-static voidSearchUtils.setSearcher(Searcher searcher) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-frame.html deleted file mode 100755 index b5085cb37..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-frame.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.search (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.search - - - - -
-Interfaces  - -
-Searcher -
-SearchResults
- - - - - - -
-Classes  - -
-IntermediaSearcher -
-IntermediaSearchResults -
-LuceneSearcher -
-LuceneSearchResults -
-SearchResult -
-SearchUtils
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-summary.html deleted file mode 100755 index a5a6f2e22..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-summary.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.search (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.search -

- - - - - - - - - - - - - -
-Interface Summary
Searcher 
SearchResults 
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
IntermediaSearcher - Implement the Intermedia-based simple and advanced searches for the site.
IntermediaSearchResults 
LuceneSearcher 
LuceneSearchResults 
SearchResultEncapsulates a DataQuery returned from SearchSpecification - and provides convenience methods for retrieving results.
SearchUtils 
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-tree.html deleted file mode 100755 index 2413019ba..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-tree.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.search Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.search -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -

-Interface Hierarchy -

-
    -
  • interface com.arsdigita.cms.docmgr.search.Searcher
  • interface com.arsdigita.cms.docmgr.search.SearchResults
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-use.html deleted file mode 100755 index 96f08760f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/search/package-use.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.search (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.search

-
- - - - - - - - - - - - - -
-Packages that use com.arsdigita.cms.docmgr.search
com.arsdigita.cms.docmgr.search  
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - - - - - - - -
-Classes in com.arsdigita.cms.docmgr.search used by com.arsdigita.cms.docmgr.search
Searcher - -
-           
SearchResults - -
-           
-  -

- - - - - - - - - - - -
-Classes in com.arsdigita.cms.docmgr.search used by com.arsdigita.cms.docmgr.ui
SearchResult - -
-          Encapsulates a DataQuery returned from SearchSpecification - and provides convenience methods for retrieving results.
SearchResults - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.html deleted file mode 100755 index ab97173f7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileInfoPropertiesPane.html +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - -BrowseFileInfoPropertiesPane (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class BrowseFileInfoPropertiesPane

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.ModalContainer
-                          extended bycom.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, com.arsdigita.util.Lockable, com.arsdigita.bebop.Resettable
-
-
-
-
public class BrowseFileInfoPropertiesPane
extends com.arsdigita.bebop.ModalContainer
implements DMConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.ModalContainer
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
BrowseFileInfoPropertiesPane(com.arsdigita.cms.docmgr.ui.BrowsePane parent) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voiddisplayEditForm(com.arsdigita.bebop.PageState state) - -
-           
- voiddisplayPropertiesPane(com.arsdigita.bebop.PageState state) - -
-           
- voiddisplaySendColleagueForm(com.arsdigita.bebop.PageState state) - -
-           
- voiddisplayUploadForm(com.arsdigita.bebop.PageState state) - -
-           
- com.arsdigita.bebop.parameters.BigDecimalParametergetFileIDParam() - -
-           
- voidregister(com.arsdigita.bebop.Page p) - -
-          Register the page the fist time
- voidsetDocID(com.arsdigita.bebop.PageState state, - BigDecimal docID) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.ModalContainer
addModeChangeListener, getDefaultComponent, getVisibleComponent, next, previous, reset, setDefaultComponent, setVisibleComponent
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, generateXML, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BrowseFileInfoPropertiesPane

-
-public BrowseFileInfoPropertiesPane(com.arsdigita.cms.docmgr.ui.BrowsePane parent)
-
-
- - - - - - - - -
-Method Detail
- -

-register

-
-public void register(com.arsdigita.bebop.Page p)
-
-
Register the page the fist time -

-

-
Specified by:
register in interface com.arsdigita.bebop.Component
-
-
-
-
-
-
- -

-getFileIDParam

-
-public com.arsdigita.bebop.parameters.BigDecimalParameter getFileIDParam()
-
-
-
-
-
-
-
-
-
- -

-setDocID

-
-public void setDocID(com.arsdigita.bebop.PageState state,
-                     BigDecimal docID)
-
-
-
-
-
-
-
-
-
- -

-displayPropertiesPane

-
-public void displayPropertiesPane(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
-
- -

-displayEditForm

-
-public void displayEditForm(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
-
- -

-displayUploadForm

-
-public void displayUploadForm(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
-
- -

-displaySendColleagueForm

-
-public void displaySendColleagueForm(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileRevisionsTable.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileRevisionsTable.html deleted file mode 100755 index ee4cc1c50..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFileRevisionsTable.html +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - -BrowseFileRevisionsTable (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class BrowseFileRevisionsTable

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Table
-                      extended bycom.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, DMConstants, EventListener, com.arsdigita.util.Lockable, com.arsdigita.bebop.event.TableActionListener
-
-
-
-
public class BrowseFileRevisionsTable
extends com.arsdigita.bebop.Table
implements com.arsdigita.bebop.event.TableActionListener, DMConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.Table
com.arsdigita.bebop.Table.MatrixTableModelBuilder
-  - - - - - - - - - - - - - - - -
-Field Summary
-protected static org.apache.log4j.Loggers_log - -
-           
-static String[]s_tableHeaders - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Table
CELL_EVENT, EMPTY_MODEL, SEP, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.TableActionListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
BrowseFileRevisionsTable(com.arsdigita.cms.docmgr.ui.BrowsePane parent) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidcellSelected(com.arsdigita.bebop.event.TableActionEvent e) - -
-           
- voidheadSelected(com.arsdigita.bebop.event.TableActionEvent e) - -
-           
- voidregister(com.arsdigita.bebop.Page p) - -
-          Register the page the fist time
- voidsetDocID(com.arsdigita.bebop.PageState ps, - BigDecimal docID) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Table
addTableActionListener, children, clearSelection, createTableActionListener, fireCellSelected, fireHeadSelected, generateExtraXMLAttributes, generateXML, getBorder, getCellPadding, getCellSpacing, getColumn, getColumnModel, getColumnSelectionModel, getControler, getDefaultCellRenderer, getEmptyView, getHeader, getModelBuilder, getRowSelectionModel, getStriped, getTableModel, getWidth, isSelectedCell, isSelectedColumn, isSelectedRow, lock, removeTableActionListener, respond, setBorder, setCellPadding, setCellSpacing, setColumn, setColumnModel, setColumnSelectionModel, setDefaultCellRenderer, setEmptyView, setHeader, setModelBuilder, setRowSelectionModel, setStriped, setWidth
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-s_log

-
-protected static final org.apache.log4j.Logger s_log
-
-
-
-
-
- -

-s_tableHeaders

-
-public static final String[] s_tableHeaders
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-BrowseFileRevisionsTable

-
-public BrowseFileRevisionsTable(com.arsdigita.cms.docmgr.ui.BrowsePane parent)
-
-
- - - - - - - - -
-Method Detail
- -

-cellSelected

-
-public void cellSelected(com.arsdigita.bebop.event.TableActionEvent e)
-
-
-
Specified by:
cellSelected in interface com.arsdigita.bebop.event.TableActionListener
-
-
-
-
-
-
- -

-headSelected

-
-public void headSelected(com.arsdigita.bebop.event.TableActionEvent e)
-
-
-
Specified by:
headSelected in interface com.arsdigita.bebop.event.TableActionListener
-
-
-
-
-
-
- -

-register

-
-public void register(com.arsdigita.bebop.Page p)
-
-
Register the page the fist time -

-

-
Specified by:
register in interface com.arsdigita.bebop.Component
-
-
-
-
-
-
- -

-setDocID

-
-public void setDocID(com.arsdigita.bebop.PageState ps,
-                     BigDecimal docID)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFolderEdit.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFolderEdit.html deleted file mode 100755 index 119bb2131..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/BrowseFolderEdit.html +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - -BrowseFolderEdit (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class BrowseFolderEdit

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended bycom.arsdigita.cms.docmgr.ui.BrowseFolderEdit
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class BrowseFolderEdit
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormProcessListener, DMConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormInitListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormValidationListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
BrowseFolderEdit(com.arsdigita.cms.docmgr.ui.BrowsePane parent, - com.arsdigita.bebop.parameters.BigDecimalParameter folderID) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent event) - -
-          Validate the folder.
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-BrowseFolderEdit

-
-public BrowseFolderEdit(com.arsdigita.cms.docmgr.ui.BrowsePane parent,
-                        com.arsdigita.bebop.parameters.BigDecimalParameter folderID)
-
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
-
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent event)
-              throws com.arsdigita.bebop.FormProcessException
-
-
Validate the folder. -

-

-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-             throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoriesPrintListener.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoriesPrintListener.html deleted file mode 100755 index c9b0b3766..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoriesPrintListener.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - -CategoriesPrintListener (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class CategoriesPrintListener

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.CategoriesPrintListener
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
-
public class CategoriesPrintListener
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
CategoriesPrintListener(com.arsdigita.cms.ContentSection docsContentSection) - -
-           
CategoriesPrintListener(com.arsdigita.cms.ContentSection docsContentSection, - com.arsdigita.bebop.parameters.BigDecimalParameter selectedFileParam) - -
-           
CategoriesPrintListener(com.arsdigita.cms.ContentSection docsContentSection, - com.arsdigita.bebop.parameters.BigDecimalParameter selectedFileParam, - boolean showRoot) - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-CategoriesPrintListener

-
-public CategoriesPrintListener(com.arsdigita.cms.ContentSection docsContentSection)
-
-
-
- -

-CategoriesPrintListener

-
-public CategoriesPrintListener(com.arsdigita.cms.ContentSection docsContentSection,
-                               com.arsdigita.bebop.parameters.BigDecimalParameter selectedFileParam)
-
-
-
- -

-CategoriesPrintListener

-
-public CategoriesPrintListener(com.arsdigita.cms.ContentSection docsContentSection,
-                               com.arsdigita.bebop.parameters.BigDecimalParameter selectedFileParam,
-                               boolean showRoot)
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocModelBuilder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocModelBuilder.html deleted file mode 100755 index 1c30a1230..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocModelBuilder.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - -CategoryDocModelBuilder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class CategoryDocModelBuilder

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder
-
-
-
All Implemented Interfaces:
com.arsdigita.toolbox.ui.DataQueryBuilder, DMConstants, com.arsdigita.util.Lockable
-
-
-
-
public class CategoryDocModelBuilder
extends Object
implements com.arsdigita.toolbox.ui.DataQueryBuilder, DMConstants
- -

-Iterates through all the children of the given Category -

- -

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-protected static org.apache.log4j.Categorys_log - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.toolbox.ui.DataQueryBuilder
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
CategoryDocModelBuilder(com.arsdigita.kernel.ui.ACSObjectSelectionModel sel, - String context) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- StringgetKeyColumn() - -
-           
- booleanisLocked() - -
-           
- voidlock() - -
-           
- com.arsdigita.persistence.DataQuerymakeDataQuery(com.arsdigita.toolbox.ui.DataTable t, - com.arsdigita.bebop.PageState s) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-s_log

-
-protected static org.apache.log4j.Category s_log
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-CategoryDocModelBuilder

-
-public CategoryDocModelBuilder(com.arsdigita.kernel.ui.ACSObjectSelectionModel sel,
-                               String context)
-
-
- - - - - - - - -
-Method Detail
- -

-lock

-
-public void lock()
-
-
-
Specified by:
lock in interface com.arsdigita.util.Lockable
-
-
-
-
-
-
- -

-isLocked

-
-public boolean isLocked()
-
-
-
Specified by:
isLocked in interface com.arsdigita.util.Lockable
-
-
-
-
-
-
- -

-makeDataQuery

-
-public com.arsdigita.persistence.DataQuery makeDataQuery(com.arsdigita.toolbox.ui.DataTable t,
-                                                         com.arsdigita.bebop.PageState s)
-
-
-
Specified by:
makeDataQuery in interface com.arsdigita.toolbox.ui.DataQueryBuilder
-
-
-
-
-
-
- -

-getKeyColumn

-
-public String getKeyColumn()
-
-
-
Specified by:
getKeyColumn in interface com.arsdigita.toolbox.ui.DataQueryBuilder
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocsNavigatorPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocsNavigatorPortlet.html deleted file mode 100755 index ff9a419d8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryDocsNavigatorPortlet.html +++ /dev/null @@ -1,442 +0,0 @@ - - - - - - -CategoryDocsNavigatorPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class CategoryDocsNavigatorPortlet

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.portal.Portlet
-                      extended bycom.arsdigita.portal.apportlet.AppPortlet
-                          extended bycom.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet
-
-
-
All Implemented Interfaces:
DMConstants
-
-
-
-
public class CategoryDocsNavigatorPortlet
extends com.arsdigita.portal.apportlet.AppPortlet
implements DMConstants
- -

-Portlet showing the category tree used by Documents. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-protected static org.apache.log4j.Categorys_log - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
CategoryDocsNavigatorPortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet
getAppPortletType, getParentApplication, getPortletRenderer, getZoomURL, setParentApplication
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-s_log

-
-protected static org.apache.log4j.Category s_log
-
-
-
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-CategoryDocsNavigatorPortlet

-
-public CategoryDocsNavigatorPortlet(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryItemsBrowser.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryItemsBrowser.html deleted file mode 100755 index ab8fbe5e1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CategoryItemsBrowser.html +++ /dev/null @@ -1,491 +0,0 @@ - - - - - - -CategoryItemsBrowser (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class CategoryItemsBrowser

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Table
-                      extended bycom.arsdigita.toolbox.ui.DataTable
-                          extended bycom.arsdigita.cms.docmgr.ui.CategoryItemsBrowser
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, DMConstants, com.arsdigita.util.Lockable, com.arsdigita.bebop.PaginationModelBuilder
-
-
-
-
public class CategoryItemsBrowser
extends com.arsdigita.toolbox.ui.DataTable
implements DMConstants
- -

-Displays Documents for a given Category -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.toolbox.ui.DataTable
com.arsdigita.toolbox.ui.DataTable.DataBuilderAdapter, com.arsdigita.toolbox.ui.DataTable.DataQueryTableModel, com.arsdigita.toolbox.ui.DataTable.DataTableColumnModel, com.arsdigita.toolbox.ui.DataTable.GlobalizedHeaderCellRenderer, com.arsdigita.toolbox.ui.DataTable.SortableTableColumn
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.Table
com.arsdigita.bebop.Table.MatrixTableModelBuilder
-  - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.toolbox.ui.DataTable
ASCENDING, DESCENDING, DIRECTION, ORDER
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Table
CELL_EVENT, EMPTY_MODEL, SEP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
CategoryItemsBrowser(CategoryDocModelBuilder cdmb, - com.arsdigita.kernel.ui.ACSObjectSelectionModel selCategory, - String context, - com.arsdigita.cms.ContentSection cs) - -
-          Construct a new CategoryItemsBrowser -
-  - - - - - - - - - - - - - - - -
-Method Summary
- StringgetContext() - -
-           
- voidsetContext(String context) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.toolbox.ui.DataTable
addColumn, addColumn, addColumn, addColumn, addColumn, addQueryListener, fireQueryPending, generateExtraXMLAttributes, getDataQuery, getDataQueryBuilder, getDefaultOrder, getOrder, getOrderDirection, getOrderSelectionModel, getPaginator, getQuerySizeLocal, getResourceBundle, getTotalSize, globalize, lock, register, removeQueryListener, setDataQueryBuilder, setDefaultOrder, setOrder, setOrderDirection, setOrderSelectionModel, setPaginator, setResourceBundle, toggleOrderDirection
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Table
addTableActionListener, children, clearSelection, createTableActionListener, fireCellSelected, fireHeadSelected, generateXML, getBorder, getCellPadding, getCellSpacing, getColumn, getColumnModel, getColumnSelectionModel, getControler, getDefaultCellRenderer, getEmptyView, getHeader, getModelBuilder, getRowSelectionModel, getStriped, getTableModel, getWidth, isSelectedCell, isSelectedColumn, isSelectedRow, removeTableActionListener, respond, setBorder, setCellPadding, setCellSpacing, setColumn, setColumnModel, setColumnSelectionModel, setDefaultCellRenderer, setEmptyView, setHeader, setModelBuilder, setRowSelectionModel, setStriped, setWidth
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.PaginationModelBuilder
isVisible
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-CategoryItemsBrowser

-
-public CategoryItemsBrowser(CategoryDocModelBuilder cdmb,
-                            com.arsdigita.kernel.ui.ACSObjectSelectionModel selCategory,
-                            String context,
-                            com.arsdigita.cms.ContentSection cs)
-
-
Construct a new CategoryItemsBrowser -

- The SingleSelectionModel which will provide the - current category -

-

Parameters:
context - the context for the retrieved items. Should be - ContentItem.DRAFT or ContentItem.LIVE
- - - - - - - - -
-Method Detail
- -

-getContext

-
-public String getContext()
-
-
-
-
-
- -
Returns:
the current context
-
-
-
- -

-setContext

-
-public void setContext(String context)
-
-
-
-
-
-
Parameters:
context - the new context for the items. Should be - ContentItem.DRAFT or ContentItem.LIVE
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkPane.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkPane.html deleted file mode 100755 index aef4102fd..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkPane.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - -CreateDocLinkPane (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class CreateDocLinkPane

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.cms.docmgr.ui.CreateDocLinkPane
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, com.arsdigita.util.Lockable
-
-
-
-
public class CreateDocLinkPane
extends com.arsdigita.bebop.SimpleContainer
implements DMConstants
- -

-A UI Container class used to create instances of DocLink object type. - - Contains a simple Search Form to search Documents by name. - A table to display the results the of the search. - ActionLinks in the action column of CreateDocLinkSearchTable - are responsible to actually create the Links to the Document represented - in the corresponding row of the table. -

- -

-

-
Author:
-
Shashin Shinde - - $Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/CreateDocLinkPane.java#2 $
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringPARAM_EDIT_DOCLINK_ID - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleContainer
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
CreateDocLinkPane(com.arsdigita.bebop.Component parent, - com.arsdigita.bebop.Tree tree) - -
-          Constructor.
-  - - - - - - - - - - - - - - - -
-Method Summary
- com.arsdigita.bebop.parameters.BigDecimalParametergetEditDoclinkIDParam() - -
-           
- voidregister(com.arsdigita.bebop.Page p) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, generateXML, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - -
-Field Detail
- -

-PARAM_EDIT_DOCLINK_ID

-
-public static final String PARAM_EDIT_DOCLINK_ID
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-CreateDocLinkPane

-
-public CreateDocLinkPane(com.arsdigita.bebop.Component parent,
-                         com.arsdigita.bebop.Tree tree)
-
-
Constructor. -

-

Parameters:
parent - to which this Table is added.Used to return after creating - the link and cleaning up the Table selection.
- - - - - - - - -
-Method Detail
- -

-register

-
-public void register(com.arsdigita.bebop.Page p)
-
-
-
Specified by:
register in interface com.arsdigita.bebop.Component
-
-
-
-
-
-
- -

-getEditDoclinkIDParam

-
-public com.arsdigita.bebop.parameters.BigDecimalParameter getEditDoclinkIDParam()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkSearchTable.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkSearchTable.html deleted file mode 100755 index 97e5e9e57..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/CreateDocLinkSearchTable.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - -CreateDocLinkSearchTable (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class CreateDocLinkSearchTable

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Table
-                      extended bycom.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, DMConstants, com.arsdigita.util.Lockable
-
-
-
-
public class CreateDocLinkSearchTable
extends com.arsdigita.bebop.Table
implements DMConstants
- -

-A UI class used to create the objects of type DocLink. - This class displays a table which contains the results of Documents searched - by the user. - - Action column displays ActionLinks to create a Link to the Document - displayed in the current row of the table. -

- -

-

-
Author:
-
Shashin Shinde - - $Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/CreateDocLinkSearchTable.java#2 $
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.Table
com.arsdigita.bebop.Table.MatrixTableModelBuilder
-  - - - - - - - - - - - -
-Field Summary
-static intPAGE_SIZE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Table
CELL_EVENT, EMPTY_MODEL, SEP, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.Table
addTableActionListener, children, clearSelection, createTableActionListener, fireCellSelected, fireHeadSelected, generateExtraXMLAttributes, generateXML, getBorder, getCellPadding, getCellSpacing, getColumn, getColumnModel, getColumnSelectionModel, getControler, getDefaultCellRenderer, getEmptyView, getHeader, getModelBuilder, getRowSelectionModel, getStriped, getTableModel, getWidth, isSelectedCell, isSelectedColumn, isSelectedRow, lock, register, removeTableActionListener, respond, setBorder, setCellPadding, setCellSpacing, setColumn, setColumnModel, setColumnSelectionModel, setDefaultCellRenderer, setEmptyView, setHeader, setModelBuilder, setRowSelectionModel, setStriped, setWidth
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-PAGE_SIZE

-
-public static final int PAGE_SIZE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DCNDispatcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DCNDispatcher.html deleted file mode 100755 index 670dcd00e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DCNDispatcher.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - -DCNDispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DCNDispatcher

-
-java.lang.Object
-  extended bycom.arsdigita.dispatcher.MapDispatcher
-      extended bycom.arsdigita.bebop.page.BebopMapDispatcher
-          extended bycom.arsdigita.bebop.BebopMapDispatcher
-              extended bycom.arsdigita.cms.docmgr.ui.DMDispatcher
-                  extended bycom.arsdigita.cms.docmgr.ui.DCNDispatcher
-
-
-
All Implemented Interfaces:
com.arsdigita.dispatcher.Dispatcher, DMConstants
-
-
-
-
public class DCNDispatcher
extends DMDispatcher
implements DMConstants
- -

-Dispatcher for document category navigator. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.dispatcher.MapDispatcher
com.arsdigita.dispatcher.MapDispatcher.ParseConfigHandler
-  - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
DCNDispatcher() - -
-          Default constructor instantiating the URL-page map.
-  - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.PagebuildDCNIndexPage() - -
-          Build index page to browse documents by category
- - - - - - - -
Methods inherited from class com.arsdigita.cms.docmgr.ui.DMDispatcher
addPage, buildDMIndexPage, buildFileInfoPage, buildSearchPage, dispatch
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
addPage, getPresentationManager, newParseConfigHandler, setMap, setNotFoundPage, setPresentationManager
- - - - - - - -
Methods inherited from class com.arsdigita.dispatcher.MapDispatcher
addPage, getMap, preprocessRequest, readFromFile, requireTrailingSlash, setNotFoundDispatcher
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DCNDispatcher

-
-public DCNDispatcher()
-
-
Default constructor instantiating the URL-page map. -

-

- - - - - - - - -
-Method Detail
- -

-buildDCNIndexPage

-
-protected com.arsdigita.bebop.Page buildDCNIndexPage()
-
-
Build index page to browse documents by category -

-

-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMConstants.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMConstants.html deleted file mode 100755 index 539efe4c9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMConstants.html +++ /dev/null @@ -1,2618 +0,0 @@ - - - - - - -DMConstants (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Interface DMConstants

-
-
All Known Implementing Classes:
BrowseFileInfoPropertiesPane, BrowseFileRevisionsTable, BrowseFolderEdit, CategoryDocModelBuilder, CategoryDocsNavigatorPortlet, CategoryItemsBrowser, CreateDocLinkPane, CreateDocLinkSearchTable, DCNDispatcher, DMDispatcher, DMUtils, DocFoldersContentTree, DocFoldersContentTreeModel, DocmgrBasePage, FileDimensionalNavbar, FileUploadForm, LegacyCategoryDocsNavigatorPortlet, RepositoryTreeModel
-
-
-
-
public interface DMConstants
- -

-Variously used constant objects used in Document Manager UI -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringABS_PATH - -
-           
-static com.arsdigita.bebop.LabelACTION_COPY_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_COPY_SUBMIT - -
-           
-static StringACTION_COPY_VALUE - -
-           
-static com.arsdigita.bebop.LabelACTION_CUT_LABEL - -
-           
-static StringACTION_CUT_VALUE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_DELETE_CONFIRM - -
-           
-static com.arsdigita.bebop.LabelACTION_DELETE_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_DELETE_SUBMIT - -
-           
-static StringACTION_DELETE_VALUE - -
-           
-static com.arsdigita.bebop.LabelACTION_ERROR_CONTINUE - -
-           
-static com.arsdigita.bebop.LabelACTION_ERROR_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_MOVE_SUBMIT - -
-           
-static StringBUNDLE_NAME - -
-          Globalization resource
-static com.arsdigita.globalization.GlobalizedMessageCANCEL - -
-           
-static StringCAT_TREE_ID_PARAM_NAME - -
-          Global state parameters.
-static StringCAT_TREE_INIT_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelDESTINATION_FOLDER_PANEL_HEADER - -
-          Action Panel Constants
-static com.arsdigita.globalization.GlobalizedMessageDIFFERENT_MIMETYPE_ERROR - -
-           
-static StringDOC_COL_ID_PARAM_NAME - -
-           
-static StringDOCS_XML_NS - -
-          The XML namespace.
-static com.arsdigita.globalization.GlobalizedMessageEMAIL_INVALID_ERROR - -
-           
-static StringEND_DATE_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelFILE_ACTION_HEADER - -
-          File Action Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_CATEGORIES - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_DELETE_CONFIRM - -
-          FILE DELETE link
-static com.arsdigita.bebop.LabelFILE_DELETE_HEADER - -
-          File-Delete Form
-static com.arsdigita.globalization.GlobalizedMessageFILE_DELETE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelFILE_DOWNLOAD_HEADER - -
-          File Download Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_DOWNLOAD_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_EDIT_ACTION_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelFILE_EDIT_HEADER - -
-          File Edit Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_EDIT_LINK - -
-          File Action Panel Constants
-static com.arsdigita.bebop.LabelFILE_FEEDBACK_HEADER - -
-          File Feedback Panel
-static StringFILE_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_COMMENTS_TITLE - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_HISTORY_TITLE - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_LABEL - -
-          DM File Info Page
-static com.arsdigita.bebop.LabelFILE_INFO_LINKS_TITLE - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_PROPERTIES_TITLE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_INTENDED_AUDIENCE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_INTENDED_AUDIENCE_INTERNAL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_INTENDED_AUDIENCE_PUBLIC - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_INTENDED_AUDIENCE_WORKSPACE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_KEYWORDS - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_NAME - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_NAME_REQUIRED - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_NEW_VERSION_LINK - -
-           
-static com.arsdigita.bebop.LabelFILE_PROPERTIES_HEADER - -
-          File Properties
-static com.arsdigita.bebop.LabelFILE_REVISION_HISTORY_HEADER - -
-          File Revision History Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_SAVE - -
-           
-static com.arsdigita.bebop.LabelFILE_SEND_COLLEAGUE_FORM_EMAIL - -
-           
-static com.arsdigita.bebop.LabelFILE_SEND_COLLEAGUE_HEADER - -
-          File-Send-to-Colleague Form
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_MESSAGE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_RETURN_ADDRESS - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_SUBJECT - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_SUBMIT - -
-           
-static com.arsdigita.bebop.LabelFILE_SEND_COLLEAGUE_THANKS - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_THANKS_RETURN_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SOURCE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SUBMIT - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_UPLOAD_ADD_FILE - -
-           
-static com.arsdigita.bebop.LabelFILE_UPLOAD_FORM_HEADER - -
-          File Uplaod Form
-static com.arsdigita.bebop.LabelFILE_UPLOAD_HEADER - -
-          File Upload Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_VERSION_DESCRIPTION - -
-           
-static StringFILES - -
-           
-static StringFOLDER_ADD_DOC_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelFOLDER_CREATE_FORM_HEADER - -
-          Folder Create Form
-static StringFOLDER_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelFOLDER_DESCRIPTION_LABEL - -
-           
-static com.arsdigita.bebop.LabelFOLDER_EMPTY_LABEL - -
-           
-static StringFOLDER_ID - -
-           
-static com.arsdigita.bebop.LabelFOLDER_INFORMATION_HEADER - -
-          One Folder content
-static StringFOLDER_NAME - -
-          Folder parameters
-static com.arsdigita.bebop.LabelFOLDER_NAME_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_NEW_CREATE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_NEW_DOCLINK_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_NEW_FILE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_NEW_FOLDER_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_PARENTNOTFOUND_ERROR - -
-          Error messages
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_SAVE - -
-           
-static StringFOLDERS - -
-           
-static StringGET_ALL_TREES - -
-           
-static StringGET_CHILDREN - -
-           
-static StringGET_REPOSITORIES - -
-           
-static StringGET_REPOSITORIES_ROOTS - -
-           
-static com.arsdigita.bebop.LabelGO_BACK_LABEL - -
-           
-static com.arsdigita.bebop.LabelHELP_LABEL - -
-           
-static StringIS_FOLDER - -
-           
-static StringIS_LOCKED - -
-           
-static StringIS_MOUNTED - -
-           
-static StringLAST_MODIFIED - -
-           
-static StringMIME_TYPE_LABEL - -
-           
-static StringMODIFYING_USER - -
-           
-static com.arsdigita.bebop.LabelMY_WORKSPACE_LABEL - -
-          Navigational dimensional bar
-static StringNAME - -
-           
-static StringNUM_FILES - -
-           
-static com.arsdigita.bebop.parameters.BigDecimalParameterOPEN_FOLDER_ID_PARAM - -
-           
-static StringOPEN_FOLDER_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelPAGE_TITLE_LABEL - -
-          DM Index page title
-static StringPARAM_ROOT_ADD_DOC_LINK - -
-           
-static com.arsdigita.bebop.LabelREPOSITORIES_INFORMATION_HEADER - -
-          Repositories
-static com.arsdigita.globalization.GlobalizedMessageREPOSITORIES_MOUNTED_SAVE - -
-          Repsitories Selection Form
-static StringREPOSITORY_ID - -
-           
-static com.arsdigita.globalization.GlobalizedMessageREPOSITORY_RECENTDOCS_EMPTY - -
-           
-static com.arsdigita.globalization.GlobalizedMessageRESOURCE_EXISTS_ERROR - -
-           
-static StringRESOURCE_ID - -
-           
-static com.arsdigita.bebop.parameters.StringParameterROOT_ADD_DOC_PARAM - -
-           
-static StringROOT_ADD_DOC_PARAM_NAME - -
-           
-static com.arsdigita.globalization.GlobalizedMessageROOT_ADD_DOCLINK_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageROOT_ADD_RESOURCE_LINK - -
-          Portlet Panel Constants
-static com.arsdigita.bebop.parameters.BigDecimalParameterROOTFOLDER_ID_PARAM - -
-           
-static StringROOTFOLDER_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.parameters.BigDecimalParameterSEL_FOLDER_ID_PARAM - -
-           
-static StringSEL_FOLDER_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelSEND_FRIEND_FORM_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelSEND_FRIEND_FORM_EMAIL_LIST - -
-           
-static com.arsdigita.bebop.LabelSEND_FRIEND_FORM_EMAIL_SUBJECT - -
-          Send to colleague form variables.
-static com.arsdigita.globalization.GlobalizedMessageSEND_FRIEND_FORM_SUBMIT - -
-           
-static com.arsdigita.bebop.LabelSIGN_OUT_LABEL - -
-           
-static StringSIZE - -
-           
-static StringSTART_DATE_PARAM_NAME - -
-           
-static com.arsdigita.globalization.GlobalizedMessageTARGET_REQUIRED - -
-           
-static com.arsdigita.globalization.GlobalizedMessageTITLE_REQUIRED - -
-           
-static StringTYPE - -
-           
-static com.arsdigita.bebop.LabelWS_BROWSE_TITLE - -
-          Page navigational tabs
-static com.arsdigita.bebop.LabelWS_REPOSITORIES_TITLE - -
-           
-static com.arsdigita.bebop.LabelWS_SEARCH_TITLE - -
-           
-  - - - - - - -

- - - - - - - - -
-Field Detail
- -

-FOLDER_ID

-
-public static final String FOLDER_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_LOCKED

-
-public static final String IS_LOCKED
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_MOUNTED

-
-public static final String IS_MOUNTED
-
-
-
See Also:
Constant Field Values
-
-
- -

-LAST_MODIFIED

-
-public static final String LAST_MODIFIED
-
-
-
See Also:
Constant Field Values
-
-
- -

-MODIFYING_USER

-
-public static final String MODIFYING_USER
-
-
-
See Also:
Constant Field Values
-
-
- -

-MIME_TYPE_LABEL

-
-public static final String MIME_TYPE_LABEL
-
-
-
See Also:
Constant Field Values
-
-
- -

-NAME

-
-public static final String NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ABS_PATH

-
-public static final String ABS_PATH
-
-
-
See Also:
Constant Field Values
-
-
- -

-NUM_FILES

-
-public static final String NUM_FILES
-
-
-
See Also:
Constant Field Values
-
-
- -

-REPOSITORY_ID

-
-public static final String REPOSITORY_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-RESOURCE_ID

-
-public static final String RESOURCE_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-SIZE

-
-public static final String SIZE
-
-
-
See Also:
Constant Field Values
-
-
- -

-TYPE

-
-public static final String TYPE
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_FOLDER

-
-public static final String IS_FOLDER
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_ALL_TREES

-
-public static final String GET_ALL_TREES
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_REPOSITORIES

-
-public static final String GET_REPOSITORIES
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_REPOSITORIES_ROOTS

-
-public static final String GET_REPOSITORIES_ROOTS
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_CHILDREN

-
-public static final String GET_CHILDREN
-
-
-
See Also:
Constant Field Values
-
-
- -

-FILES

-
-public static final String FILES
-
-
-
See Also:
Constant Field Values
-
-
- -

-FOLDERS

-
-public static final String FOLDERS
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOCS_XML_NS

-
-public static final String DOCS_XML_NS
-
-
The XML namespace. -

-

-
See Also:
Constant Field Values
-
-
- -

-BUNDLE_NAME

-
-public static final String BUNDLE_NAME
-
-
Globalization resource -

-

-
See Also:
Constant Field Values
-
-
- -

-CAT_TREE_ID_PARAM_NAME

-
-public static final String CAT_TREE_ID_PARAM_NAME
-
-
Global state parameters. -

-

-
See Also:
Constant Field Values
-
-
- -

-CAT_TREE_INIT_ID_PARAM_NAME

-
-public static final String CAT_TREE_INIT_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_COL_ID_PARAM_NAME

-
-public static final String DOC_COL_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ROOTFOLDER_ID_PARAM_NAME

-
-public static final String ROOTFOLDER_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ROOTFOLDER_ID_PARAM

-
-public static final com.arsdigita.bebop.parameters.BigDecimalParameter ROOTFOLDER_ID_PARAM
-
-
-
-
-
- -

-SEL_FOLDER_ID_PARAM_NAME

-
-public static final String SEL_FOLDER_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-SEL_FOLDER_ID_PARAM

-
-public static final com.arsdigita.bebop.parameters.BigDecimalParameter SEL_FOLDER_ID_PARAM
-
-
-
-
-
- -

-OPEN_FOLDER_ID_PARAM_NAME

-
-public static final String OPEN_FOLDER_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-OPEN_FOLDER_ID_PARAM

-
-public static final com.arsdigita.bebop.parameters.BigDecimalParameter OPEN_FOLDER_ID_PARAM
-
-
-
-
-
- -

-FILE_ID_PARAM_NAME

-
-public static final String FILE_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-START_DATE_PARAM_NAME

-
-public static final String START_DATE_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-END_DATE_PARAM_NAME

-
-public static final String END_DATE_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-PAGE_TITLE_LABEL

-
-public static final com.arsdigita.bebop.Label PAGE_TITLE_LABEL
-
-
DM Index page title -

-

-
-
-
- -

-FILE_INFO_LABEL

-
-public static final com.arsdigita.bebop.Label FILE_INFO_LABEL
-
-
DM File Info Page -

-

-
-
-
- -

-FILE_INFO_PROPERTIES_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_PROPERTIES_TITLE
-
-
-
-
-
- -

-FILE_INFO_HISTORY_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_HISTORY_TITLE
-
-
-
-
-
- -

-FILE_INFO_COMMENTS_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_COMMENTS_TITLE
-
-
-
-
-
- -

-FILE_INFO_LINKS_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_LINKS_TITLE
-
-
-
-
-
- -

-GO_BACK_LABEL

-
-public static final com.arsdigita.bebop.Label GO_BACK_LABEL
-
-
-
-
-
- -

-MY_WORKSPACE_LABEL

-
-public static final com.arsdigita.bebop.Label MY_WORKSPACE_LABEL
-
-
Navigational dimensional bar -

-

-
-
-
- -

-SIGN_OUT_LABEL

-
-public static final com.arsdigita.bebop.Label SIGN_OUT_LABEL
-
-
-
-
-
- -

-HELP_LABEL

-
-public static final com.arsdigita.bebop.Label HELP_LABEL
-
-
-
-
-
- -

-WS_BROWSE_TITLE

-
-public static final com.arsdigita.bebop.Label WS_BROWSE_TITLE
-
-
Page navigational tabs -

-

-
-
-
- -

-WS_SEARCH_TITLE

-
-public static final com.arsdigita.bebop.Label WS_SEARCH_TITLE
-
-
-
-
-
- -

-WS_REPOSITORIES_TITLE

-
-public static final com.arsdigita.bebop.Label WS_REPOSITORIES_TITLE
-
-
-
-
-
- -

-FOLDER_INFORMATION_HEADER

-
-public static final com.arsdigita.bebop.Label FOLDER_INFORMATION_HEADER
-
-
One Folder content -

-

-
-
-
- -

-REPOSITORIES_INFORMATION_HEADER

-
-public static final com.arsdigita.bebop.Label REPOSITORIES_INFORMATION_HEADER
-
-
Repositories -

-

-
-
-
- -

-REPOSITORY_RECENTDOCS_EMPTY

-
-public static final com.arsdigita.globalization.GlobalizedMessage REPOSITORY_RECENTDOCS_EMPTY
-
-
-
-
-
- -

-FILE_UPLOAD_FORM_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_UPLOAD_FORM_HEADER
-
-
File Uplaod Form -

-

-
-
-
- -

-FOLDER_CREATE_FORM_HEADER

-
-public static final com.arsdigita.bebop.Label FOLDER_CREATE_FORM_HEADER
-
-
Folder Create Form -

-

-
-
-
- -

-FILE_PROPERTIES_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_PROPERTIES_HEADER
-
-
File Properties -

-

-
-
-
- -

-FILE_EDIT_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_EDIT_HEADER
-
-
File Edit Panel -

-

-
-
-
- -

-FILE_EDIT_ACTION_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_EDIT_ACTION_DESCRIPTION
-
-
-
-
-
- -

-FILE_UPLOAD_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_UPLOAD_HEADER
-
-
File Upload Panel -

-

-
-
-
- -

-FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION
-
-
-
-
-
- -

-FILE_DOWNLOAD_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_DOWNLOAD_HEADER
-
-
File Download Panel -

-

-
-
-
- -

-FILE_SEND_COLLEAGUE_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_SEND_COLLEAGUE_HEADER
-
-
File-Send-to-Colleague Form -

-

-
-
-
- -

-FILE_SEND_COLLEAGUE_FORM_EMAIL

-
-public static final com.arsdigita.bebop.Label FILE_SEND_COLLEAGUE_FORM_EMAIL
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_MESSAGE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_MESSAGE
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_THANKS

-
-public static final com.arsdigita.bebop.Label FILE_SEND_COLLEAGUE_THANKS
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_RETURN_ADDRESS

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_RETURN_ADDRESS
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_SUBJECT

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_SUBJECT
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_SUBMIT
-
-
-
-
-
- -

-FILE_DELETE_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_DELETE_HEADER
-
-
File-Delete Form -

-

-
-
-
- -

-FILE_ACTION_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_ACTION_HEADER
-
-
File Action Panel -

-

-
-
-
- -

-FILE_REVISION_HISTORY_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_REVISION_HISTORY_HEADER
-
-
File Revision History Panel -

-

-
-
-
- -

-FILE_FEEDBACK_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_FEEDBACK_HEADER
-
-
File Feedback Panel -

-

-
-
-
- -

-DESTINATION_FOLDER_PANEL_HEADER

-
-public static final com.arsdigita.bebop.Label DESTINATION_FOLDER_PANEL_HEADER
-
-
Action Panel Constants -

-

-
-
-
- -

-FOLDER_EMPTY_LABEL

-
-public static final com.arsdigita.bebop.Label FOLDER_EMPTY_LABEL
-
-
-
-
-
- -

-FOLDER_NEW_FOLDER_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_NEW_FOLDER_LINK
-
-
-
-
-
- -

-FOLDER_NEW_CREATE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_NEW_CREATE_LINK
-
-
-
-
-
- -

-FOLDER_NEW_FILE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_NEW_FILE_LINK
-
-
-
-
-
- -

-FOLDER_NEW_DOCLINK_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_NEW_DOCLINK_LINK
-
-
-
-
-
- -

-ACTION_CUT_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_CUT_LABEL
-
-
-
-
-
- -

-ACTION_COPY_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_COPY_LABEL
-
-
-
-
-
- -

-ACTION_DELETE_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_DELETE_LABEL
-
-
-
-
-
- -

-ACTION_DELETE_CONFIRM

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_DELETE_CONFIRM
-
-
-
-
-
- -

-ACTION_ERROR_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_ERROR_LABEL
-
-
-
-
-
- -

-ACTION_ERROR_CONTINUE

-
-public static final com.arsdigita.bebop.Label ACTION_ERROR_CONTINUE
-
-
-
-
-
- -

-ACTION_CUT_VALUE

-
-public static final String ACTION_CUT_VALUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ACTION_COPY_VALUE

-
-public static final String ACTION_COPY_VALUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ACTION_DELETE_VALUE

-
-public static final String ACTION_DELETE_VALUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ACTION_DELETE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_DELETE_SUBMIT
-
-
-
-
-
- -

-ACTION_COPY_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_COPY_SUBMIT
-
-
-
-
-
- -

-ACTION_MOVE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_MOVE_SUBMIT
-
-
-
-
-
- -

-ROOT_ADD_RESOURCE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage ROOT_ADD_RESOURCE_LINK
-
-
Portlet Panel Constants -

-

-
-
-
- -

-ROOT_ADD_DOC_PARAM_NAME

-
-public static final String ROOT_ADD_DOC_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ROOT_ADD_DOC_PARAM

-
-public static final com.arsdigita.bebop.parameters.StringParameter ROOT_ADD_DOC_PARAM
-
-
-
-
-
- -

-FOLDER_ADD_DOC_PARAM_NAME

-
-public static final String FOLDER_ADD_DOC_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ROOT_ADD_DOCLINK_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage ROOT_ADD_DOCLINK_LINK
-
-
-
-
-
- -

-PARAM_ROOT_ADD_DOC_LINK

-
-public static final String PARAM_ROOT_ADD_DOC_LINK
-
-
-
See Also:
Constant Field Values
-
-
- -

-FILE_EDIT_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_EDIT_LINK
-
-
File Action Panel Constants -

-

-
-
-
- -

-FILE_NEW_VERSION_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_NEW_VERSION_LINK
-
-
-
-
-
- -

-FILE_DOWNLOAD_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DOWNLOAD_LINK
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_LINK
-
-
-
-
-
- -

-FILE_DELETE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DELETE_LINK
-
-
-
-
-
- -

-FOLDER_PARENTNOTFOUND_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_PARENTNOTFOUND_ERROR
-
-
Error messages -

-

-
-
-
- -

-RESOURCE_EXISTS_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage RESOURCE_EXISTS_ERROR
-
-
-
-
-
- -

-EMAIL_INVALID_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage EMAIL_INVALID_ERROR
-
-
-
-
-
- -

-DIFFERENT_MIMETYPE_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage DIFFERENT_MIMETYPE_ERROR
-
-
-
-
-
- -

-FILE_DELETE_CONFIRM

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DELETE_CONFIRM
-
-
FILE DELETE link -

-

-
-
-
- -

-FILE_NAME

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_NAME
-
-
-
-
-
- -

-FILE_CATEGORIES

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_CATEGORIES
-
-
-
-
-
- -

-FILE_NAME_REQUIRED

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_NAME_REQUIRED
-
-
-
-
-
- -

-TITLE_REQUIRED

-
-public static final com.arsdigita.globalization.GlobalizedMessage TITLE_REQUIRED
-
-
-
-
-
- -

-TARGET_REQUIRED

-
-public static final com.arsdigita.globalization.GlobalizedMessage TARGET_REQUIRED
-
-
-
-
-
- -

-FILE_INTENDED_AUDIENCE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_INTENDED_AUDIENCE
-
-
-
-
-
- -

-FILE_UPLOAD_ADD_FILE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_UPLOAD_ADD_FILE
-
-
-
-
-
- -

-FILE_SOURCE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SOURCE
-
-
-
-
-
- -

-FILE_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DESCRIPTION
-
-
-
-
-
- -

-FILE_VERSION_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_VERSION_DESCRIPTION
-
-
-
-
-
- -

-FILE_KEYWORDS

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_KEYWORDS
-
-
-
-
-
- -

-FILE_SAVE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SAVE
-
-
-
-
-
- -

-FILE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SUBMIT
-
-
-
-
-
- -

-CANCEL

-
-public static final com.arsdigita.globalization.GlobalizedMessage CANCEL
-
-
-
-
-
- -

-FILE_INTENDED_AUDIENCE_PUBLIC

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_INTENDED_AUDIENCE_PUBLIC
-
-
-
-
-
- -

-FILE_INTENDED_AUDIENCE_WORKSPACE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_INTENDED_AUDIENCE_WORKSPACE
-
-
-
-
-
- -

-FILE_INTENDED_AUDIENCE_INTERNAL

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_INTENDED_AUDIENCE_INTERNAL
-
-
-
-
-
- -

-FOLDER_NAME

-
-public static final String FOLDER_NAME
-
-
Folder parameters -

-

-
See Also:
Constant Field Values
-
-
- -

-FOLDER_DESCRIPTION

-
-public static final String FOLDER_DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-FOLDER_NAME_LABEL

-
-public static final com.arsdigita.bebop.Label FOLDER_NAME_LABEL
-
-
-
-
-
- -

-FOLDER_DESCRIPTION_LABEL

-
-public static final com.arsdigita.bebop.Label FOLDER_DESCRIPTION_LABEL
-
-
-
-
-
- -

-FOLDER_SAVE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_SAVE
-
-
-
-
-
- -

-REPOSITORIES_MOUNTED_SAVE

-
-public static final com.arsdigita.globalization.GlobalizedMessage REPOSITORIES_MOUNTED_SAVE
-
-
Repsitories Selection Form -

-

-
-
-
- -

-SEND_FRIEND_FORM_EMAIL_SUBJECT

-
-public static final com.arsdigita.bebop.Label SEND_FRIEND_FORM_EMAIL_SUBJECT
-
-
Send to colleague form variables. -

-

-
-
-
- -

-SEND_FRIEND_FORM_EMAIL_LIST

-
-public static final com.arsdigita.bebop.Label SEND_FRIEND_FORM_EMAIL_LIST
-
-
-
-
-
- -

-SEND_FRIEND_FORM_DESCRIPTION

-
-public static final com.arsdigita.bebop.Label SEND_FRIEND_FORM_DESCRIPTION
-
-
-
-
-
- -

-SEND_FRIEND_FORM_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage SEND_FRIEND_FORM_SUBMIT
-
-
-
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMDispatcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMDispatcher.html deleted file mode 100755 index 931f45bb3..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMDispatcher.html +++ /dev/null @@ -1,459 +0,0 @@ - - - - - - -DMDispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DMDispatcher

-
-java.lang.Object
-  extended bycom.arsdigita.dispatcher.MapDispatcher
-      extended bycom.arsdigita.bebop.page.BebopMapDispatcher
-          extended bycom.arsdigita.bebop.BebopMapDispatcher
-              extended bycom.arsdigita.cms.docmgr.ui.DMDispatcher
-
-
-
All Implemented Interfaces:
com.arsdigita.dispatcher.Dispatcher, DMConstants
-
-
-
Direct Known Subclasses:
DCNDispatcher
-
-
-
-
public class DMDispatcher
extends com.arsdigita.bebop.BebopMapDispatcher
implements DMConstants
- -

-Dispatcher for document manager application. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.dispatcher.MapDispatcher
com.arsdigita.dispatcher.MapDispatcher.ParseConfigHandler
-  - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
DMDispatcher() - -
-          Default constructor instantiating the URL-page map.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidaddPage(String url, - com.arsdigita.bebop.Page p, - boolean isIndex) - -
-          convenience wrapper method that allows to register a "" page - for an index page, if the isIndex flag is try
-protected  com.arsdigita.bebop.PagebuildDMIndexPage() - -
-          Build index page for the document manager,
-protected  com.arsdigita.bebop.PagebuildFileInfoPage() - -
-          Build page for the administration of one file.
-protected  com.arsdigita.bebop.PagebuildSearchPage() - -
-          Build search page for the document manager,
- voiddispatch(HttpServletRequest req, - HttpServletResponse resp, - com.arsdigita.dispatcher.RequestContext ctx) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
addPage, getPresentationManager, newParseConfigHandler, setMap, setNotFoundPage, setPresentationManager
- - - - - - - -
Methods inherited from class com.arsdigita.dispatcher.MapDispatcher
addPage, getMap, preprocessRequest, readFromFile, requireTrailingSlash, setNotFoundDispatcher
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DMDispatcher

-
-public DMDispatcher()
-
-
Default constructor instantiating the URL-page map. -

-

- - - - - - - - -
-Method Detail
- -

-buildDMIndexPage

-
-protected com.arsdigita.bebop.Page buildDMIndexPage()
-
-
Build index page for the document manager, -

-

-
-
-
-
-
-
-
- -

-buildSearchPage

-
-protected com.arsdigita.bebop.Page buildSearchPage()
-
-
Build search page for the document manager, -

-

-
-
-
-
-
-
-
- -

-buildFileInfoPage

-
-protected com.arsdigita.bebop.Page buildFileInfoPage()
-
-
Build page for the administration of one file. -

-

-
-
-
-
-
-
-
- -

-addPage

-
-protected void addPage(String url,
-                       com.arsdigita.bebop.Page p,
-                       boolean isIndex)
-
-
convenience wrapper method that allows to register a "" page - for an index page, if the isIndex flag is try -

-

-
-
-
-
-
-
-
- -

-dispatch

-
-public void dispatch(HttpServletRequest req,
-                     HttpServletResponse resp,
-                     com.arsdigita.dispatcher.RequestContext ctx)
-              throws IOException,
-                     ServletException
-
-
-
Specified by:
dispatch in interface com.arsdigita.dispatcher.Dispatcher
-
-
- -
Throws: -
IOException -
ServletException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.DateFormat.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.DateFormat.html deleted file mode 100755 index f00fdbc79..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.DateFormat.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - -DMUtils.DateFormat (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DMUtils.DateFormat

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.DMUtils.DateFormat
-
-
-
Enclosing class:
DMUtils
-
-
-
-
public static class DMUtils.DateFormat
extends Object
- -

-Class to render java.util.Date in request specific locale - and pattern. -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
DMUtils.DateFormat() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static Stringformat(Date date) - -
-          Default Date format should look like this - 12/19/01 07:21 PM
-static Stringformat(Date date, - String fmt) - -
-          This allows to pass in any formatting strings for the date
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DMUtils.DateFormat

-
-public DMUtils.DateFormat()
-
-
- - - - - - - - -
-Method Detail
- -

-format

-
-public static String format(Date date)
-
-
Default Date format should look like this - 12/19/01 07:21 PM -

-

-
-
-
-
- -

-format

-
-public static String format(Date date,
-                            String fmt)
-
-
This allows to pass in any formatting strings for the date -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.FileSize.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.FileSize.html deleted file mode 100755 index 06c6eb41f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.FileSize.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - -DMUtils.FileSize (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DMUtils.FileSize

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.DMUtils.FileSize
-
-
-
Enclosing class:
DMUtils
-
-
-
-
public static class DMUtils.FileSize
extends Object
- -

-Class to describe and format file sizes in request specific locales -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
DMUtils.FileSize() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static StringformatFileSize(BigDecimal size) - -
-          Wrapper for converting from BigDecimal to long file size
-static StringformatFileSize(long n) - -
-          Chooses the units for the file such that the file size is - greater or equal unity in the smallest units possible.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DMUtils.FileSize

-
-public DMUtils.FileSize()
-
-
- - - - - - - - -
-Method Detail
- -

-formatFileSize

-
-public static String formatFileSize(long n)
-
-
Chooses the units for the file such that the file size is - greater or equal unity in the smallest units possible. -

-

-
-
-
-
- -

-formatFileSize

-
-public static String formatFileSize(BigDecimal size)
-
-
Wrapper for converting from BigDecimal to long file size -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.html deleted file mode 100755 index d6600e51b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DMUtils.html +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - -DMUtils (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DMUtils

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.DMUtils
-
-
-
All Implemented Interfaces:
DMConstants
-
-
-
-
public class DMUtils
extends Object
implements DMConstants
- -

-Public static helper methods and classes for recurring tasks - in Document Manager UI. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - -
-Nested Class Summary
-static classDMUtils.DateFormat - -
-          Class to render java.util.Date in request specific locale - and pattern.
-static classDMUtils.FileSize - -
-          Class to describe and format file sizes in request specific locales
-  - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
DMUtils() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static StringextractFileName(String rawName, - com.arsdigita.bebop.PageState state) - -
-          Extract the true filename from the uploaded filepath name - taking OS-specific file-separator into account The considered - OS'es are Windows, Mac, and Linux/Unixes.
-static DocLinkgetDocLink(BigDecimal id) - -
-          Attempts to load a DocLink by passed in ID.
-static DocumentgetFile(BigDecimal id) - -
-          Attempts to load a file by ID.
-static StringgetFolderName(com.arsdigita.bebop.PageState state, - com.arsdigita.bebop.Tree tree) - -
-          Get the selected folder in the tree
-static DocFoldergetRootFolder(com.arsdigita.bebop.PageState state) - -
-          Gets or sets the root folder id and returns the root DocFolder
-static BigDecimalgetSelectedFolderID(com.arsdigita.bebop.PageState state, - com.arsdigita.bebop.Tree t) - -
-          Wrapper to get the selected folder in a tree.
-static BigDecimalgetSelFolderOrRootID(com.arsdigita.bebop.PageState state, - com.arsdigita.bebop.tree.TreeNode n) - -
-          Get the selected folder in the tree node or the root tree id
-static com.arsdigita.kernel.UsergetUser(com.arsdigita.bebop.PageState state) - -
-          Get User object from request context.
-static voidsetRoot(com.arsdigita.bebop.PageState state, - DocFolder root) - -
-          Change global state parameter of root folder.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DMUtils

-
-public DMUtils()
-
-
- - - - - - - - -
-Method Detail
- -

-getRootFolder

-
-public static DocFolder getRootFolder(com.arsdigita.bebop.PageState state)
-
-
Gets or sets the root folder id and returns the root DocFolder -

-

-
-
-
-
-
-
-
- -

-getSelFolderOrRootID

-
-public static BigDecimal getSelFolderOrRootID(com.arsdigita.bebop.PageState state,
-                                              com.arsdigita.bebop.tree.TreeNode n)
-
-
Get the selected folder in the tree node or the root tree id -

-

-
-
-
-
-
-
-
- -

-setRoot

-
-public static void setRoot(com.arsdigita.bebop.PageState state,
-                           DocFolder root)
-
-
Change global state parameter of root folder. -

-

-
-
-
-
-
-
-
- -

-getUser

-
-public static com.arsdigita.kernel.User getUser(com.arsdigita.bebop.PageState state)
-
-
Get User object from request context. -

-

-
-
-
-
-
-
-
- -

-getSelectedFolderID

-
-public static BigDecimal getSelectedFolderID(com.arsdigita.bebop.PageState state,
-                                             com.arsdigita.bebop.Tree t)
-
-
Wrapper to get the selected folder in a tree. Works only if - we are already showing an expanded tree. -

-

-
-
-
-
-
-
-
- -

-getFile

-
-public static Document getFile(BigDecimal id)
-
-
Attempts to load a file by ID. -

-

-
-
-
-
-
-
-
- -

-getDocLink

-
-public static DocLink getDocLink(BigDecimal id)
-
-
Attempts to load a DocLink by passed in ID. -

-

-
-
-
-
-
-
-
- -

-getFolderName

-
-public static String getFolderName(com.arsdigita.bebop.PageState state,
-                                   com.arsdigita.bebop.Tree tree)
-
-
Get the selected folder in the tree -

-

-
-
-
-
-
-
-
- -

-extractFileName

-
-public static String extractFileName(String rawName,
-                                     com.arsdigita.bebop.PageState state)
-
-
Extract the true filename from the uploaded filepath name - taking OS-specific file-separator into account The considered - OS'es are Windows, Mac, and Linux/Unixes. The default case is - Linux/Unix. -

-

-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html deleted file mode 100755 index 91666d5e8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -DocmgrBasePage.CurrentApplicationLabelPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DocmgrBasePage.CurrentApplicationLabelPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
DocmgrBasePage
-
-
-
-
protected class DocmgrBasePage.CurrentApplicationLabelPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage.CurrentApplicationLabelPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage.CurrentApplicationLabelPrinter

-
-public DocmgrBasePage.CurrentApplicationLabelPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index 179362d66..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -DocmgrBasePage.CurrentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DocmgrBasePage.CurrentApplicationLinkPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
DocmgrBasePage
-
-
-
-
protected class DocmgrBasePage.CurrentApplicationLinkPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage.CurrentApplicationLinkPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage.CurrentApplicationLinkPrinter

-
-public DocmgrBasePage.CurrentApplicationLinkPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html deleted file mode 100755 index cc3cfd2e1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -DocmgrBasePage.ParentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DocmgrBasePage.ParentApplicationLinkPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
DocmgrBasePage
-
-
-
-
protected class DocmgrBasePage.ParentApplicationLinkPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage.ParentApplicationLinkPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage.ParentApplicationLinkPrinter

-
-public DocmgrBasePage.ParentApplicationLinkPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.html deleted file mode 100755 index 7b2f2d249..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/DocmgrBasePage.html +++ /dev/null @@ -1,889 +0,0 @@ - - - - - - -DocmgrBasePage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class DocmgrBasePage

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Page
-                      extended bycom.arsdigita.cms.docmgr.ui.DocmgrBasePage
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, com.arsdigita.util.Lockable
-
-
-
-
public class DocmgrBasePage
extends com.arsdigita.bebop.Page
implements DMConstants
- -

-

BasePage class

-

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - - - - - - - - - - - - - -
-Nested Class Summary
-protected  classDocmgrBasePage.CurrentApplicationLabelPrinter - -
-           
-protected  classDocmgrBasePage.CurrentApplicationLinkPrinter - -
-           
-protected  classDocmgrBasePage.ParentApplicationLinkPrinter - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringDOC_BODY_ELEMENT - -
-           
-static StringDOC_FOOTER_ELEMENT - -
-           
-static StringDOC_GLOBAL_ELEMENT - -
-           
-static StringDOC_HEADER_ELEMENT - -
-           
-static StringDOC_XML_NS - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Page
m_invisible, m_panel, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage() - -
-           
DocmgrBasePage(com.arsdigita.bebop.parameters.BigDecimalParameter fileIDParam) - -
-           
DocmgrBasePage(String view, - com.arsdigita.bebop.parameters.BigDecimalParameter fileIDParam) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidadd(com.arsdigita.bebop.Component pc) - -
-          Adds a component to the body.
-protected  voidbuildBody(com.arsdigita.bebop.Container body) - -
-           
-protected  voidbuildContextBar() - -
-           
-protected  voidbuildFooter(com.arsdigita.bebop.Container footer) - -
-           
-protected  voidbuildGlobal(com.arsdigita.bebop.Container global) - -
-           
-protected  voidbuildHeader(com.arsdigita.bebop.Container header) - -
-           
-protected  voidbuildPage() - -
-           
-protected  voidbuildTitle() - -
-           
- com.arsdigita.bebop.ContainergetBody() - -
-           
- com.arsdigita.bebop.parameters.BigDecimalParametergetFileIDParam() - -
-           
- com.arsdigita.bebop.ContainergetFooter() - -
-           
- com.arsdigita.bebop.ContainergetGlobal() - -
-           
- com.arsdigita.bebop.ContainergetHeader() - -
-           
- voidgoModal(com.arsdigita.bebop.PageState ps, - com.arsdigita.bebop.Component c) - -
-          Makes the given component the only visible component between - the header and footer of this page.
- voidgoUnmodal(com.arsdigita.bebop.PageState ps) - -
-          Clears the currently selected modal component if it has been set.
- voidlock() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Page
add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, generateXMLHelper, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-DOC_GLOBAL_ELEMENT

-
-public static final String DOC_GLOBAL_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_HEADER_ELEMENT

-
-public static final String DOC_HEADER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_BODY_ELEMENT

-
-public static final String DOC_BODY_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_FOOTER_ELEMENT

-
-public static final String DOC_FOOTER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_XML_NS

-
-public static final String DOC_XML_NS
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage

-
-public DocmgrBasePage()
-
-
-
- -

-DocmgrBasePage

-
-public DocmgrBasePage(com.arsdigita.bebop.parameters.BigDecimalParameter fileIDParam)
-
-
-
- -

-DocmgrBasePage

-
-public DocmgrBasePage(String view,
-                      com.arsdigita.bebop.parameters.BigDecimalParameter fileIDParam)
-
-
Parameters:
view - A String that specifies which application view to - show. Valid values: "user", "admin" and "null". If view is - "null", there will be no right-hand navigation link. Note - - We've decided not to have the right-hand navigation link at - all. Instead, you should create tabs. So, once the - applications are migrated, view will always be null and we can - remove view altogether.
- - - - - - - - -
-Method Detail
- -

-getFileIDParam

-
-public com.arsdigita.bebop.parameters.BigDecimalParameter getFileIDParam()
-
-
-
-
-
-
-
-
-
- -

-lock

-
-public void lock()
-
-
-
Specified by:
lock in interface com.arsdigita.util.Lockable
-
-
-
-
-
-
- -

-buildPage

-
-protected final void buildPage()
-
-
-
-
-
-
-
-
-
- -

-buildTitle

-
-protected void buildTitle()
-
-
-
-
-
-
-
-
-
- -

-buildContextBar

-
-protected void buildContextBar()
-
-
-
-
-
-
-
-
-
- -

-buildGlobal

-
-protected void buildGlobal(com.arsdigita.bebop.Container global)
-
-
-
-
-
-
-
-
-
- -

-buildHeader

-
-protected void buildHeader(com.arsdigita.bebop.Container header)
-
-
-
-
-
-
-
-
-
- -

-buildBody

-
-protected void buildBody(com.arsdigita.bebop.Container body)
-
-
-
-
-
-
-
-
-
- -

-buildFooter

-
-protected void buildFooter(com.arsdigita.bebop.Container footer)
-
-
-
-
-
-
-
-
-
- -

-goModal

-
-public void goModal(com.arsdigita.bebop.PageState ps,
-                    com.arsdigita.bebop.Component c)
-
-
Makes the given component the only visible component between - the header and footer of this page. -

-

-
-
-
-
-
-
-
- -

-goUnmodal

-
-public void goUnmodal(com.arsdigita.bebop.PageState ps)
-
-
Clears the currently selected modal component if it has been set. -

-

-
-
-
-
-
-
-
- -

-add

-
-public void add(com.arsdigita.bebop.Component pc)
-
-
Adds a component to the body. -

-

-
Specified by:
add in interface com.arsdigita.bebop.Container
-
-
-
Parameters:
pc - the component to be added
-
-
-
- -

-getGlobal

-
-public com.arsdigita.bebop.Container getGlobal()
-
-
-
-
-
-
-
-
-
- -

-getHeader

-
-public com.arsdigita.bebop.Container getHeader()
-
-
-
-
-
-
-
-
-
- -

-getBody

-
-public com.arsdigita.bebop.Container getBody()
-
-
-
-
-
-
-
-
-
- -

-getFooter

-
-public com.arsdigita.bebop.Container getFooter()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileDimensionalNavbar.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileDimensionalNavbar.html deleted file mode 100755 index ab9f53d41..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileDimensionalNavbar.html +++ /dev/null @@ -1,394 +0,0 @@ - - - - - - -FileDimensionalNavbar (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class FileDimensionalNavbar

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.DimensionalNavbar
-                          extended bycom.arsdigita.cms.docmgr.ui.FileDimensionalNavbar
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, com.arsdigita.util.Lockable
-
-
-
-
public class FileDimensionalNavbar
extends com.arsdigita.bebop.DimensionalNavbar
implements DMConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.DimensionalNavbar
CENTER, LEFT, RIGHT, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, FULL_WIDTH, INSERT, MIDDLE, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
FileDimensionalNavbar(com.arsdigita.bebop.RequestLocal file) - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidgenerateXML(com.arsdigita.bebop.PageState state, - com.arsdigita.xml.Element parent) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.DimensionalNavbar
setAlign, setDelimiter, setEndTag, setStartTag
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-FileDimensionalNavbar

-
-public FileDimensionalNavbar(com.arsdigita.bebop.RequestLocal file)
-
-
- - - - - - - - -
-Method Detail
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState state,
-                        com.arsdigita.xml.Element parent)
-
-
-
Specified by:
generateXML in interface com.arsdigita.bebop.Component
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileUploadForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileUploadForm.html deleted file mode 100755 index 127101689..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/FileUploadForm.html +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - -FileUploadForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class FileUploadForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended bycom.arsdigita.cms.docmgr.ui.FileUploadForm
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class FileUploadForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormProcessListener, DMConstants
- -

-Form to upload and submit a file to the document repository. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
FileUploadForm(com.arsdigita.cms.docmgr.ui.BrowsePane parent, - com.arsdigita.bebop.Tree tree) - -
-          Constructor
FileUploadForm(com.arsdigita.cms.docmgr.ui.BrowsePane parent, - com.arsdigita.bebop.Tree tree, - boolean initListeners) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  StringgetFileName(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Gets either the file name from the widget - or takes the filename from the upload - widget in this order.
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
-protected  BigDecimalinsertFile(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Post the file to a temporary file on the server and - insert it into the database
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Post the file to a temporary file on the server and - insert it into the database
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Verify that the parent folder exists and does not contain any - other files or sub folders with the same name as the file being - uploaded.
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-FileUploadForm

-
-public FileUploadForm(com.arsdigita.cms.docmgr.ui.BrowsePane parent,
-                      com.arsdigita.bebop.Tree tree)
-
-
Constructor -

-

-
- -

-FileUploadForm

-
-public FileUploadForm(com.arsdigita.cms.docmgr.ui.BrowsePane parent,
-                      com.arsdigita.bebop.Tree tree,
-                      boolean initListeners)
-
-
- - - - - - - - -
-Method Detail
- -

-insertFile

-
-protected BigDecimal insertFile(com.arsdigita.bebop.event.FormSectionEvent e)
-                         throws com.arsdigita.bebop.FormProcessException
-
-
Post the file to a temporary file on the server and - insert it into the database -

-

-
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
-
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-             throws com.arsdigita.bebop.FormProcessException
-
-
Post the file to a temporary file on the server and - insert it into the database -

-

-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-getFileName

-
-protected String getFileName(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
Gets either the file name from the widget - or takes the filename from the upload - widget in this order. -

-

-
-
-
-
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent e)
-              throws com.arsdigita.bebop.FormProcessException
-
-
Verify that the parent folder exists and does not contain any - other files or sub folders with the same name as the file being - uploaded. -

-

-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/LegacyCategoryDocsNavigatorPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/LegacyCategoryDocsNavigatorPortlet.html deleted file mode 100755 index a44d4390c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/LegacyCategoryDocsNavigatorPortlet.html +++ /dev/null @@ -1,442 +0,0 @@ - - - - - - -LegacyCategoryDocsNavigatorPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class LegacyCategoryDocsNavigatorPortlet

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.portal.Portlet
-                      extended bycom.arsdigita.portal.apportlet.AppPortlet
-                          extended bycom.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet
-
-
-
All Implemented Interfaces:
DMConstants
-
-
-
-
public class LegacyCategoryDocsNavigatorPortlet
extends com.arsdigita.portal.apportlet.AppPortlet
implements DMConstants
- -

-Portlet showing the category tree used by Documents. -

- -

-

-
Author:
-
Crag Wolfe
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-protected static org.apache.log4j.Categorys_log - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
LegacyCategoryDocsNavigatorPortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet
getAppPortletType, getParentApplication, getPortletRenderer, getZoomURL, setParentApplication
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-s_log

-
-protected static org.apache.log4j.Category s_log
-
-
-
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-LegacyCategoryDocsNavigatorPortlet

-
-public LegacyCategoryDocsNavigatorPortlet(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/PagingControlContainer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/PagingControlContainer.html deleted file mode 100755 index 4688d5fe2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/PagingControlContainer.html +++ /dev/null @@ -1,569 +0,0 @@ - - - - - - -PagingControlContainer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class PagingControlContainer

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.BoxPanel
-                          extended bycom.arsdigita.cms.docmgr.ui.PagingControlContainer
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public class PagingControlContainer
extends com.arsdigita.bebop.BoxPanel
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringCLASS_PAGING_CONTROL - -
-           
-static StringCLASS_SELECTED - -
-           
-static StringLABEL_NEXT - -
-           
-static StringLABEL_PREVIOUS - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BoxPanel
HORIZONTAL, versionId, VERTICAL
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
PagingControlContainer(com.arsdigita.bebop.parameters.IntegerParameter pageNo, - com.arsdigita.bebop.RequestLocal maxPages) - -
-          Constructor
PagingControlContainer(com.arsdigita.bebop.parameters.IntegerParameter pageNo, - com.arsdigita.bebop.RequestLocal maxPages, - int itemsPerPage) - -
-          Constructor
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidgenerateXML(com.arsdigita.bebop.PageState ps, - com.arsdigita.xml.Element e) - -
-           
- intgetFirstRowNo(com.arsdigita.bebop.PageState ps) - -
-           
- intgetLastRowNo(com.arsdigita.bebop.PageState ps) - -
-           
- intgetMaxPages(com.arsdigita.bebop.PageState ps) - -
-           
- intgetPageNo(com.arsdigita.bebop.PageState ps) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BoxPanel
setBorder, setBorder, setWidth
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - -
-Field Detail
- -

-CLASS_PAGING_CONTROL

-
-public static final String CLASS_PAGING_CONTROL
-
-
-
See Also:
Constant Field Values
-
-
- -

-CLASS_SELECTED

-
-public static final String CLASS_SELECTED
-
-
-
See Also:
Constant Field Values
-
-
- -

-LABEL_PREVIOUS

-
-public static final String LABEL_PREVIOUS
-
-
-
See Also:
Constant Field Values
-
-
- -

-LABEL_NEXT

-
-public static final String LABEL_NEXT
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-PagingControlContainer

-
-public PagingControlContainer(com.arsdigita.bebop.parameters.IntegerParameter pageNo,
-                              com.arsdigita.bebop.RequestLocal maxPages)
-
-
Constructor -

-

Parameters:
pageNo - current page number
maxPages - 'get' returns count of pages
-
- -

-PagingControlContainer

-
-public PagingControlContainer(com.arsdigita.bebop.parameters.IntegerParameter pageNo,
-                              com.arsdigita.bebop.RequestLocal maxPages,
-                              int itemsPerPage)
-
-
Constructor -

-

Parameters:
pageNo - current page number
maxPages - 'get' returns count of pages
- - - - - - - - -
-Method Detail
- -

-getPageNo

-
-public int getPageNo(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
- -

-getMaxPages

-
-public int getMaxPages(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
- -

-getFirstRowNo

-
-public int getFirstRowNo(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
- -

-getLastRowNo

-
-public int getLastRowNo(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState ps,
-                        com.arsdigita.xml.Element e)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/RecentUpdatedDocsPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/RecentUpdatedDocsPortlet.html deleted file mode 100755 index 0b3b0bb7f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/RecentUpdatedDocsPortlet.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - -RecentUpdatedDocsPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class RecentUpdatedDocsPortlet

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.portal.Portlet
-                      extended bycom.arsdigita.portal.apportlet.AppPortlet
-                          extended bycom.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet
-
-
-
-
public class RecentUpdatedDocsPortlet
extends com.arsdigita.portal.apportlet.AppPortlet
- -

-Portlet showing the n most recently updated documents of a - portal. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - -
-Constructor Summary
RecentUpdatedDocsPortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet
getAppPortletType, getParentApplication, getPortletRenderer, getZoomURL, setParentApplication
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-RecentUpdatedDocsPortlet

-
-public RecentUpdatedDocsPortlet(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchForm.html deleted file mode 100755 index 29b0b0560..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchForm.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - -SearchForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Interface SearchForm

-
-
All Superinterfaces:
com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public interface SearchForm
extends com.arsdigita.bebop.Container
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Container
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- SearchResultsgetSearchHits(com.arsdigita.bebop.PageState state) - -
-           
- longgetSearchResultCount(com.arsdigita.bebop.PageState state) - -
-           
- booleanisVisible(com.arsdigita.bebop.PageState state) - -
-           
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Container
add, add, contains, get, indexOf, isEmpty, size
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
children, generateXML, getClassAttr, getIdAttr, getKey, getStyleAttr, register, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - - - - -
-Method Detail
- -

-isVisible

-
-public boolean isVisible(com.arsdigita.bebop.PageState state)
-
-
-
Specified by:
isVisible in interface com.arsdigita.bebop.Component
-
-
-
-
-
-
- -

-getSearchResultCount

-
-public long getSearchResultCount(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
-
- -

-getSearchHits

-
-public SearchResults getSearchHits(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultDisplay.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultDisplay.html deleted file mode 100755 index 66c9f351c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultDisplay.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - -SearchList.SearchResultDisplay (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class SearchList.SearchResultDisplay

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
Enclosing class:
SearchList
-
-
-
-
public static class SearchList.SearchResultDisplay
extends com.arsdigita.bebop.SimpleContainer
- -

-A component that displays a simple search result -

- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleContainer
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
SearchList.SearchResultDisplay(SearchResult result) - -
-           
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, generateXML, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchList.SearchResultDisplay

-
-public SearchList.SearchResultDisplay(SearchResult result)
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultRenderer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultRenderer.html deleted file mode 100755 index f5e15a3cc..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.SearchResultRenderer.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - -SearchList.SearchResultRenderer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class SearchList.SearchResultRenderer

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.list.ListCellRenderer
-
-
-
Enclosing class:
SearchList
-
-
-
-
public static class SearchList.SearchResultRenderer
extends Object
implements com.arsdigita.bebop.list.ListCellRenderer
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.list.ListCellRenderer
versionId
-  - - - - - - - - - - -
-Constructor Summary
SearchList.SearchResultRenderer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- com.arsdigita.bebop.ComponentgetComponent(com.arsdigita.bebop.List list, - com.arsdigita.bebop.PageState state, - Object value, - String key, - int index, - boolean isSelected) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchList.SearchResultRenderer

-
-public SearchList.SearchResultRenderer()
-
-
- - - - - - - - -
-Method Detail
- -

-getComponent

-
-public com.arsdigita.bebop.Component getComponent(com.arsdigita.bebop.List list,
-                                                  com.arsdigita.bebop.PageState state,
-                                                  Object value,
-                                                  String key,
-                                                  int index,
-                                                  boolean isSelected)
-
-
-
Specified by:
getComponent in interface com.arsdigita.bebop.list.ListCellRenderer
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.html deleted file mode 100755 index e58af30d6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchList.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - -SearchList (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class SearchList

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.List
-              extended bycom.arsdigita.cms.docmgr.ui.SearchList
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.util.Lockable
-
-
-
-
public class SearchList
extends com.arsdigita.bebop.List
- -

-


- -

- - - - - - - - - - - - - - - -
-Nested Class Summary
-static classSearchList.SearchResultDisplay - -
-          A component that displays a simple search result
-static classSearchList.SearchResultRenderer - -
-           
-  - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.List
EMPTY_MODEL, HORIZONTAL, SELECT_EVENT, SELECTED, versionId, VERTICAL
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
SearchList(com.arsdigita.bebop.list.ListModelBuilder model) - -
-           
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.List
addActionListener, addChangeListener, clearSelection, createChangeListener, fireActionEvent, fireStateChanged, generateXML, getCellRenderer, getEmptyView, getLayout, getModel, getModelBuilder, getSelectedKey, getSelectionModel, getStateParamsAreRegistered, isSelected, register, removeActionListener, removeChangeListener, respond, setCellRenderer, setEmptyView, setLayout, setListData, setListData, setModelBuilder, setSelectedKey, setSelectionModel, setStateParamsAreRegistered
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
children, clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchList

-
-public SearchList(com.arsdigita.bebop.list.ListModelBuilder model)
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchListModelBuilder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchListModelBuilder.html deleted file mode 100755 index e8fdc85f2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchListModelBuilder.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - -SearchListModelBuilder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class SearchListModelBuilder

-
-java.lang.Object
-  extended bycom.arsdigita.util.LockableImpl
-      extended bycom.arsdigita.bebop.list.AbstractListModelBuilder
-          extended bycom.arsdigita.cms.docmgr.ui.SearchListModelBuilder
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.list.ListModelBuilder, com.arsdigita.util.Lockable, com.arsdigita.bebop.PaginationModelBuilder
-
-
-
-
public class SearchListModelBuilder
extends com.arsdigita.bebop.list.AbstractListModelBuilder
implements com.arsdigita.bebop.PaginationModelBuilder
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.list.ListModelBuilder
versionId
-  - - - - - - - - - - -
-Constructor Summary
SearchListModelBuilder(SearchForm form) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- intgetTotalSize(com.arsdigita.bebop.Paginator p, - com.arsdigita.bebop.PageState ps) - -
-           
- booleanisVisible(com.arsdigita.bebop.PageState state) - -
-           
- com.arsdigita.bebop.list.ListModelmakeModel(com.arsdigita.bebop.List list, - com.arsdigita.bebop.PageState state) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.util.LockableImpl
isLocked, lock
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchListModelBuilder

-
-public SearchListModelBuilder(SearchForm form)
-
-
- - - - - - - - -
-Method Detail
- -

-getTotalSize

-
-public int getTotalSize(com.arsdigita.bebop.Paginator p,
-                        com.arsdigita.bebop.PageState ps)
-
-
-
Specified by:
getTotalSize in interface com.arsdigita.bebop.PaginationModelBuilder
-
-
-
-
-
-
- -

-isVisible

-
-public boolean isVisible(com.arsdigita.bebop.PageState state)
-
-
-
Specified by:
isVisible in interface com.arsdigita.bebop.PaginationModelBuilder
-
-
-
-
-
-
- -

-makeModel

-
-public com.arsdigita.bebop.list.ListModel makeModel(com.arsdigita.bebop.List list,
-                                                    com.arsdigita.bebop.PageState state)
-
-
-
Specified by:
makeModel in interface com.arsdigita.bebop.list.ListModelBuilder
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchStringValidationListener.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchStringValidationListener.html deleted file mode 100755 index 8adadfd51..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/SearchStringValidationListener.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - -SearchStringValidationListener (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui -
-Class SearchStringValidationListener

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.SearchStringValidationListener
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.ParameterListener
-
-
-
-
public class SearchStringValidationListener
extends Object
implements com.arsdigita.bebop.event.ParameterListener
- -

-Performs IntermediaSearcher.cleanSearchString() on search string - and adds an error if the cleaned search string is null -

- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.ParameterListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
SearchStringValidationListener() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidvalidate(com.arsdigita.bebop.event.ParameterEvent event) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-SearchStringValidationListener

-
-public SearchStringValidationListener()
-
-
- - - - - - - - -
-Method Detail
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.ParameterEvent event)
-              throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
validate in interface com.arsdigita.bebop.event.ParameterListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkPropertyForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkPropertyForm.html deleted file mode 100755 index 845b34f85..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkPropertyForm.html +++ /dev/null @@ -1,555 +0,0 @@ - - - - - - -DocLinkPropertyForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.authoring -
-Class DocLinkPropertyForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.cms.ui.authoring.BasicItemForm
-                  extended bycom.arsdigita.cms.ui.authoring.BasicPageForm
-                      extended bycom.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class DocLinkPropertyForm
extends com.arsdigita.cms.ui.authoring.BasicPageForm
implements com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormInitListener
- -

-Form to edit the basic properties of an document. This form can be - extended to create forms for Document subclasses. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringDESCRIPTION - -
-           
-static StringEXTERNAL_URL - -
-           
-static StringTARGET_DOC_ID - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ui.authoring.BasicPageForm
LAUNCH_DATE
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ui.authoring.BasicItemForm
LANGUAGE, NAME, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormValidationListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormInitListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocLinkPropertyForm(com.arsdigita.cms.ItemSelectionModel itemModel) - -
-          Creates a new form to edit the Document object specified - by the item selection model passed in.
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidaddWidgets() - -
-          Adds widgets to the form.
- voidinit(com.arsdigita.bebop.event.FormSectionEvent fse) - -
-          Form initialisation hook.
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent fse) - -
-          Form processing hook.
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent fse) - -
-          Form validation hook.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.authoring.BasicPageForm
createContentPage, initBasicWidgets, processBasicWidgets
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.authoring.BasicItemForm
add, add, addSaveCancelSection, generateXML, getAllVersionIDs, getItemSelectionModel, getSaveCancelSection, validateNameUniqueness, validateNameUniquenessWithinCategory
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, process, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, respond, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-TARGET_DOC_ID

-
-public static final String TARGET_DOC_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-EXTERNAL_URL

-
-public static final String EXTERNAL_URL
-
-
-
See Also:
Constant Field Values
-
-
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocLinkPropertyForm

-
-public DocLinkPropertyForm(com.arsdigita.cms.ItemSelectionModel itemModel)
-
-
Creates a new form to edit the Document object specified - by the item selection model passed in. -

-

Parameters:
itemModel - The ItemSelectionModel to use to obtain the - Document to work on
- - - - - - - - -
-Method Detail
- -

-addWidgets

-
-protected void addWidgets()
-
-
Adds widgets to the form. -

-

-
-
-
-
-
-
-
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent fse)
-
-
Form initialisation hook. Fills widgets with data. -

-

-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
-
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent fse)
-              throws com.arsdigita.bebop.FormProcessException
-
-
Form validation hook. Validate data. -

-

-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent fse)
-             throws com.arsdigita.bebop.FormProcessException
-
-
Form processing hook. Saves Event object. -

-

-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkStep.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkStep.html deleted file mode 100755 index fed6c2431..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocLinkStep.html +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - -DocLinkStep (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.authoring -
-Class DocLinkStep

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.PropertyEditor
-                          extended bycom.arsdigita.cms.ui.SecurityPropertyEditor
-                              extended bycom.arsdigita.cms.ui.authoring.SimpleEditStep
-                                  extended bycom.arsdigita.cms.docmgr.ui.authoring.DocLinkStep
-
-
-
All Implemented Interfaces:
com.arsdigita.cms.ui.authoring.AuthoringStepComponent, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.util.Lockable, com.arsdigita.bebop.event.RequestListener
-
-
-
-
public class DocLinkStep
extends com.arsdigita.cms.ui.authoring.SimpleEditStep
- -

-

-
Author:
-
Shashin Shinde - - $Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/authoring/DocLinkStep.java#1 $
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.cms.ui.SecurityPropertyEditor
com.arsdigita.cms.ui.SecurityPropertyEditor.AccessListModel, com.arsdigita.cms.ui.SecurityPropertyEditor.AccessListModelBuilder
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.PropertyEditor
com.arsdigita.bebop.PropertyEditor.DefaultModel, com.arsdigita.bebop.PropertyEditor.DefaultModelBuilder, com.arsdigita.bebop.PropertyEditor.IdentityCellRenderer
-  - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ui.authoring.SimpleEditStep
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocLinkStep(com.arsdigita.cms.ItemSelectionModel itemModel, - com.arsdigita.cms.ui.authoring.AuthoringKitWizard parent) - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.bebop.ComponentgetDocumentPropertySheet(com.arsdigita.cms.ItemSelectionModel itemModel) - -
-          Returns a component that displays the properties of the - Document specified by the ItemSelectionModel passed in.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.authoring.SimpleEditStep
cancelStreamlinedCreation, getItemSelectionModel, getParentWizard, maybeForwardToNextStep, pageRequested, register, setDefaultEditKey
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.SecurityPropertyEditor
add, add, addComponent, addComponent, addListeners, addSecurityListener, getAccessMap, setComponentAccess
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.PropertyEditor
add, add, add, add, addCancelListener, addComponent, addComponent, addProcessListener, addVisibilityListener, getComponent, getDisplayComponent, getDisplayPane, getLabelsMap, getList, getModel, getModelBuilder, getSelectedComponentKey, lock, setDisplayComponent, setModelBuilder, showComponent, showDisplayPane
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, generateXML, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.cms.ui.authoring.AuthoringStepComponent
addCompletionListener
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocLinkStep

-
-public DocLinkStep(com.arsdigita.cms.ItemSelectionModel itemModel,
-                   com.arsdigita.cms.ui.authoring.AuthoringKitWizard parent)
-
-
- - - - - - - - -
-Method Detail
- -

-getDocumentPropertySheet

-
-public static com.arsdigita.bebop.Component getDocumentPropertySheet(com.arsdigita.cms.ItemSelectionModel itemModel)
-
-
Returns a component that displays the properties of the - Document specified by the ItemSelectionModel passed in. -

-

-
Parameters:
itemModel - The ItemSelectionModel to use -
Returns:
A component to display the state of the basic properties - of the release
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.FileFormatter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.FileFormatter.html deleted file mode 100755 index 729964297..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.FileFormatter.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - -DocumentPropertiesStep.FileFormatter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.authoring -
-Class DocumentPropertiesStep.FileFormatter

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter
-
-
-
All Implemented Interfaces:
com.arsdigita.toolbox.ui.DomainObjectPropertySheet.AttributeFormatter
-
-
-
Enclosing class:
DocumentPropertiesStep
-
-
-
-
public static class DocumentPropertiesStep.FileFormatter
extends Object
implements com.arsdigita.toolbox.ui.DomainObjectPropertySheet.AttributeFormatter
- -

-


- -

- - - - - - - - - - - - - - - - - - - -
-Constructor Summary
DocumentPropertiesStep.FileFormatter() - -
-           
DocumentPropertiesStep.FileFormatter(String def) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- Stringformat(com.arsdigita.domain.DomainObject obj, - String attribute, - com.arsdigita.bebop.PageState state) - -
-           
- StringgetDefaultString() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocumentPropertiesStep.FileFormatter

-
-public DocumentPropertiesStep.FileFormatter()
-
-
-
- -

-DocumentPropertiesStep.FileFormatter

-
-public DocumentPropertiesStep.FileFormatter(String def)
-
-
- - - - - - - - -
-Method Detail
- -

-getDefaultString

-
-public String getDefaultString()
-
-
-
-
-
-
-
-
-
- -

-format

-
-public String format(com.arsdigita.domain.DomainObject obj,
-                     String attribute,
-                     com.arsdigita.bebop.PageState state)
-
-
-
Specified by:
format in interface com.arsdigita.toolbox.ui.DomainObjectPropertySheet.AttributeFormatter
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.html deleted file mode 100755 index 29780736d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertiesStep.html +++ /dev/null @@ -1,479 +0,0 @@ - - - - - - -DocumentPropertiesStep (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.authoring -
-Class DocumentPropertiesStep

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.PropertyEditor
-                          extended bycom.arsdigita.cms.ui.SecurityPropertyEditor
-                              extended bycom.arsdigita.cms.ui.authoring.SimpleEditStep
-                                  extended bycom.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep
-
-
-
All Implemented Interfaces:
com.arsdigita.cms.ui.authoring.AuthoringStepComponent, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.util.Lockable, com.arsdigita.bebop.event.RequestListener
-
-
-
-
public class DocumentPropertiesStep
extends com.arsdigita.cms.ui.authoring.SimpleEditStep
- -

-Authoring step to edit the simple attributes of the Document content - type (and its subclasses). The attributes edited are 'name', 'title', - 'document date', 'location', 'lead', 'main contributor', 'document type', 'map link', and 'cost'. This authoring step replaces - the com.arsdigita.ui.authoring.PageEdit step for this type. -

- -

-


- -

- - - - - - - - - - - -
-Nested Class Summary
-static classDocumentPropertiesStep.FileFormatter - -
-           
- - - - - - - -
Nested classes inherited from class com.arsdigita.cms.ui.SecurityPropertyEditor
com.arsdigita.cms.ui.SecurityPropertyEditor.AccessListModel, com.arsdigita.cms.ui.SecurityPropertyEditor.AccessListModelBuilder
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.PropertyEditor
com.arsdigita.bebop.PropertyEditor.DefaultModel, com.arsdigita.bebop.PropertyEditor.DefaultModelBuilder, com.arsdigita.bebop.PropertyEditor.IdentityCellRenderer
-  - - - - - - - - - - - -
-Field Summary
-static StringEDIT_SHEET_NAME - -
-          The name of the editing sheet added to this step
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ui.authoring.SimpleEditStep
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocumentPropertiesStep(com.arsdigita.cms.ItemSelectionModel itemModel, - com.arsdigita.cms.ui.authoring.AuthoringKitWizard parent) - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.bebop.ComponentgetDocumentPropertySheet(com.arsdigita.cms.ItemSelectionModel itemModel) - -
-          Returns a component that displays the properties of the - Document specified by the ItemSelectionModel passed in.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.authoring.SimpleEditStep
cancelStreamlinedCreation, getItemSelectionModel, getParentWizard, maybeForwardToNextStep, pageRequested, register, setDefaultEditKey
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.SecurityPropertyEditor
add, add, addComponent, addComponent, addListeners, addSecurityListener, getAccessMap, setComponentAccess
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.PropertyEditor
add, add, add, add, addCancelListener, addComponent, addComponent, addProcessListener, addVisibilityListener, getComponent, getDisplayComponent, getDisplayPane, getLabelsMap, getList, getModel, getModelBuilder, getSelectedComponentKey, lock, setDisplayComponent, setModelBuilder, showComponent, showDisplayPane
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, generateXML, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.cms.ui.authoring.AuthoringStepComponent
addCompletionListener
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-EDIT_SHEET_NAME

-
-public static String EDIT_SHEET_NAME
-
-
The name of the editing sheet added to this step -

-

-
-
- - - - - - - - -
-Constructor Detail
- -

-DocumentPropertiesStep

-
-public DocumentPropertiesStep(com.arsdigita.cms.ItemSelectionModel itemModel,
-                              com.arsdigita.cms.ui.authoring.AuthoringKitWizard parent)
-
-
- - - - - - - - -
-Method Detail
- -

-getDocumentPropertySheet

-
-public static com.arsdigita.bebop.Component getDocumentPropertySheet(com.arsdigita.cms.ItemSelectionModel itemModel)
-
-
Returns a component that displays the properties of the - Document specified by the ItemSelectionModel passed in. -

-

-
Parameters:
itemModel - The ItemSelectionModel to use -
Returns:
A component to display the state of the basic properties - of the release
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertyForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertyForm.html deleted file mode 100755 index 6bffc87a9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/DocumentPropertyForm.html +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - -DocumentPropertyForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.authoring -
-Class DocumentPropertyForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.cms.ui.authoring.BasicItemForm
-                  extended bycom.arsdigita.cms.ui.authoring.BasicPageForm
-                      extended bycom.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class DocumentPropertyForm
extends com.arsdigita.cms.ui.authoring.BasicPageForm
implements com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormInitListener
- -

-Form to edit the basic properties of an document. This form can be - extended to create forms for Document subclasses. -

- -

-


- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringDESCRIPTION - -
-           
-static StringFILE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ui.authoring.BasicPageForm
LAUNCH_DATE
- - - - - - - -
Fields inherited from class com.arsdigita.cms.ui.authoring.BasicItemForm
LANGUAGE, NAME, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormInitListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormValidationListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocumentPropertyForm(com.arsdigita.cms.ItemSelectionModel itemModel) - -
-          Creates a new form to edit the Document object specified - by the item selection model passed in.
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidaddWidgets() - -
-          Adds widgets to the form.
- voidinit(com.arsdigita.bebop.event.FormSectionEvent fse) - -
-          Form initialisation hook.
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent fse) - -
-          Form processing hook.
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.authoring.BasicPageForm
createContentPage, initBasicWidgets, processBasicWidgets
- - - - - - - -
Methods inherited from class com.arsdigita.cms.ui.authoring.BasicItemForm
add, add, addSaveCancelSection, generateXML, getAllVersionIDs, getItemSelectionModel, getSaveCancelSection, validateNameUniqueness, validateNameUniquenessWithinCategory
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, process, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, respond, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-FILE

-
-public static final String FILE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocumentPropertyForm

-
-public DocumentPropertyForm(com.arsdigita.cms.ItemSelectionModel itemModel)
-
-
Creates a new form to edit the Document object specified - by the item selection model passed in. -

-

Parameters:
itemModel - The ItemSelectionModel to use to obtain the - Document to work on
- - - - - - - - -
-Method Detail
- -

-addWidgets

-
-protected void addWidgets()
-
-
Adds widgets to the form. -

-

-
-
-
-
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent e)
-              throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent fse)
-
-
Form initialisation hook. Fills widgets with data. -

-

-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
-
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent fse)
-             throws com.arsdigita.bebop.FormProcessException
-
-
Form processing hook. Saves Event object. -

-

-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/FileDisplay.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/FileDisplay.html deleted file mode 100755 index 8151c89b4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/FileDisplay.html +++ /dev/null @@ -1,365 +0,0 @@ - - - - - - -FileDisplay (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.authoring -
-Class FileDisplay

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.cms.docmgr.ui.authoring.FileDisplay
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.util.Lockable
-
-
-
-
public class FileDisplay
extends com.arsdigita.bebop.SimpleComponent
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr, versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
FileDisplay() - -
-          Construct a new FileDisplay
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidgenerateFilePropertiesXML(com.arsdigita.cms.FileAsset asset, - com.arsdigita.bebop.PageState state, - com.arsdigita.xml.Element element) - -
-           
- voidgenerateXML(com.arsdigita.bebop.PageState state, - com.arsdigita.xml.Element parent) - -
-           
- voidsetFileAsset(com.arsdigita.cms.FileAsset asset) - -
-           
- voidsetName(String name) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
children, clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-FileDisplay

-
-public FileDisplay()
-
-
Construct a new FileDisplay -

-

- - - - - - - - -
-Method Detail
- -

-setFileAsset

-
-public void setFileAsset(com.arsdigita.cms.FileAsset asset)
-
-
-
-
-
-
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState state,
-                        com.arsdigita.xml.Element parent)
-
-
-
-
-
-
- -

-generateFilePropertiesXML

-
-protected void generateFilePropertiesXML(com.arsdigita.cms.FileAsset asset,
-                                         com.arsdigita.bebop.PageState state,
-                                         com.arsdigita.xml.Element element)
-
-
-
-
-
-
- -

-setName

-
-public void setName(String name)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkPropertyForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkPropertyForm.html deleted file mode 100755 index b5ad078c3..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkPropertyForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkStep.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkStep.html deleted file mode 100755 index 8ff4f97c7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocLinkStep.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.authoring.DocLinkStep (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.authoring.DocLinkStep

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring.DocLinkStep -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.FileFormatter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.FileFormatter.html deleted file mode 100755 index b085f0c9d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.FileFormatter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.html deleted file mode 100755 index 2865d9abb..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertiesStep.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertyForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertyForm.html deleted file mode 100755 index 224df4d48..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/DocumentPropertyForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/FileDisplay.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/FileDisplay.html deleted file mode 100755 index 7b89c1406..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/class-use/FileDisplay.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.authoring.FileDisplay

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring.FileDisplay -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-frame.html deleted file mode 100755 index 4c1e290f6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-frame.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.authoring (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.ui.authoring - - - - -
-Classes  - -
-DocLinkPropertyForm -
-DocLinkStep -
-DocumentPropertiesStep -
-DocumentPropertiesStep.FileFormatter -
-DocumentPropertyForm -
-FileDisplay
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-summary.html deleted file mode 100755 index dd1131b90..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-summary.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.authoring (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.ui.authoring -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
DocLinkPropertyFormForm to edit the basic properties of an document.
DocLinkStep 
DocumentPropertiesStepAuthoring step to edit the simple attributes of the Document content - type (and its subclasses).
DocumentPropertiesStep.FileFormatter 
DocumentPropertyFormForm to edit the basic properties of an document.
FileDisplay 
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-tree.html deleted file mode 100755 index 990ab1d15..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-tree.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.authoring Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.ui.authoring -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.cms.ui.authoring.BasicItemForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
              -
            • class com.arsdigita.cms.ui.authoring.BasicPageForm
                -
              • class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
              • class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener) -
              -
            -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.bebop.PropertyEditor
                  -
                • class com.arsdigita.cms.ui.SecurityPropertyEditor
                    -
                  • class com.arsdigita.cms.ui.authoring.SimpleEditStep (implements com.arsdigita.cms.ui.authoring.AuthoringStepComponent, com.arsdigita.bebop.event.RequestListener) - -
                  -
                -
              -
            -
          -
        -
      -
    • class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter (implements com.arsdigita.toolbox.ui.DomainObjectPropertySheet.AttributeFormatter) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-use.html deleted file mode 100755 index 369890a9a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/authoring/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.ui.authoring (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.ui.authoring

-
-No usage of com.arsdigita.cms.docmgr.ui.authoring -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileInfoPropertiesPane.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileInfoPropertiesPane.html deleted file mode 100755 index 4f4924630..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileInfoPropertiesPane.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane

-
-No usage of com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileRevisionsTable.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileRevisionsTable.html deleted file mode 100755 index 70de7d529..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFileRevisionsTable.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable

-
-No usage of com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFolderEdit.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFolderEdit.html deleted file mode 100755 index 742bd2f10..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/BrowseFolderEdit.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.BrowseFolderEdit

-
-No usage of com.arsdigita.cms.docmgr.ui.BrowseFolderEdit -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoriesPrintListener.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoriesPrintListener.html deleted file mode 100755 index 4d8ed4d60..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoriesPrintListener.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.CategoriesPrintListener

-
-No usage of com.arsdigita.cms.docmgr.ui.CategoriesPrintListener -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocModelBuilder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocModelBuilder.html deleted file mode 100755 index bcf8766f5..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocModelBuilder.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder

-
- - - - - - - - - -
-Packages that use CategoryDocModelBuilder
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of CategoryDocModelBuilder in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - -
Constructors in com.arsdigita.cms.docmgr.ui with parameters of type CategoryDocModelBuilder
CategoryItemsBrowser(CategoryDocModelBuilder cdmb, - com.arsdigita.kernel.ui.ACSObjectSelectionModel selCategory, - String context, - com.arsdigita.cms.ContentSection cs) - -
-          Construct a new CategoryItemsBrowser -
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocsNavigatorPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocsNavigatorPortlet.html deleted file mode 100755 index 7e8b3540b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryDocsNavigatorPortlet.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet

-
-No usage of com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryItemsBrowser.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryItemsBrowser.html deleted file mode 100755 index b74df3442..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CategoryItemsBrowser.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser

-
-No usage of com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkPane.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkPane.html deleted file mode 100755 index 3d4beddd5..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkPane.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.CreateDocLinkPane

-
-No usage of com.arsdigita.cms.docmgr.ui.CreateDocLinkPane -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkSearchTable.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkSearchTable.html deleted file mode 100755 index 18d21cd17..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/CreateDocLinkSearchTable.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable

-
-No usage of com.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DCNDispatcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DCNDispatcher.html deleted file mode 100755 index 5d273b9ec..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DCNDispatcher.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DCNDispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DCNDispatcher

-
-No usage of com.arsdigita.cms.docmgr.ui.DCNDispatcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMConstants.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMConstants.html deleted file mode 100755 index a8b99ca11..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMConstants.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.cms.docmgr.ui.DMConstants (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.cms.docmgr.ui.DMConstants

-
- - - - - - - - - - - - - -
-Packages that use DMConstants
com.arsdigita.cms.docmgr.ui  
com.arsdigita.cms.docmgr.ui.tree  
-  -

- - - - - -
-Uses of DMConstants in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Classes in com.arsdigita.cms.docmgr.ui that implement DMConstants
- classBrowseFileInfoPropertiesPane - -
-           
- classBrowseFileRevisionsTable - -
-           
- classBrowseFolderEdit - -
-           
- classCategoryDocModelBuilder - -
-          Iterates through all the children of the given Category
- classCategoryDocsNavigatorPortlet - -
-          Portlet showing the category tree used by Documents.
- classCategoryItemsBrowser - -
-          Displays Documents for a given Category
- classCreateDocLinkPane - -
-          A UI Container class used to create instances of DocLink object type.
- classCreateDocLinkSearchTable - -
-          A UI class used to create the objects of type DocLink.
- classDCNDispatcher - -
-          Dispatcher for document category navigator.
- classDMDispatcher - -
-          Dispatcher for document manager application.
- classDMUtils - -
-          Public static helper methods and classes for recurring tasks - in Document Manager UI.
- classDocmgrBasePage - -
-          BasePage class
- classFileDimensionalNavbar - -
-           
- classFileUploadForm - -
-          Form to upload and submit a file to the document repository.
- classLegacyCategoryDocsNavigatorPortlet - -
-          Portlet showing the category tree used by Documents.
-  -

- - - - - -
-Uses of DMConstants in com.arsdigita.cms.docmgr.ui.tree
-  -

- - - - - - - - - - - - - - - - - -
Classes in com.arsdigita.cms.docmgr.ui.tree that implement DMConstants
- classDocFoldersContentTree - -
-          Tree model that incorporates the views of all subsribed repositories.
- classDocFoldersContentTreeModel - -
-          Tree model that incorporates the views of all subsribed repositories.
- classRepositoryTreeModel - -
-          Tree model that incorporates the views of all subsribed repositories.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMDispatcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMDispatcher.html deleted file mode 100755 index 5d8879ba2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMDispatcher.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DMDispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DMDispatcher

-
- - - - - - - - - -
-Packages that use DMDispatcher
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of DMDispatcher in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - - -
Subclasses of DMDispatcher in com.arsdigita.cms.docmgr.ui
- classDCNDispatcher - -
-          Dispatcher for document category navigator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.DateFormat.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.DateFormat.html deleted file mode 100755 index fa0d37ab9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.DateFormat.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat

-
-No usage of com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.FileSize.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.FileSize.html deleted file mode 100755 index d597a9c3e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.FileSize.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DMUtils.FileSize

-
-No usage of com.arsdigita.cms.docmgr.ui.DMUtils.FileSize -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.html deleted file mode 100755 index d3fba733c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DMUtils.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DMUtils (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DMUtils

-
-No usage of com.arsdigita.cms.docmgr.ui.DMUtils -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html deleted file mode 100755 index ae34d6e3e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter

-
-No usage of com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index e0f66fb23..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter

-
-No usage of com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html deleted file mode 100755 index 8e254f7a4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter

-
-No usage of com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.html deleted file mode 100755 index e913809a7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/DocmgrBasePage.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.DocmgrBasePage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.DocmgrBasePage

-
-No usage of com.arsdigita.cms.docmgr.ui.DocmgrBasePage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileDimensionalNavbar.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileDimensionalNavbar.html deleted file mode 100755 index 563d2386a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileDimensionalNavbar.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.FileDimensionalNavbar (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.FileDimensionalNavbar

-
-No usage of com.arsdigita.cms.docmgr.ui.FileDimensionalNavbar -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileUploadForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileUploadForm.html deleted file mode 100755 index e5c91f27c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/FileUploadForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.FileUploadForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.FileUploadForm

-
-No usage of com.arsdigita.cms.docmgr.ui.FileUploadForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/LegacyCategoryDocsNavigatorPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/LegacyCategoryDocsNavigatorPortlet.html deleted file mode 100755 index fd74f1d61..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/LegacyCategoryDocsNavigatorPortlet.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet

-
-No usage of com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/PagingControlContainer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/PagingControlContainer.html deleted file mode 100755 index a5e4dd549..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/PagingControlContainer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.PagingControlContainer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.PagingControlContainer

-
-No usage of com.arsdigita.cms.docmgr.ui.PagingControlContainer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html deleted file mode 100755 index 8b5a2959e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet

-
-No usage of com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchForm.html deleted file mode 100755 index ed93af323..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchForm.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.cms.docmgr.ui.SearchForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.cms.docmgr.ui.SearchForm

-
- - - - - - - - - -
-Packages that use SearchForm
com.arsdigita.cms.docmgr.ui  
-  -

- - - - - -
-Uses of SearchForm in com.arsdigita.cms.docmgr.ui
-  -

- - - - - - - - -
Constructors in com.arsdigita.cms.docmgr.ui with parameters of type SearchForm
SearchListModelBuilder(SearchForm form) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultDisplay.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultDisplay.html deleted file mode 100755 index 025c0d699..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultDisplay.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay

-
-No usage of com.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultRenderer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultRenderer.html deleted file mode 100755 index 77422fe77..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.SearchResultRenderer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer

-
-No usage of com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.html deleted file mode 100755 index ee9f9ff80..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchList.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.SearchList (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.SearchList

-
-No usage of com.arsdigita.cms.docmgr.ui.SearchList -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchListModelBuilder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchListModelBuilder.html deleted file mode 100755 index 3acfbde39..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchListModelBuilder.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.SearchListModelBuilder

-
-No usage of com.arsdigita.cms.docmgr.ui.SearchListModelBuilder -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchStringValidationListener.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchStringValidationListener.html deleted file mode 100755 index ca3381e13..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/class-use/SearchStringValidationListener.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.SearchStringValidationListener (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.SearchStringValidationListener

-
-No usage of com.arsdigita.cms.docmgr.ui.SearchStringValidationListener -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocFolderNavbar.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocFolderNavbar.html deleted file mode 100755 index 10c7cbf18..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocFolderNavbar.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - -DocFolderNavbar (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.content -
-Class DocFolderNavbar

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.cms.docmgr.ui.content.DocFolderNavbar
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.util.Lockable
-
-
-
-
public class DocFolderNavbar
extends com.arsdigita.bebop.SimpleComponent
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr, versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocFolderNavbar() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidgenerateXML(com.arsdigita.bebop.PageState state, - com.arsdigita.xml.Element p) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
children, clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFolderNavbar

-
-public DocFolderNavbar()
-
-
- - - - - - - - -
-Method Detail
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState state,
-                        com.arsdigita.xml.Element p)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.html deleted file mode 100755 index bcc0976de..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - -DocIndexPage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.content -
-Class DocIndexPage

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Page
-                      extended bycom.arsdigita.cms.dispatcher.CMSPage
-                          extended bycom.arsdigita.cms.docmgr.ui.content.DocIndexPage
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.dispatcher.Dispatcher, EventListener, com.arsdigita.util.Lockable, com.arsdigita.bebop.event.RequestListener, com.arsdigita.cms.dispatcher.ResourceHandler
-
-
-
-
public class DocIndexPage
extends com.arsdigita.cms.dispatcher.CMSPage
implements com.arsdigita.bebop.event.RequestListener
- -

-

A public page that displays all items in the current content - section, and allows to search or browse them.

-

- -

-

-
Version:
-
$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.java#1 $
-
Author:
-
Stanislav Freidin, Michael Pih, Justin Ross <jross@redhat.com>
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.CMSPage
ASSETS, CMS_XML_NS, PAGE_CLASS
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Page
m_invisible, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocIndexPage() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected static com.arsdigita.globalization.GlobalizedMessagegz(String key) - -
-           
- voidpageRequested(com.arsdigita.bebop.event.RequestEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.CMSPage
buildPage, dispatch, generateXMLHelper, getContentItem, getContentItem, getContentSection, getContentSection, getCurrentUser, getXMLParameter, init, setXMLParameter
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Page
add, add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, lock, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocIndexPage

-
-public DocIndexPage()
-
-
- - - - - - - - -
-Method Detail
- -

-pageRequested

-
-public void pageRequested(com.arsdigita.bebop.event.RequestEvent e)
-
-
-
Specified by:
pageRequested in interface com.arsdigita.bebop.event.RequestListener
-
-
-
-
-
-
- -

-gz

-
-protected static final com.arsdigita.globalization.GlobalizedMessage gz(String key)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocFolderNavbar.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocFolderNavbar.html deleted file mode 100755 index 682849005..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocFolderNavbar.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar

-
-No usage of com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocIndexPage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocIndexPage.html deleted file mode 100755 index 472480e46..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/class-use/DocIndexPage.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.content.DocIndexPage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.content.DocIndexPage

-
-No usage of com.arsdigita.cms.docmgr.ui.content.DocIndexPage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-frame.html deleted file mode 100755 index 4aa9aff59..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.content (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.ui.content - - - - -
-Classes  - -
-DocFolderNavbar -
-DocIndexPage
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-summary.html deleted file mode 100755 index 606fbe603..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-summary.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.content (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.ui.content -

- - - - - - - - - - - - - -
-Class Summary
DocFolderNavbar 
DocIndexPageA public page that displays all items in the current content - section, and allows to search or browse them.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-tree.html deleted file mode 100755 index bffbbb70e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-tree.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.content Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.ui.content -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.cms.dispatcher.CMSPage (implements com.arsdigita.cms.dispatcher.ResourceHandler) -
                  -
                • class com.arsdigita.cms.docmgr.ui.content.DocIndexPage (implements com.arsdigita.bebop.event.RequestListener) -
                -
              -
            -
          -
        -
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-use.html deleted file mode 100755 index 095e96246..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/content/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.ui.content (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.ui.content

-
-No usage of com.arsdigita.cms.docmgr.ui.content -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-frame.html deleted file mode 100755 index 5bb3d04a9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-frame.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.ui - - - - -
-Interfaces  - -
-DMConstants -
-SearchForm
- - - - - - -
-Classes  - -
-BrowseFileInfoPropertiesPane -
-BrowseFileRevisionsTable -
-BrowseFolderEdit -
-CategoriesPrintListener -
-CategoryDocModelBuilder -
-CategoryDocsNavigatorPortlet -
-CategoryItemsBrowser -
-CreateDocLinkPane -
-CreateDocLinkSearchTable -
-DCNDispatcher -
-DMDispatcher -
-DMUtils -
-DMUtils.DateFormat -
-DMUtils.FileSize -
-DocmgrBasePage -
-FileDimensionalNavbar -
-FileUploadForm -
-LegacyCategoryDocsNavigatorPortlet -
-PagingControlContainer -
-RecentUpdatedDocsPortlet -
-SearchList -
-SearchList.SearchResultDisplay -
-SearchList.SearchResultRenderer -
-SearchListModelBuilder -
-SearchStringValidationListener
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-summary.html deleted file mode 100755 index b8074b9bc..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-summary.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.ui -

- - - - - - - - - - - - - -
-Interface Summary
DMConstantsVariously used constant objects used in Document Manager UI
SearchForm 
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
BrowseFileInfoPropertiesPane 
BrowseFileRevisionsTable 
BrowseFolderEdit 
CategoriesPrintListener 
CategoryDocModelBuilderIterates through all the children of the given Category
CategoryDocsNavigatorPortletPortlet showing the category tree used by Documents.
CategoryItemsBrowserDisplays Documents for a given Category
CreateDocLinkPaneA UI Container class used to create instances of DocLink object type.
CreateDocLinkSearchTableA UI class used to create the objects of type DocLink.
DCNDispatcherDispatcher for document category navigator.
DMDispatcherDispatcher for document manager application.
DMUtilsPublic static helper methods and classes for recurring tasks - in Document Manager UI.
DMUtils.DateFormatClass to render java.util.Date in request specific locale - and pattern.
DMUtils.FileSizeClass to describe and format file sizes in request specific locales
DocmgrBasePageBasePage class
FileDimensionalNavbar 
FileUploadFormForm to upload and submit a file to the document repository.
LegacyCategoryDocsNavigatorPortletPortlet showing the category tree used by Documents.
PagingControlContainer 
RecentUpdatedDocsPortletPortlet showing the n most recently updated documents of a - portal.
SearchList 
SearchList.SearchResultDisplayA component that displays a simple search result
SearchList.SearchResultRenderer 
SearchListModelBuilder 
SearchStringValidationListenerPerforms IntermediaSearcher.cleanSearchString() on search string - and adds an error if the cleaned search string is null
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-tree.html deleted file mode 100755 index afc7eff74..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-tree.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.ui -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder (implements com.arsdigita.toolbox.ui.DataQueryBuilder, com.arsdigita.cms.docmgr.ui.DMConstants) -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) -
              -
            • class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            • class com.arsdigita.cms.docmgr.ui.FileUploadForm (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            -
          -
        • class com.arsdigita.bebop.List (implements com.arsdigita.bebop.util.BebopConstants) - -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) - -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) - -
            • class com.arsdigita.bebop.Table (implements com.arsdigita.bebop.util.BebopConstants) - -
            -
          -
        -
      -
    • class com.arsdigita.cms.docmgr.ui.DMUtils (implements com.arsdigita.cms.docmgr.ui.DMConstants) -
    • class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat
    • class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize
    • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.domain.DomainObject -
    • class com.arsdigita.util.LockableImpl (implements com.arsdigita.util.Lockable) -
        -
      • class com.arsdigita.bebop.list.AbstractListModelBuilder (implements com.arsdigita.bebop.list.ListModelBuilder) -
          -
        • class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder (implements com.arsdigita.bebop.PaginationModelBuilder) -
        -
      -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher
          -
        • class com.arsdigita.bebop.BebopMapDispatcher -
        -
      -
    • class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer (implements com.arsdigita.bebop.list.ListCellRenderer) -
    • class com.arsdigita.cms.docmgr.ui.SearchStringValidationListener (implements com.arsdigita.bebop.event.ParameterListener) -
    -
-

-Interface Hierarchy -

-
    -
  • interface com.arsdigita.cms.docmgr.ui.DMConstants
  • interface com.arsdigita.util.Lockable
      -
    • interface com.arsdigita.bebop.Component
        -
      • interface com.arsdigita.bebop.Container
          -
        • interface com.arsdigita.cms.docmgr.ui.SearchForm
        -
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-use.html deleted file mode 100755 index fe31bd302..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/package-use.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.ui (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.ui

-
- - - - - - - - - - - - - -
-Packages that use com.arsdigita.cms.docmgr.ui
com.arsdigita.cms.docmgr.ui  
com.arsdigita.cms.docmgr.ui.tree  
-  -

- - - - - - - - - - - - - - - - - -
-Classes in com.arsdigita.cms.docmgr.ui used by com.arsdigita.cms.docmgr.ui
CategoryDocModelBuilder - -
-          Iterates through all the children of the given Category
DMConstants - -
-          Variously used constant objects used in Document Manager UI
DMDispatcher - -
-          Dispatcher for document manager application.
SearchForm - -
-           
-  -

- - - - - - - - -
-Classes in com.arsdigita.cms.docmgr.ui used by com.arsdigita.cms.docmgr.ui.tree
DMConstants - -
-          Variously used constant objects used in Document Manager UI
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderAppCellRenderer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderAppCellRenderer.html deleted file mode 100755 index 1a15ee5ba..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderAppCellRenderer.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - -DocFolderAppCellRenderer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class DocFolderAppCellRenderer

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.tree.TreeCellRenderer
-
-
-
-
public class DocFolderAppCellRenderer
extends Object
implements com.arsdigita.bebop.tree.TreeCellRenderer
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.tree.TreeCellRenderer
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocFolderAppCellRenderer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- com.arsdigita.bebop.ComponentgetComponent(com.arsdigita.bebop.Tree tree, - com.arsdigita.bebop.PageState state, - Object value, - boolean isSelected, - boolean isExpanded, - boolean isLeaf, - Object key) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFolderAppCellRenderer

-
-public DocFolderAppCellRenderer()
-
-
- - - - - - - - -
-Method Detail
- -

-getComponent

-
-public com.arsdigita.bebop.Component getComponent(com.arsdigita.bebop.Tree tree,
-                                                  com.arsdigita.bebop.PageState state,
-                                                  Object value,
-                                                  boolean isSelected,
-                                                  boolean isExpanded,
-                                                  boolean isLeaf,
-                                                  Object key)
-
-
-
Specified by:
getComponent in interface com.arsdigita.bebop.tree.TreeCellRenderer
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderContentTreeRenderer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderContentTreeRenderer.html deleted file mode 100755 index 0861e79a4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderContentTreeRenderer.html +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - -DocFolderContentTreeRenderer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class DocFolderContentTreeRenderer

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.tree.TreeCellRenderer
-
-
-
-
public class DocFolderContentTreeRenderer
extends Object
implements com.arsdigita.bebop.tree.TreeCellRenderer
- -

-Customized Bebop Tree that shows the accessible Repositories - at the root level and the inidividual File trees beneath it. - The root level is constructed expanded. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.tree.TreeCellRenderer
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocFolderContentTreeRenderer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- com.arsdigita.bebop.ComponentgetComponent(com.arsdigita.bebop.Tree tree, - com.arsdigita.bebop.PageState state, - Object value, - boolean isSelected, - boolean isExpanded, - boolean isLeaf, - Object key) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFolderContentTreeRenderer

-
-public DocFolderContentTreeRenderer()
-
-
- - - - - - - - -
-Method Detail
- -

-getComponent

-
-public com.arsdigita.bebop.Component getComponent(com.arsdigita.bebop.Tree tree,
-                                                  com.arsdigita.bebop.PageState state,
-                                                  Object value,
-                                                  boolean isSelected,
-                                                  boolean isExpanded,
-                                                  boolean isLeaf,
-                                                  Object key)
-
-
-
Specified by:
getComponent in interface com.arsdigita.bebop.tree.TreeCellRenderer
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderIterator.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderIterator.html deleted file mode 100755 index 28c4ad0ef..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderIterator.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - -DocFolderIterator (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class DocFolderIterator

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.tree.DocFolderIterator
-
-
-
All Implemented Interfaces:
Iterator
-
-
-
-
public class DocFolderIterator
extends Object
implements Iterator
- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
DocFolderIterator(com.arsdigita.cms.Folder.ItemCollection collection) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- booleanhasNext() - -
-           
- Objectnext() - -
-           
- voidremove() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFolderIterator

-
-public DocFolderIterator(com.arsdigita.cms.Folder.ItemCollection collection)
-
-
- - - - - - - - -
-Method Detail
- -

-hasNext

-
-public boolean hasNext()
-
-
-
Specified by:
hasNext in interface Iterator
-
-
-
-
-
-
- -

-next

-
-public Object next()
-
-
-
Specified by:
next in interface Iterator
-
-
-
-
-
-
- -

-remove

-
-public void remove()
-
-
-
Specified by:
remove in interface Iterator
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderTreeNode.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderTreeNode.html deleted file mode 100755 index cc7e578b4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFolderTreeNode.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - -DocFolderTreeNode (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class DocFolderTreeNode

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.tree.TreeNode
-
-
-
-
public class DocFolderTreeNode
extends Object
implements com.arsdigita.bebop.tree.TreeNode
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.tree.TreeNode
versionId
-  - - - - - - - - - - - - - -
-Constructor Summary
DocFolderTreeNode() - -
-           
DocFolderTreeNode(DocFolder df) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- ObjectgetElement() - -
-           
- DocFoldergetFolder() - -
-           
- ObjectgetKey() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFolderTreeNode

-
-public DocFolderTreeNode()
-
-
-
- -

-DocFolderTreeNode

-
-public DocFolderTreeNode(DocFolder df)
-
-
- - - - - - - - -
-Method Detail
- -

-getKey

-
-public Object getKey()
-
-
-
Specified by:
getKey in interface com.arsdigita.bebop.tree.TreeNode
-
-
-
-
-
-
- -

-getElement

-
-public Object getElement()
-
-
-
Specified by:
getElement in interface com.arsdigita.bebop.tree.TreeNode
-
-
-
-
-
-
- -

-getFolder

-
-public DocFolder getFolder()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTree.html deleted file mode 100755 index 712280ef9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTree.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - -DocFoldersContentTree (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class DocFoldersContentTree

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.Tree
-              extended bycom.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, DMConstants, com.arsdigita.util.Lockable, com.arsdigita.bebop.Resettable
-
-
-
-
public class DocFoldersContentTree
extends com.arsdigita.bebop.Tree
implements DMConstants
- -

-Tree model that incorporates the views of all subsribed repositories. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.Tree
com.arsdigita.bebop.Tree.TreeSingleSelectionModel
-  - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Tree
m_builder, m_currentState, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
DocFoldersContentTree(com.arsdigita.bebop.tree.TreeModel m) - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidexpandPath(com.arsdigita.bebop.PageState state) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Tree
addActionListener, addChangeListener, addTreeExpansionListener, clearExpansionState, clearSelection, collapse, createChangeListener, expand, fireActionEvent, fireStateChanged, fireTreeCollapsed, fireTreeExpanded, generateTree, generateXML, getCellRenderer, getModelBuilder, getSelectedKey, getSelectionModel, getTreeModel, getTreeModel, hasExpansionState, isCollapsed, isSelected, lock, register, removeActionListener, removeChangeListener, removeTreeExpansionListener, reset, respond, setCellRenderer, setModelBuilder, setSelectedKey, setSelectionModel, setTreeModel
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
children, clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFoldersContentTree

-
-public DocFoldersContentTree(com.arsdigita.bebop.tree.TreeModel m)
-
-
- - - - - - - - -
-Method Detail
- -

-expandPath

-
-public void expandPath(com.arsdigita.bebop.PageState state)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTreeModel.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTreeModel.html deleted file mode 100755 index 6c0f81cb9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/DocFoldersContentTreeModel.html +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - -DocFoldersContentTreeModel (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class DocFoldersContentTreeModel

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel
-
-
-
All Implemented Interfaces:
DMConstants, com.arsdigita.bebop.tree.TreeModel
-
-
-
-
public class DocFoldersContentTreeModel
extends Object
implements com.arsdigita.bebop.tree.TreeModel, DMConstants
- -

-Tree model that incorporates the views of all subsribed repositories. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.tree.TreeModel
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
DocFoldersContentTreeModel() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- IteratorgetChildren(com.arsdigita.bebop.tree.TreeNode n, - com.arsdigita.bebop.PageState state) - -
-          Get direct children in this node which are folders in this application
- com.arsdigita.bebop.tree.TreeNodegetRoot(com.arsdigita.bebop.PageState state) - -
-          Obtain the root folder of the tree
- booleanhasChildren(com.arsdigita.bebop.tree.TreeNode n, - com.arsdigita.bebop.PageState state) - -
-          Check whether a given node has children
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocFoldersContentTreeModel

-
-public DocFoldersContentTreeModel()
-
-
- - - - - - - - -
-Method Detail
- -

-getRoot

-
-public com.arsdigita.bebop.tree.TreeNode getRoot(com.arsdigita.bebop.PageState state)
-
-
Obtain the root folder of the tree -

-

-
Specified by:
getRoot in interface com.arsdigita.bebop.tree.TreeModel
-
-
-
-
-
-
- -

-hasChildren

-
-public boolean hasChildren(com.arsdigita.bebop.tree.TreeNode n,
-                           com.arsdigita.bebop.PageState state)
-
-
Check whether a given node has children -

-

-
Specified by:
hasChildren in interface com.arsdigita.bebop.tree.TreeModel
-
-
-
-
-
-
- -

-getChildren

-
-public Iterator getChildren(com.arsdigita.bebop.tree.TreeNode n,
-                            com.arsdigita.bebop.PageState state)
-
-
Get direct children in this node which are folders in this application -

-

-
Specified by:
getChildren in interface com.arsdigita.bebop.tree.TreeModel
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/RepositoryTreeModel.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/RepositoryTreeModel.html deleted file mode 100755 index 52760ba46..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/RepositoryTreeModel.html +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - -RepositoryTreeModel (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.ui.tree -
-Class RepositoryTreeModel

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel
-
-
-
All Implemented Interfaces:
DMConstants, com.arsdigita.bebop.tree.TreeModel
-
-
-
-
public class RepositoryTreeModel
extends Object
implements com.arsdigita.bebop.tree.TreeModel, DMConstants
- -

-Tree model that incorporates the views of all subsribed repositories. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.tree.TreeModel
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.cms.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, CAT_TREE_ID_PARAM_NAME, CAT_TREE_INIT_ID_PARAM_NAME, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOC_COL_ID_PARAM_NAME, DOCS_XML_NS, EMAIL_INVALID_ERROR, END_DATE_PARAM_NAME, FILE_ACTION_HEADER, FILE_CATEGORIES, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_INTENDED_AUDIENCE, FILE_INTENDED_AUDIENCE_INTERNAL, FILE_INTENDED_AUDIENCE_PUBLIC, FILE_INTENDED_AUDIENCE_WORKSPACE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_FORM_EMAIL, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SEND_COLLEAGUE_MESSAGE, FILE_SEND_COLLEAGUE_RETURN_ADDRESS, FILE_SEND_COLLEAGUE_SUBJECT, FILE_SEND_COLLEAGUE_SUBMIT, FILE_SEND_COLLEAGUE_THANKS, FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_ADD_DOC_PARAM_NAME, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_CREATE_LINK, FOLDER_NEW_DOCLINK_LINK, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, OPEN_FOLDER_ID_PARAM, OPEN_FOLDER_ID_PARAM_NAME, PAGE_TITLE_LABEL, PARAM_ROOT_ADD_DOC_LINK, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_DOCLINK_LINK, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, START_DATE_PARAM_NAME, TARGET_REQUIRED, TITLE_REQUIRED, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
RepositoryTreeModel() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- IteratorgetChildren(com.arsdigita.bebop.tree.TreeNode n, - com.arsdigita.bebop.PageState state) - -
-          Get direct children in this node which are folders in this application
- com.arsdigita.bebop.tree.TreeNodegetRoot(com.arsdigita.bebop.PageState state) - -
-          Obtain the root folder of the tree
- booleanhasChildren(com.arsdigita.bebop.tree.TreeNode n, - com.arsdigita.bebop.PageState state) - -
-          Check whether a given node has children
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-RepositoryTreeModel

-
-public RepositoryTreeModel()
-
-
- - - - - - - - -
-Method Detail
- -

-getRoot

-
-public com.arsdigita.bebop.tree.TreeNode getRoot(com.arsdigita.bebop.PageState state)
-
-
Obtain the root folder of the tree -

-

-
Specified by:
getRoot in interface com.arsdigita.bebop.tree.TreeModel
-
-
-
-
-
-
- -

-hasChildren

-
-public boolean hasChildren(com.arsdigita.bebop.tree.TreeNode n,
-                           com.arsdigita.bebop.PageState state)
-
-
Check whether a given node has children -

-

-
Specified by:
hasChildren in interface com.arsdigita.bebop.tree.TreeModel
-
-
-
-
-
-
- -

-getChildren

-
-public Iterator getChildren(com.arsdigita.bebop.tree.TreeNode n,
-                            com.arsdigita.bebop.PageState state)
-
-
Get direct children in this node which are folders in this application -

-

-
Specified by:
getChildren in interface com.arsdigita.bebop.tree.TreeModel
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderAppCellRenderer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderAppCellRenderer.html deleted file mode 100755 index ef16eb9ec..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderAppCellRenderer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderContentTreeRenderer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderContentTreeRenderer.html deleted file mode 100755 index c0d39524c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderContentTreeRenderer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderIterator.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderIterator.html deleted file mode 100755 index 1c015bc9e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderIterator.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderTreeNode.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderTreeNode.html deleted file mode 100755 index 7b3774bd1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFolderTreeNode.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTree.html deleted file mode 100755 index 142de7690..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTree.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTreeModel.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTreeModel.html deleted file mode 100755 index 1b69b4f28..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/DocFoldersContentTreeModel.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/RepositoryTreeModel.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/RepositoryTreeModel.html deleted file mode 100755 index 0dd015287..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/class-use/RepositoryTreeModel.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel

-
-No usage of com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-frame.html deleted file mode 100755 index 09ee0f47f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-frame.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.tree (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.ui.tree - - - - -
-Classes  - -
-DocFolderAppCellRenderer -
-DocFolderContentTreeRenderer -
-DocFolderIterator -
-DocFoldersContentTree -
-DocFoldersContentTreeModel -
-DocFolderTreeNode -
-RepositoryTreeModel
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-summary.html deleted file mode 100755 index 6094bcc1b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-summary.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.tree (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.ui.tree -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
DocFolderAppCellRenderer 
DocFolderContentTreeRendererCustomized Bebop Tree that shows the accessible Repositories - at the root level and the inidividual File trees beneath it.
DocFolderIterator 
DocFoldersContentTreeTree model that incorporates the views of all subsribed repositories.
DocFoldersContentTreeModelTree model that incorporates the views of all subsribed repositories.
DocFolderTreeNode 
RepositoryTreeModelTree model that incorporates the views of all subsribed repositories.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-tree.html deleted file mode 100755 index 56b009f76..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-tree.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.ui.tree Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.ui.tree -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.Tree (implements com.arsdigita.bebop.Resettable) - -
        -
      -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer (implements com.arsdigita.bebop.tree.TreeCellRenderer) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer (implements com.arsdigita.bebop.tree.TreeCellRenderer) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator (implements java.util.Iterator) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.tree.TreeModel) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode (implements com.arsdigita.bebop.tree.TreeNode) -
    • class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.tree.TreeModel) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-use.html deleted file mode 100755 index fafe8d8db..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/ui/tree/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.ui.tree (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.ui.tree

-
-No usage of com.arsdigita.cms.docmgr.ui.tree -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/GlobalizationUtil.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/GlobalizationUtil.html deleted file mode 100755 index f9afa3736..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/GlobalizationUtil.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - -GlobalizationUtil (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.docmgr.util -
-Class GlobalizationUtil

-
-java.lang.Object
-  extended bycom.arsdigita.cms.docmgr.util.GlobalizationUtil
-
-
-
All Implemented Interfaces:
com.arsdigita.globalization.Globalized
-
-
-
-
public class GlobalizationUtil
extends Object
implements com.arsdigita.globalization.Globalized
- -

-

- . - Contains methods to simplify globalizing keys -

-

- -

-

-
Version:
-
$Revision: #1 $ $Date: 2003/07/28 $
-
Author:
-
sarnold@redhat.com
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.globalization.Globalized
DATE_DISPLAY_FORMAT, TIME_DISPLAY_FORMAT, versionId
-  - - - - - - - - - - -
-Constructor Summary
GlobalizationUtil() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key) - -
-           
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key, - Object[] args) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-GlobalizationUtil

-
-public GlobalizationUtil()
-
-
- - - - - - - - -
-Method Detail
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key)
-
-
-
-
-
-
-
-
-
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key,
-                                                                      Object[] args)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/class-use/GlobalizationUtil.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/class-use/GlobalizationUtil.html deleted file mode 100755 index e23b86dc1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/class-use/GlobalizationUtil.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.docmgr.util.GlobalizationUtil (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.docmgr.util.GlobalizationUtil

-
-No usage of com.arsdigita.cms.docmgr.util.GlobalizationUtil -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-frame.html deleted file mode 100755 index fe682eae8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.util (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.cms.docmgr.util - - - - -
-Classes  - -
-GlobalizationUtil
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-summary.html deleted file mode 100755 index 7ea09cf05..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-summary.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.docmgr.util -

- - - - - - - - - -
-Class Summary
GlobalizationUtil - .
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-tree.html deleted file mode 100755 index b622c5147..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-tree.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -com.arsdigita.cms.docmgr.util Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.cms.docmgr.util -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.cms.docmgr.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-use.html deleted file mode 100755 index 89f9f4d04..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/cms/docmgr/util/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.docmgr.util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.docmgr.util

-
-No usage of com.arsdigita.cms.docmgr.util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ApplicationAuthenticationListener.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ApplicationAuthenticationListener.html deleted file mode 100755 index 02d977f3b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ApplicationAuthenticationListener.html +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - -ApplicationAuthenticationListener (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ApplicationAuthenticationListener

-
-java.lang.Object
-  extended bycom.arsdigita.ui.login.UserAuthenticationListener
-      extended bycom.arsdigita.docmgr.ApplicationAuthenticationListener
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.RequestListener
-
-
-
-
public class ApplicationAuthenticationListener
extends com.arsdigita.ui.login.UserAuthenticationListener
implements com.arsdigita.bebop.event.RequestListener
- -

-A RequestListener that verifies the user - has a given privilege on the current Application. - - The user is redirected to ACCESS_DENIED if their is - insufficient permission. - - XXX Permissions will be incorporated in December. This is - temporary for use in our engineering production server until. - that time. -

- -

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
-  - - - - - - - - - - -
-Constructor Summary
ApplicationAuthenticationListener(String privilegeName) - -
-          Constructs listener
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voiddenyRequest(com.arsdigita.bebop.PageState state) - -
-          Action performed if authentication failed.
- StringgetRequiredPrivilege() - -
-           
- voidpageRequested(com.arsdigita.bebop.event.RequestEvent event) - -
-          Checks whether the user is logged in.
- voidsetRequiredPrivilege(String privilegeName) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.ui.login.UserAuthenticationListener
getUser, isLoggedIn
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-ApplicationAuthenticationListener

-
-public ApplicationAuthenticationListener(String privilegeName)
-
-
Constructs listener -

-

Parameters:
privilegeName - a String that represents the privlege name for the - privilege a user must have to see the page.
- - - - - - - - -
-Method Detail
- -

-setRequiredPrivilege

-
-public void setRequiredPrivilege(String privilegeName)
-
-
-
-
-
-
-
-
-
- -

-getRequiredPrivilege

-
-public String getRequiredPrivilege()
-
-
-
-
-
-
-
-
-
- -

-pageRequested

-
-public void pageRequested(com.arsdigita.bebop.event.RequestEvent event)
-
-
Checks whether the user is logged in. If not, redirects the client - to the login page. -

-

-
Specified by:
pageRequested in interface com.arsdigita.bebop.event.RequestListener
-
-
-
-
-
-
- -

-denyRequest

-
-public void denyRequest(com.arsdigita.bebop.PageState state)
-
-
Action performed if authentication failed. Override this to - perform a perform a specific action after the authentication - check. -

-

-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Constants.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Constants.html deleted file mode 100755 index 991e3707a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Constants.html +++ /dev/null @@ -1,546 +0,0 @@ - - - - - - -Constants (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Interface Constants

-
-
All Known Implementing Classes:
File, Folder, Repository, ResourceImpl
-
-
-
-
public interface Constants
- -

-Constants used throughout the document manager application. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/Constants.java#3 $
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringACTION - -
-           
-static StringCONTENT - -
-           
-static StringDESCRIPTION - -
-           
-static StringDURATION - -
-           
-static StringFOLDER_ID - -
-           
-static StringIS_FOLDER - -
-           
-static StringLAST_MODIFIED_DATE - -
-           
-static StringMIME_TYPE_LABEL - -
-           
-static StringNAME - -
-           
-static StringOBJECT_ID - -
-           
-static StringPARENT - -
-           
-static StringPARTY_ID - -
-           
-static StringPATH - -
-           
-static StringREPOSITORIES_MOUNTED - -
-           
-static StringSIZE - -
-           
-static StringTEXT_HTML - -
-           
-static StringTEXT_PLAIN - -
-           
-static StringTYPE - -
-           
-static StringUSER_ID - -
-           
-  - - - - - - -

- - - - - - - - -
-Field Detail
- -

-ACTION

-
-public static final String ACTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-CONTENT

-
-public static final String CONTENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DESCRIPTION

-
-public static final String DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-DURATION

-
-public static final String DURATION
-
-
-
See Also:
Constant Field Values
-
-
- -

-FOLDER_ID

-
-public static final String FOLDER_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_FOLDER

-
-public static final String IS_FOLDER
-
-
-
See Also:
Constant Field Values
-
-
- -

-LAST_MODIFIED_DATE

-
-public static final String LAST_MODIFIED_DATE
-
-
-
See Also:
Constant Field Values
-
-
- -

-MIME_TYPE_LABEL

-
-public static final String MIME_TYPE_LABEL
-
-
-
See Also:
Constant Field Values
-
-
- -

-NAME

-
-public static final String NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-OBJECT_ID

-
-public static final String OBJECT_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARENT

-
-public static final String PARENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARTY_ID

-
-public static final String PARTY_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-PATH

-
-public static final String PATH
-
-
-
See Also:
Constant Field Values
-
-
- -

-SIZE

-
-public static final String SIZE
-
-
-
See Also:
Constant Field Values
-
-
- -

-TYPE

-
-public static final String TYPE
-
-
-
See Also:
Constant Field Values
-
-
- -

-USER_ID

-
-public static final String USER_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-REPOSITORIES_MOUNTED

-
-public static final String REPOSITORIES_MOUNTED
-
-
-
See Also:
Constant Field Values
-
-
- -

-TEXT_PLAIN

-
-public static final String TEXT_PLAIN
-
-
-
See Also:
Constant Field Values
-
-
- -

-TEXT_HTML

-
-public static final String TEXT_HTML
-
-
-
See Also:
Constant Field Values
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ContentTypeException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ContentTypeException.html deleted file mode 100755 index 975526885..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ContentTypeException.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - -ContentTypeException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ContentTypeException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended bycom.arsdigita.docmgr.ContentTypeException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class ContentTypeException
extends Exception
- -

-Base class for content type exceptions. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ContentTypeException.java#2 $
-
Author:
-
Ron Henderson (ron@arsdigita.com), Gavin Doughtie (gavin@arsdigita.com)
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - -
-Constructor Summary
ContentTypeException(Exception e) - -
-          Creates a new exception by wrapping an existing one.
ContentTypeException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-ContentTypeException

-
-public ContentTypeException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
-
- -

-ContentTypeException

-
-public ContentTypeException(Exception e)
-
-
Creates a new exception by wrapping an existing one. -

-

Parameters:
e - the exception to wrap
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/DocBlobject.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/DocBlobject.html deleted file mode 100755 index 75c424ff3..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/DocBlobject.html +++ /dev/null @@ -1,411 +0,0 @@ - - - - - - -DocBlobject (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class DocBlobject

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.docmgr.DocBlobject
-
-
-
-
public class DocBlobject
extends com.arsdigita.domain.DomainObject
- -

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainObject
versionId
-  - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
DocBlobject() - -
-           
DocBlobject(BigDecimal id) - -
-          Creates a new File by retrieving it based on ID.
DocBlobject(com.arsdigita.persistence.DataObject dataObject) - -
-          Creates a new Doc Blob by retrieving it from the underlying data - object.
DocBlobject(com.arsdigita.persistence.OID oid) - -
-          Creates a new DocBlobject by retrieving it based on OID.
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- StringgetBaseDataObjectType() - -
-           
- byte[]getContent() - -
-           
-protected  voidinitialize() - -
-           
- voidsetContent(byte[] content) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, afterSave, beforeDelete, beforeSave, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocBlobject

-
-public DocBlobject()
-
-
-
- -

-DocBlobject

-
-public DocBlobject(com.arsdigita.persistence.DataObject dataObject)
-
-
Creates a new Doc Blob by retrieving it from the underlying data - object. -

-

Parameters:
dataObject - the dataObject corresponding to this file
-
- -

-DocBlobject

-
-public DocBlobject(BigDecimal id)
-            throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a new File by retrieving it based on ID. -

-

Parameters:
id - - the ID of this file in the database
-
- -

-DocBlobject

-
-public DocBlobject(com.arsdigita.persistence.OID oid)
-            throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a new DocBlobject by retrieving it based on OID. -

-

Parameters:
oid - - the OID of this file
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-public String getBaseDataObjectType()
-
-
-
-
-
-
- -

-initialize

-
-protected void initialize()
-
-
-
-
-
-
- -

-getContent

-
-public byte[] getContent()
-
-
-
-
-
-
- -

-setContent

-
-public void setContent(byte[] content)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/File.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/File.html deleted file mode 100755 index 67f576a39..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/File.html +++ /dev/null @@ -1,1185 +0,0 @@ - - - - - - -File (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class File

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.versioning.VersionedACSObject
-                  extended bycom.arsdigita.docmgr.ResourceImpl
-                      extended bycom.arsdigita.docmgr.File
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, Constants, Resource
-
-
-
-
public class File
extends ResourceImpl
implements Constants
- -

-Represents a File in the document manager application. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/File.java#19 $
-
Author:
-
Stefan Deusch (stefan@arsdigita.com), Ron Henderson (ron@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringDEFAULT_MIME_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.docmgr.ResourceImpl
PARENT, s_log, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.versioning.VersionedACSObject
IS_DELETED, MASTER
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Constants
ACTION, CONTENT, DESCRIPTION, DURATION, FOLDER_ID, IS_FOLDER, LAST_MODIFIED_DATE, MIME_TYPE_LABEL, NAME, OBJECT_ID, PARENT, PARTY_ID, PATH, REPOSITORIES_MOUNTED, SIZE, TEXT_HTML, TEXT_PLAIN, TYPE, USER_ID
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Resource
SEPARATOR, SEPARATOR_CHAR
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
File(BigDecimal id) - -
-          Creates a new File by retrieving it based on ID.
File(com.arsdigita.persistence.DataObject dataObject) - -
-          Creates a new file by retrieving it from the underlying data - object.
File(Folder parent) - -
-          Creates an empty file inside a given parent folder.
File(com.arsdigita.persistence.OID oid) - -
-          Creates a new File by retrieving it based on OID.
File(String objectType) - -
-          Creates a file
File(String name, - String description, - Folder parent) - -
-          Creates a file inside a given parent folder.
File(String baseDataObjectType, - String name, - String description, - Folder parent) - -
-          Creates a file inside a given parent folder.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-           
- StringappendExtension(String name) - -
-          Append the extension of this file to a given file name.
-protected  voidbeforeSave() - -
-           
- ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- StringgetBaseDataObjectType() - -
-          Returns the pdl object type required for this object.
- StringgetContentType() - -
-           
- StringgetDisplayName() - -
-          Returns the display name of a file, that is the file name minus - any extension if present.
-static StringgetExtension(String name) - -
-          Return the extension of a file name, if present.
- InputStreamgetInputStream() - -
-          Returns an InputStream suitable for reading the raw content of - the file.
- StringgetPrettyContentType() - -
-           
-protected  VectorgetPropertyNames() - -
-          Return the list of declared property names for a Resource.
- byte[]getRawContent() - -
-          Returns the raw content of the file as a byte array.
- BigDecimalgetSize() - -
-          Returns the size of the file in bytes.
-static StringguessContentType(String name, - HttpServletRequest request) - -
-          Guess the content type for a file by checking the file - extension agains the know database of types, or for the - existence of a MIME type header in an HttpServletRequest.
- voidinitializeContentType(HttpServletRequest request) - -
-          Initialize the content type of a file by looking up a MIME type - from the file extension or an optional Content-Type header in - an HttpServletRequest.
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- booleanisValidContentType(String contentType) - -
-          Returns true if the given content type matches the current - content type of a file.
- booleanisValidNewName(String name) - -
-          Checks for valid characters in a file name and also checks that - the name corresponds to a compatible MIME type.
-static FileretrieveFile(com.arsdigita.persistence.DataObject dataObject) - -
-           
- voidsaveNewRevision(File src, - String originalName, - String versionDesc, - HttpServletRequest req) - -
-          Saves a new revision of this file.
- voidsetContent(File file, - String name, - String description) - -
-          Sets the content of this resource to a file with a given name and - description.
- voidsetContentType(String type) - -
-          Sets the MIME type of this file.
- voidsetDataHandler(DataHandler dh) - -
-          Provides the mechanism to set this file's content.
- voidsetText(String text) - -
-          Convenience method for use with plain text files.
- - - - - - - -
Methods inherited from class com.arsdigita.docmgr.ResourceImpl
copy, copyTo, copyTo, delete, getCanonicalPath, getCreationDate, getCreationIP, getCreationUser, getDescription, getLastModifiedDate, getLastModifiedIP, getLastModifiedUser, getName, getParent, getParentResourceID, getPath, getResourceID, getResourceID, isAbsolutePath, isRoot, isValidName, isValidPath, retrievePath, setCreationDate, setCreationIP, setCreationUser, setDescription, setLastModifiedDate, setLastModifiedIP, setLastModifiedUser, setName, setParent, toURL
- - - - - - - -
Methods inherited from class com.arsdigita.versioning.VersionedACSObject
applyTag, applyUniqueTag, autoPropagateMaster, getMaster, getRolledBackTo, getTransactions, getTransactions, isMaster, isRolledBack, isSubtype, permanentlyDelete, propagateMaster, recordAttributeChange, rollBackTo, rollBackTo, rollForward, save, setMaster, trackChanges
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.docmgr.Resource
getID, toString
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
-
- -

-DEFAULT_MIME_TYPE

-
-public static final String DEFAULT_MIME_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-File

-
-public File(com.arsdigita.persistence.DataObject dataObject)
-
-
Creates a new file by retrieving it from the underlying data - object. -

-

Parameters:
dataObject - the dataObject corresponding to this file
-
- -

-File

-
-public File(BigDecimal id)
-     throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a new File by retrieving it based on ID. -

-

Parameters:
id - - the ID of this file in the database
-
- -

-File

-
-public File(com.arsdigita.persistence.OID oid)
-     throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a new File by retrieving it based on OID. -

-

Parameters:
oid - - the OID of this file
-
- -

-File

-
-public File(String name,
-            String description,
-            Folder parent)
-
-
Creates a file inside a given parent folder. -

-

Parameters:
name - the name of the File
description - the description of the file contents (may - be null)
-
- -

-File

-
-public File(String baseDataObjectType,
-            String name,
-            String description,
-            Folder parent)
-
-
Creates a file inside a given parent folder. -

-

Parameters:
name - the name of the File
description - the description of the file contents (may - be null)
-
- -

-File

-
-public File(Folder parent)
-
-
Creates an empty file inside a given parent folder. -

-

Parameters:
parent - The parent folder
-
- -

-File

-
-public File(String objectType)
-
-
Creates a file -

-

Parameters:
objectType - the type of the object
- - - - - - - - -
-Method Detail
- -

-retrieveFile

-
-public static File retrieveFile(com.arsdigita.persistence.DataObject dataObject)
-
-
-
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
Overrides:
beforeSave in class ResourceImpl
-
-
-
-
-
-
- -

-getBaseDataObjectType

-
-public String getBaseDataObjectType()
-
-
Returns the pdl object type required for this object. -

-

-
Overrides:
getBaseDataObjectType in class ResourceImpl
-
-
-
-
-
-
- -

-getContentType

-
-public String getContentType()
-
-
-
-
-
- -
Returns:
the MIME type of this file as a string, or null if the - content type cannot be determined.
-
-
-
- -

-getPrettyContentType

-
-public String getPrettyContentType()
-
-
-
-
-
- -
Returns:
the pretty name for the MIME type of the file or null - if no content type can be set. For instance, getContentType - will return something like "application/msexcel" where this will - return "Microsoft Excel document". If the mime type is not - registered in the database this this will just return the same - value as getContentType()
-
-
-
- -

-setContentType

-
-public void setContentType(String type)
-
-
Sets the MIME type of this file. -

-

-
-
-
-
Parameters:
type - the content type of this file.
-
-
-
- -

-setContent

-
-public void setContent(File file,
-                       String name,
-                       String description)
-                throws ResourceException
-
-
Sets the content of this resource to a file with a given name and - description. -

-

-
-
-
-
Parameters:
file - the file to read content from
name - the name of the file
description - the description of the file -
Throws: -
ResourceException
-
-
-
- -

-setText

-
-public final void setText(String text)
-
-
Convenience method for use with plain text files. Sets the - content of the file to a String and sets its MIME type to - "text/plain". -

-

-
-
-
-
-
-
-
- -

-getInputStream

-
-public InputStream getInputStream()
-
-
Returns an InputStream suitable for reading the raw content of - the file. -

-

-
-
-
- -
Returns:
an InputStream
-
-
-
- -

-getRawContent

-
-public byte[] getRawContent()
-
-
Returns the raw content of the file as a byte array. Do not - use this method for very large files. Use the {link - getInputStream} method instead. -

-

-
-
-
-
-
-
-
- -

-setDataHandler

-
-public void setDataHandler(DataHandler dh)
-                    throws ResourceException
-
-
Provides the mechanism to set this file's content. -

-

-
-
-
-
Parameters:
dh - the DataHandler for this part's content -
Throws: -
ResourceException
-
-
-
- -

-getSize

-
-public BigDecimal getSize()
-
-
Returns the size of the file in bytes. -

-

-
-
-
- -
Returns:
the size of the file in bytes, or -1 if the size - cannot be computed.
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a file. -

-

-
Specified by:
isFile in interface Resource
Specified by:
isFile in class ResourceImpl
-
-
-
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a folder. -

-

-
Specified by:
isFolder in interface Resource
Specified by:
isFolder in class ResourceImpl
-
-
-
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-
-
Description copied from interface: Resource
-
Copies the resource into another location with a new name. -

-

-
Specified by:
copyTo in interface Resource
Specified by:
copyTo in class ResourceImpl
-
-
-
-
-
-
- -

-getPropertyNames

-
-protected Vector getPropertyNames()
-
-
Description copied from class: ResourceImpl
-
Return the list of declared property names for a Resource. - This list only includes the properties that should be - duplicated during a copy operation. -

-

-
Overrides:
getPropertyNames in class ResourceImpl
-
-
- -
Returns:
the list of directory property names for a File, - including those inherited from ResourceImpl.
-
-
-
- -

-initializeContentType

-
-public void initializeContentType(HttpServletRequest request)
-                           throws ContentTypeException
-
-
Initialize the content type of a file by looking up a MIME type - from the file extension or an optional Content-Type header in - an HttpServletRequest. If these fail the content will be - initialized to "application/octet-stream". - - This only works on a new file -

-

-
-
-
-
Parameters:
request - an HttpServletRequest which might contain a - Content-Type header, and can be null. -
Throws: -
ContentTypeException
-
-
-
- -

-guessContentType

-
-public static String guessContentType(String name,
-                                      HttpServletRequest request)
-
-
Guess the content type for a file by checking the file - extension agains the know database of types, or for the - existence of a MIME type header in an HttpServletRequest. If - these both fail, or if the content type set in the request is - not one of the recognized types on the system, return a content - type of "application/octet-stream". -

-

-
-
-
-
Parameters:
name - the name of a file to be used for an - extension-based type lookup
request - an HttpServletRequest which might contain a - Content-Type header, and can be null
-
-
-
- -

-getDisplayName

-
-public String getDisplayName()
-
-
Returns the display name of a file, that is the file name minus - any extension if present. An extension is defined as the '.' - character followed by one or more non-whitespace characters at - the end of the file name. Any file name that begins with '.' - will always be returned intact. -

-

-
-
-
-
-
-
-
- -

-isValidContentType

-
-public boolean isValidContentType(String contentType)
-
-
Returns true if the given content type matches the current - content type of a file. If the file has not yet been saved, - any content type is allowed. -

-

-
-
-
-
-
-
-
- -

-isValidNewName

-
-public boolean isValidNewName(String name)
-
-
Checks for valid characters in a file name and also checks that - the name corresponds to a compatible MIME type. If no extension - is supplied and the current file name includes an extension, - add that extension to the name before guessing its MIME type. -

-

-
-
-
-
-
-
-
- -

-appendExtension

-
-public String appendExtension(String name)
-
-
Append the extension of this file to a given file name. If the - given file name already has an extension it will be returned - without modification. -

-

-
-
-
-
-
-
-
- -

-getExtension

-
-public static String getExtension(String name)
-
-
Return the extension of a file name, if present. Otherwise - return an empty string. -

-

-
-
-
-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
-
Overrides:
afterSave in class ResourceImpl
-
-
-
-
-
-
- -

-saveNewRevision

-
-public void saveNewRevision(File src,
-                            String originalName,
-                            String versionDesc,
-                            HttpServletRequest req)
-
-
Saves a new revision of this file. -

-

-
-
-
-
Parameters:
src - The source file to upload to the database.
originalName - The original name of the file. The servlet container may not return the same file extension. For example, tomcat will return some random .tmp file, which will cause mime type checking to fail.
versionDesc - The description of this version of the file.
req - Optional Htttp request for guessing the file's mime-type.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Folder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Folder.html deleted file mode 100755 index 36a9af0bf..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Folder.html +++ /dev/null @@ -1,764 +0,0 @@ - - - - - - -Folder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class Folder

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.versioning.VersionedACSObject
-                  extended bycom.arsdigita.docmgr.ResourceImpl
-                      extended bycom.arsdigita.docmgr.Folder
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, Constants, Resource
-
-
-
-
public class Folder
extends ResourceImpl
implements Constants
- -

-Represents a Folder in the document manager application. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/Folder.java#6 $
-
Author:
-
Stefan Deusch (stefan@arsdigita.com), Ron Henderson (ron@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.docmgr.ResourceImpl
PARENT, s_log, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.versioning.VersionedACSObject
IS_DELETED, MASTER
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Constants
ACTION, CONTENT, DESCRIPTION, DURATION, FOLDER_ID, IS_FOLDER, LAST_MODIFIED_DATE, MIME_TYPE_LABEL, NAME, OBJECT_ID, PARENT, PARTY_ID, PATH, REPOSITORIES_MOUNTED, SIZE, TEXT_HTML, TEXT_PLAIN, TYPE, USER_ID
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Resource
SEPARATOR, SEPARATOR_CHAR
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
- Folder() - -
-          Constructor.
- Folder(BigDecimal id) - -
-          Creates a new folder by retrieving it based on ID.
- Folder(com.arsdigita.persistence.DataObject dataObject) - -
-          Creates a new folder object.
-protected Folder(com.arsdigita.persistence.metadata.ObjectType type) - -
-          Constructor.
- Folder(com.arsdigita.persistence.OID oid) - -
-          Creates a new folder by retrieving it based on OID.
- Folder(String objectTypeString) - -
-           
- Folder(String name, - String description) - -
-          Creates a named folder with a description.
- Folder(String name, - String description, - Folder parent) - -
-          Creates a sub folder inside a given parent folder.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidbeforeSave() - -
-           
- ResourcecopyTo(String name, - Resource parent) - -
-          Copy this folder to a new location.
- FoldercreateFolders(String path) - -
-          Creates the sub folder named by path, including any necessary - but nonexistent parent folders.
-protected  StringgetBaseDataObjectType() - -
-           
- StringgetDisplayName() - -
-          Returns the display name for a folder, which is equivalent to - calling getName().
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- FileretrieveFile(String path) - -
-           
- FolderretrieveFolder(String path) - -
-          Retrieves the named sub folder by searching from the current folder - along the given path.
- - - - - - - -
Methods inherited from class com.arsdigita.docmgr.ResourceImpl
afterSave, copy, copyTo, copyTo, delete, getCanonicalPath, getCreationDate, getCreationIP, getCreationUser, getDescription, getLastModifiedDate, getLastModifiedIP, getLastModifiedUser, getName, getParent, getParentResourceID, getPath, getPropertyNames, getResourceID, getResourceID, isAbsolutePath, isRoot, isValidName, isValidPath, retrievePath, setCreationDate, setCreationIP, setCreationUser, setDescription, setLastModifiedDate, setLastModifiedIP, setLastModifiedUser, setName, setParent, toURL
- - - - - - - -
Methods inherited from class com.arsdigita.versioning.VersionedACSObject
applyTag, applyUniqueTag, autoPropagateMaster, getMaster, getRolledBackTo, getTransactions, getTransactions, isMaster, isRolledBack, isSubtype, permanentlyDelete, propagateMaster, recordAttributeChange, rollBackTo, rollBackTo, rollForward, save, setMaster, trackChanges
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.docmgr.Resource
getID, toString
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Folder

-
-public Folder()
-
-
Constructor. -

-

-
- -

-Folder

-
-public Folder(com.arsdigita.persistence.DataObject dataObject)
-
-
Creates a new folder object. -

-

-
- -

-Folder

-
-public Folder(BigDecimal id)
-       throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a new folder by retrieving it based on ID. -

-

Parameters:
id - - the BigDecimal ID
-
- -

-Folder

-
-public Folder(com.arsdigita.persistence.OID oid)
-       throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a new folder by retrieving it based on OID. -

-

Parameters:
oid - - the Object oID
-
- -

-Folder

-
-public Folder(String objectTypeString)
-
-
-
- -

-Folder

-
-protected Folder(com.arsdigita.persistence.metadata.ObjectType type)
-
-
Constructor. The contained DataObject is - initialized with a new DataObject with an - ObjectType specified by type. -

-

Parameters:
type - The ObjectType of the contained - DataObject.
See Also:
DomainObject.DomainObject(ObjectType), -DataObject, -ObjectType
-
- -

-Folder

-
-public Folder(String name,
-              String description)
-
-
Creates a named folder with a description. -

-

Parameters:
name - the name of the folder
description - the description of the folder contents (may - be null)
-
- -

-Folder

-
-public Folder(String name,
-              String description,
-              Folder parent)
-
-
Creates a sub folder inside a given parent folder. -

-

Parameters:
name - the name of the folder
description - the description of the folder contents (may - be null)
- - - - - - - - -
-Method Detail
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
Overrides:
beforeSave in class ResourceImpl
-
-
-
-
-
-
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
Overrides:
getBaseDataObjectType in class ResourceImpl
-
-
-
-
-
-
- -

-retrieveFolder

-
-public Folder retrieveFolder(String path)
-                      throws com.arsdigita.domain.DataObjectNotFoundException,
-                             InvalidNameException
-
-
Retrieves the named sub folder by searching from the current folder - along the given path. Returns the child folder or throws a - DataObjectNotFoundException if the subfolder does not exist. -

-

-
-
-
- -
Returns:
child folder if and only if it exists as a sub folder - with the correct path -
Throws: -
com.arsdigita.domain.DataObjectNotFoundException -
InvalidNameException
-
-
-
- -

-retrieveFile

-
-public File retrieveFile(String path)
-                  throws com.arsdigita.domain.DataObjectNotFoundException,
-                         InvalidNameException
-
-
-
-
-
- -
Throws: -
com.arsdigita.domain.DataObjectNotFoundException -
InvalidNameException
-
-
-
- -

-createFolders

-
-public Folder createFolders(String path)
-                     throws InvalidNameException,
-                            ResourceExistsException
-
-
Creates the sub folder named by path, including any necessary - but nonexistent parent folders. -

-

-
-
-
- -
Throws: -
InvalidNameException -
ResourceExistsException
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a folder. -

-

-
Specified by:
isFolder in interface Resource
Specified by:
isFolder in class ResourceImpl
-
-
-
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a file. -

-

-
Specified by:
isFile in interface Resource
Specified by:
isFile in class ResourceImpl
-
-
-
-
-
-
- -

-getDisplayName

-
-public String getDisplayName()
-
-
Returns the display name for a folder, which is equivalent to - calling getName(). -

-

-
-
-
-
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-
-
Copy this folder to a new location. Recursively copies all - children from the original resource location to the new - resource location. -

-

-
Specified by:
copyTo in interface Resource
Specified by:
copyTo in class ResourceImpl
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidMimeTypeFormatException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidMimeTypeFormatException.html deleted file mode 100755 index 1ac2c7aaa..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidMimeTypeFormatException.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - -InvalidMimeTypeFormatException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class InvalidMimeTypeFormatException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended bycom.arsdigita.docmgr.InvalidMimeTypeFormatException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class InvalidMimeTypeFormatException
extends Exception
- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - -
-Constructor Summary
InvalidMimeTypeFormatException(String s) - -
-          Constructs a InvalidMimeTypeFormatException with the specified detail message.
InvalidMimeTypeFormatException(Throwable cause) - -
-          Constructs a InvalidMimeTypeFormatException with the specified cause.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-InvalidMimeTypeFormatException

-
-public InvalidMimeTypeFormatException(String s)
-
-
Constructs a InvalidMimeTypeFormatException with the specified detail message. -

-

-
- -

-InvalidMimeTypeFormatException

-
-public InvalidMimeTypeFormatException(Throwable cause)
-
-
Constructs a InvalidMimeTypeFormatException with the specified cause. - Pass in an Exception or an Error (both subclasses of Throwable) - to indicate the cause of failure. -

-

- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidNameException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidNameException.html deleted file mode 100755 index 528e20f74..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/InvalidNameException.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - -InvalidNameException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class InvalidNameException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended bycom.arsdigita.docmgr.InvalidNameException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class InvalidNameException
extends Exception
- -

-Exception thrown to indicate that a resource name (or path) - is in an invalid state. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/InvalidNameException.java#2 $
-
Author:
-
stefan@arsdigita.com
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static intINVALID_CHARACTER_ERROR - -
-           
-static intLEADING_CHARACTER_ERROR - -
-           
-static intLEADING_FILE_SEPARATOR_ERROR - -
-           
-protected static ChoiceFormats_validPathErrorMessages - -
-           
-static intTRAILING_FILE_SEPARATOR_ERROR - -
-           
-static intZERO_CHARACTERS_ERROR - -
-          Error messages for path validation methods
-  - - - - - - - - - - - - - -
-Constructor Summary
InvalidNameException(int messageCode) - -
-          Creates a new exception with the error message - corresponding to the error message codes above.
InvalidNameException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-ZERO_CHARACTERS_ERROR

-
-public static final int ZERO_CHARACTERS_ERROR
-
-
Error messages for path validation methods -

-

-
See Also:
ResourceImpl.isValidPath, -Constant Field Values
-
-
- -

-LEADING_FILE_SEPARATOR_ERROR

-
-public static final int LEADING_FILE_SEPARATOR_ERROR
-
-
-
See Also:
Constant Field Values
-
-
- -

-TRAILING_FILE_SEPARATOR_ERROR

-
-public static final int TRAILING_FILE_SEPARATOR_ERROR
-
-
-
See Also:
Constant Field Values
-
-
- -

-INVALID_CHARACTER_ERROR

-
-public static final int INVALID_CHARACTER_ERROR
-
-
-
See Also:
Constant Field Values
-
-
- -

-LEADING_CHARACTER_ERROR

-
-public static final int LEADING_CHARACTER_ERROR
-
-
-
See Also:
Constant Field Values
-
-
- -

-s_validPathErrorMessages

-
-protected static ChoiceFormat s_validPathErrorMessages
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-InvalidNameException

-
-public InvalidNameException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
-
- -

-InvalidNameException

-
-public InvalidNameException(int messageCode)
-
-
Creates a new exception with the error message - corresponding to the error message codes above. -

-

- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Lockable.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Lockable.html deleted file mode 100755 index 057de07dc..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Lockable.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - -Lockable (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Interface Lockable

-
-
-
public interface Lockable
- -

-This interface specifies functionality to lock a - an object by a user. - - -

- Stability: Experimental -

-

- -

-

-
Author:
-
Stefan Deusch (stefan@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- com.arsdigita.kernel.PartygetLockedParty() - -
-          Retrieves the user who locked the process.
- booleanisLocked() - -
-          Checks whether the task is locked by a user.
- voidlock(com.arsdigita.kernel.Party user) - -
-          Applies a lock to an object - owned by the user
- voidunlock(com.arsdigita.kernel.Party user) - -
-          Party who previously locked - object, unlocks it now.
-  -

- - - - - - - - - - - - - - -
-Method Detail
- -

-lock

-
-public void lock(com.arsdigita.kernel.Party user)
-
-
Applies a lock to an object - owned by the user -

-

-
-
-
-
- -

-unlock

-
-public void unlock(com.arsdigita.kernel.Party user)
-
-
Party who previously locked - object, unlocks it now. -

-

-
-
-
-
- -

-isLocked

-
-public boolean isLocked()
-
-
Checks whether the task is locked by a user. -

-

- -
Returns:
true if the task is locked - by a user; false otherwise.
-
-
-
- -

-getLockedParty

-
-public com.arsdigita.kernel.Party getLockedParty()
-
-
Retrieves the user who locked the process. -

-

- -
Returns:
the user who locked the process.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/MimeTypeXMLLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/MimeTypeXMLLoader.html deleted file mode 100755 index 18789de86..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/MimeTypeXMLLoader.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - -MimeTypeXMLLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class MimeTypeXMLLoader

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.MimeTypeXMLLoader
-
-
-
-
public final class MimeTypeXMLLoader
extends Object
- -

-Initializer helper class which loades more Mime types into the - database from an xml file. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
MimeTypeXMLLoader() - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static voidparse(InputStream is) - -
-          Parse the input stream and load the extracted XML source.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-MimeTypeXMLLoader

-
-public MimeTypeXMLLoader()
-
-
- - - - - - - - -
-Method Detail
- -

-parse

-
-public static void parse(InputStream is)
-                  throws IOException,
-                         InvalidMimeTypeFormatException
-
-
Parse the input stream and load the extracted XML source. -

-

-
Parameters:
is - InputStream to read the document from -
Throws: -
IOException -
InvalidMimeTypeFormatException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Repository.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Repository.html deleted file mode 100755 index dbf7e66d0..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Repository.html +++ /dev/null @@ -1,637 +0,0 @@ - - - - - - -Repository (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class Repository

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.web.Application
-                      extended bycom.arsdigita.docmgr.Repository
-
-
-
All Implemented Interfaces:
Constants
-
-
-
-
public class Repository
extends com.arsdigita.web.Application
implements Constants
- -

-A repository is the application that provides access to files and - folders. -

- -

-

-
Author:
-
Stefan Deusch (stefan@arsdigita.com), Ron Henderson (ron@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.web.Application
PRIMARY_URL, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Constants
ACTION, CONTENT, DESCRIPTION, DURATION, FOLDER_ID, IS_FOLDER, LAST_MODIFIED_DATE, MIME_TYPE_LABEL, NAME, OBJECT_ID, PARENT, PARTY_ID, PATH, REPOSITORIES_MOUNTED, SIZE, TEXT_HTML, TEXT_PLAIN, TYPE, USER_ID
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
Repository(BigDecimal id) - -
-          Constructor.
Repository(com.arsdigita.persistence.DataObject obj) - -
-          Constructs a repository from the underlying data object.
Repository(com.arsdigita.persistence.OID oid) - -
-          Retreives a repository from the database usings its OID.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-          Grant write permission to the Portal participants.
-protected  voidbeforeSave() - -
-           
-static Repositorycreate(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-protected  StringgetBaseDataObjectType() - -
-           
-static RepositorygetCurrentRepository(HttpServletRequest req) - -
-           
- com.arsdigita.kernel.PartygetOwner() - -
-          Returns the party owning the repository.
-static ResourceImplCollectiongetRecentlyModifiedDocuments() - -
-           
-static ResourceImplCollectiongetRecentlyModifiedDocuments(Repository rep) - -
-           
- FoldergetRoot() - -
-           
-static ResourceretrieveResource(String absPath) - -
-          Convenience method to retrieve a resource (file or folder) by - absolute path name.
- - - - - - - -
Methods inherited from class com.arsdigita.web.Application
afterDelete, beforeDelete, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Repository

-
-public Repository(com.arsdigita.persistence.OID oid)
-           throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Retreives a repository from the database usings its OID. -

-

Parameters:
oid - the OID of the repository
-
- -

-Repository

-
-public Repository(BigDecimal id)
-           throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Constructor. The contained DataObject is retrieved - from the persistent storage mechanism with an OID - specified by id. -

-

Parameters:
id - The id for the retrieved - DataObject.
-
- -

-Repository

-
-public Repository(com.arsdigita.persistence.DataObject obj)
-
-
Constructs a repository from the underlying data object. -

-

- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
Grant write permission to the Portal participants. -

-

-
-
-
-
-
-
-
- -

-create

-
-public static Repository create(String urlName,
-                                String title,
-                                com.arsdigita.web.Application parent)
-
-
This is called when the application is created. -

-

-
-
-
-
-
-
-
- -

-retrieveResource

-
-public static Resource retrieveResource(String absPath)
-
-
Convenience method to retrieve a resource (file or folder) by - absolute path name. -

-

-
-
-
-
-
-
-
- -

-getOwner

-
-public com.arsdigita.kernel.Party getOwner()
-
-
Returns the party owning the repository. -

-

-
-
-
- -
Returns:
the party owning the repository.
-
-
-
- -

-getRoot

-
-public Folder getRoot()
-
-
-
-
-
- -
Returns:
the root file folder for this repository
-
-
-
- -

-getRecentlyModifiedDocuments

-
-public static ResourceImplCollection getRecentlyModifiedDocuments()
-
-
-
-
-
-
-
-
-
- -

-getRecentlyModifiedDocuments

-
-public static ResourceImplCollection getRecentlyModifiedDocuments(Repository rep)
-
-
-
-
-
-
-
-
-
- -

-getCurrentRepository

-
-public static Repository getCurrentRepository(HttpServletRequest req)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Resource.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Resource.html deleted file mode 100755 index 3310f4b60..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Resource.html +++ /dev/null @@ -1,540 +0,0 @@ - - - - - - -Resource (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Interface Resource

-
-
All Known Implementing Classes:
ResourceImpl
-
-
-
-
public interface Resource
- -

-This interface describes the functionality common to operations - on files and folders in the document manager application. - - Concrete implementations of this interface may vary in the - implementation of the data store. For example, persistent data for - resource might be stored in a file system or a database. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/Resource.java#4 $
-
Author:
-
Stefan Deusch (stefan@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringSEPARATOR - -
-          The path-separator character, represented as a string for convenience.
-static charSEPARATOR_CHAR - -
-          The path-separator character.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- ResourcecopyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourcecopyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- StringgetDescription() - -
-          Returns a description of the resource, or null if no - description has been provided.
- BigDecimalgetID() - -
-          Returns a unique identifier for this resource.
- StringgetName() - -
-          Returns the name of the file or folder corresponding to this - resource.
- ResourcegetParent() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
- StringgetPath() - -
-          Converts this resource into a pathname string.
- booleanisFile() - -
-          Tests whether this resource is a file.
- booleanisFolder() - -
-          Tests whether this resource is a folder.
- StringtoString() - -
-          Returns the pathname string of this resource.
- URLtoURL() - -
-          Returns the URL corresponding to this resource.
-  -

- - - - - - - - -
-Field Detail
- -

-SEPARATOR

-
-public static final String SEPARATOR
-
-
The path-separator character, represented as a string for convenience. -

-

-
See Also:
Constant Field Values
-
-
- -

-SEPARATOR_CHAR

-
-public static final char SEPARATOR_CHAR
-
-
The path-separator character. -

-

-
-
- - - - - - - - - - - -
-Method Detail
- -

-getName

-
-public String getName()
-
-
Returns the name of the file or folder corresponding to this - resource. -

-

-
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Returns a description of the resource, or null if no - description has been provided. -

-

-
-
-
-
- -

-getParent

-
-public Resource getParent()
-
-
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -

-

-
-
-
-
- -

-getPath

-
-public String getPath()
-
-
Converts this resource into a pathname string. -

-

-
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
Tests whether this resource is a folder. -

-

-
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
Tests whether this resource is a file. -

-

-
-
-
-
- -

-copyTo

-
-public Resource copyTo(Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location. Preserves the - original name of the resource but places the copy inside a new - parent resource. -

-

-
Parameters:
parent - the parent of the copy -
Returns:
a copy of the original resource -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name,
-                       Resource parent)
-                throws ResourceExistsException
-
-
Copies the resource into another location with a new name. -

-

-
Parameters:
name - the name of the copy
parent - the parent of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name)
-                throws ResourceExistsException
-
-
Copies the resource into the same location (same parent) with a - new name. -

-

-
Parameters:
name - the name of the copy -
Returns:
a copy of the original resource. -
Throws: -
ResourceExistsException
-
-
-
- -

-toString

-
-public String toString()
-
-
Returns the pathname string of this resource. -

-

-
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
Returns the URL corresponding to this resource. -

-

-
-
-
-
- -

-getID

-
-public BigDecimal getID()
-
-
Returns a unique identifier for this resource. -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceException.html deleted file mode 100755 index f994318cf..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceException.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - -ResourceException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ResourceException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended byjava.lang.RuntimeException
-              extended bycom.arsdigita.docmgr.ResourceException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
Direct Known Subclasses:
TypeChangeException
-
-
-
-
public class ResourceException
extends RuntimeException
- -

-Base class for resource exceptions. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ResourceException.java#2 $
-
Author:
-
Ron Henderson (ron@arsdigita.com)
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - -
-Constructor Summary
ResourceException(Exception e) - -
-          Creates a new exception by wrapping an existing one.
ResourceException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-ResourceException

-
-public ResourceException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
-
- -

-ResourceException

-
-public ResourceException(Exception e)
-
-
Creates a new exception by wrapping an existing one. -

-

Parameters:
e - the exception to wrap
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceExistsException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceExistsException.html deleted file mode 100755 index 6a7c246bd..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceExistsException.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - -ResourceExistsException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ResourceExistsException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended byjava.lang.RuntimeException
-              extended bycom.arsdigita.docmgr.ResourceExistsException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class ResourceExistsException
extends RuntimeException
- -

-Exception thrown to indicate that another resource exists with the - same parent and name. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ResourceExistsException.java#3 $
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
ResourceExistsException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-ResourceExistsException

-
-public ResourceExistsException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImpl.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImpl.html deleted file mode 100755 index 73b85be6e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImpl.html +++ /dev/null @@ -1,1587 +0,0 @@ - - - - - - -ResourceImpl (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ResourceImpl

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.versioning.VersionedACSObject
-                  extended bycom.arsdigita.docmgr.ResourceImpl
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, Constants, Resource
-
-
-
Direct Known Subclasses:
File, Folder
-
-
-
-
public abstract class ResourceImpl
extends com.arsdigita.versioning.VersionedACSObject
implements Resource, Constants
- -

-This class is the abstract parent class of File and Folder. It provides an implementation of the Resource - interface for a database-backed virtual filesystem. - - This implementation stores file in Oracle exclusively. - All versioning API is by inheritance from VersionedACSObject - (which will eventually - also include access logging - so wait for VersionedACSObject) -

- -

-

-
Version:
-
$Revision: #13 $ $Date: 2003/07/11 $ $Author: jparsons $
-
Author:
-
Stefan Deusch (stefan@arsdigita.com), Ron Henderson (ron@arsdigita.com)
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringPARENT - -
-           
-protected static org.apache.log4j.Loggers_log - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.versioning.VersionedACSObject
IS_DELETED, MASTER
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Resource
SEPARATOR, SEPARATOR_CHAR
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.Constants
ACTION, CONTENT, DESCRIPTION, DURATION, FOLDER_ID, IS_FOLDER, LAST_MODIFIED_DATE, MIME_TYPE_LABEL, NAME, OBJECT_ID, PARTY_ID, PATH, REPOSITORIES_MOUNTED, SIZE, TEXT_HTML, TEXT_PLAIN, TYPE, USER_ID
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
-protected ResourceImpl() - -
-          Default constructor.
-protected ResourceImpl(BigDecimal id) - -
-          Creates a resource given the ID
-protected ResourceImpl(com.arsdigita.persistence.DataObject dataObject) - -
-          Creates a new resource.
-protected ResourceImpl(com.arsdigita.persistence.metadata.ObjectType type) - -
-          Constructor.
-protected ResourceImpl(com.arsdigita.persistence.OID oid) - -
-          Creates a resource given the OID
-protected ResourceImpl(String typeName) - -
-          Constructor.
-protected ResourceImpl(String type, - ResourceImpl parent) - -
-          Creates an empty resource with the given parent.
-protected ResourceImpl(String type, - String name, - String description) - -
-          Creates a named resource of the specified type.
-protected ResourceImpl(String type, - String name, - String description, - ResourceImpl parent) - -
-          Creates a named resource of the specified type with a given parent.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-           
-protected  voidbeforeSave() - -
-           
-protected static voidcopy(ResourceImpl src, - ResourceImpl dest) - -
-          Copy the generic properties of a Resource.
- ResourcecopyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourcecopyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
-abstract  ResourcecopyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voiddelete() - -
-          Deletes a resource.
-protected  StringgetBaseDataObjectType() - -
-           
-static StringgetCanonicalPath(String path) - -
-          Returns a canonical path by removing leading or trailing - separator characters as needed.
- DategetCreationDate() - -
-           
- StringgetCreationIP() - -
-           
- com.arsdigita.kernel.UsergetCreationUser() - -
-           
- StringgetDescription() - -
-          Returns a description of the resource, or null if no - description has been provided.
- DategetLastModifiedDate() - -
-           
- StringgetLastModifiedIP() - -
-           
- com.arsdigita.kernel.UsergetLastModifiedUser() - -
-           
- StringgetName() - -
-          Returns the name of the file or folder corresponding to this - resource.
- ResourcegetParent() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
-protected  BigDecimalgetParentResourceID() - -
-           
- StringgetPath() - -
-          Converts this resource into a pathname string.
-protected  VectorgetPropertyNames() - -
-          Return the list of declared property names for a Resource.
- BigDecimalgetResourceID() - -
-           
- BigDecimalgetResourceID(String path) - -
-          Retrieve the ID of a child resource using a relative path.
-protected static booleanisAbsolutePath(String path) - -
-          Verifies that the given string corresponds to a valid absolute - path name.
-abstract  booleanisFile() - -
-          Tests whether this resource is a file.
-abstract  booleanisFolder() - -
-          Tests whether this resource is a folder.
- booleanisRoot() - -
-           
-protected static intisValidName(String name) - -
-          Verifies that the string only contains valid characters for - resource names.
-protected static intisValidPath(String path) - -
-          Verifies that the given string corresponds to a valid relative - path name.
-protected static StringretrievePath(BigDecimal id) - -
-          Retrieves the path corresponding to a given resource.
- voidsetCreationDate(Date date) - -
-           
- voidsetCreationIP() - -
-           
- voidsetCreationUser(com.arsdigita.kernel.User user) - -
-           
- voidsetDescription(String description) - -
-           
- voidsetLastModifiedDate(Date date) - -
-           
- voidsetLastModifiedIP() - -
-           
- voidsetLastModifiedUser(com.arsdigita.kernel.User user) - -
-           
- voidsetName(String name) - -
-           
- voidsetParent(Resource parent) - -
-          Set the parent of this resource.
- URLtoURL() - -
-          Returns the URL corresponding to this resource.
- - - - - - - -
Methods inherited from class com.arsdigita.versioning.VersionedACSObject
applyTag, applyUniqueTag, autoPropagateMaster, getMaster, getRolledBackTo, getTransactions, getTransactions, isMaster, isRolledBack, isSubtype, permanentlyDelete, propagateMaster, recordAttributeChange, rollBackTo, rollBackTo, rollForward, save, setMaster, trackChanges
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getDisplayName, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.docmgr.Resource
getID, toString
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARENT

-
-public static final String PARENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-s_log

-
-protected static org.apache.log4j.Logger s_log
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-ResourceImpl

-
-protected ResourceImpl()
-
-
Default constructor. The contained DataObject is - initialized with a new DataObject with an - ObjectType of BASE_DATA_OBJECT_TYPE. -

-

See Also:
DomainObject.DomainObject(String), -ObjectType
-
- -

-ResourceImpl

-
-protected ResourceImpl(String typeName)
-
-
Constructor. The contained DataObject is - initialized with a new DataObject with an - ObjectType specified by the string - typeName. -

-

Parameters:
typeName - The name of the ObjectType of the - contained DataObject.
See Also:
DomainObject.DomainObject(String), -DataObject, -ObjectType
-
- -

-ResourceImpl

-
-protected ResourceImpl(com.arsdigita.persistence.metadata.ObjectType type)
-
-
Constructor. The contained DataObject is - initialized with a new DataObject with an - ObjectType specified by type. -

-

Parameters:
type - The ObjectType of the contained - DataObject.
See Also:
DomainObject.DomainObject(ObjectType), -DataObject, -ObjectType
-
- -

-ResourceImpl

-
-protected ResourceImpl(com.arsdigita.persistence.DataObject dataObject)
-
-
Creates a new resource. Properties of this object are not made - persistent until the save() method is called. -

-

-
- -

-ResourceImpl

-
-protected ResourceImpl(BigDecimal id)
-                throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a resource given the ID -

-

Parameters:
id - the BigDecimal ID
-
- -

-ResourceImpl

-
-protected ResourceImpl(com.arsdigita.persistence.OID oid)
-                throws com.arsdigita.domain.DataObjectNotFoundException
-
-
Creates a resource given the OID -

-

Parameters:
oid - the Object OID
-
- -

-ResourceImpl

-
-protected ResourceImpl(String type,
-                       String name,
-                       String description)
-
-
Creates a named resource of the specified type. -

-

-
- -

-ResourceImpl

-
-protected ResourceImpl(String type,
-                       String name,
-                       String description,
-                       ResourceImpl parent)
-
-
Creates a named resource of the specified type with a given parent. -

-

-
- -

-ResourceImpl

-
-protected ResourceImpl(String type,
-                       ResourceImpl parent)
-
-
Creates an empty resource with the given parent. -

-

- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
-
-
-
-
-
-
-
- -

-delete

-
-public void delete()
-            throws ResourceNotEmptyException
-
-
Deletes a resource. Throws a ResourceNotEmptyException - if the resource still contains children. -

-

-
-
-
- -
Throws: -
ResourceNotEmptyException
-
-
-
- -

-getName

-
-public String getName()
-
-
Description copied from interface: Resource
-
Returns the name of the file or folder corresponding to this - resource. -

-

-
Specified by:
getName in interface Resource
-
-
-
-
-
-
- -

-setName

-
-public void setName(String name)
-
-
-
-
-
-
-
-
-
- -

-getDescription

-
-public String getDescription()
-
-
Description copied from interface: Resource
-
Returns a description of the resource, or null if no - description has been provided. -

-

-
Specified by:
getDescription in interface Resource
-
-
-
-
-
-
- -

-setDescription

-
-public void setDescription(String description)
-
-
-
-
-
-
-
-
-
- -

-getParent

-
-public Resource getParent()
-
-
Description copied from interface: Resource
-
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -

-

-
Specified by:
getParent in interface Resource
-
-
-
-
-
-
- -

-setParent

-
-public void setParent(Resource parent)
-
-
Set the parent of this resource. -

-

-
-
-
-
Parameters:
parent - the parent of this resource
-
-
-
- -

-getParentResourceID

-
-protected BigDecimal getParentResourceID()
-
-
-
-
-
-
-
-
-
- -

-isRoot

-
-public boolean isRoot()
-
-
-
-
-
-
-
-
-
- -

-getPath

-
-public String getPath()
-
-
Description copied from interface: Resource
-
Converts this resource into a pathname string. -

-

-
Specified by:
getPath in interface Resource
-
-
-
-
-
-
- -

-isFolder

-
-public abstract boolean isFolder()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a folder. -

-

-
Specified by:
isFolder in interface Resource
-
-
-
-
-
-
- -

-isFile

-
-public abstract boolean isFile()
-
-
Description copied from interface: Resource
-
Tests whether this resource is a file. -

-

-
Specified by:
isFile in interface Resource
-
-
-
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
Description copied from interface: Resource
-
Returns the URL corresponding to this resource. -

-

-
Specified by:
toURL in interface Resource
-
-
-
-
-
-
- -

-retrievePath

-
-protected static String retrievePath(BigDecimal id)
-
-
Retrieves the path corresponding to a given resource. -

-

-
-
-
-
-
-
-
- -

-isValidPath

-
-protected static int isValidPath(String path)
-
-
Verifies that the given string corresponds to a valid relative - path name. -

-

-
-
-
- -
Returns:
0 for a system-valid parthname, otherwise error codes - defined in InvalidNameException.
See Also:
InvalidNameException
-
-
-
- -

-isAbsolutePath

-
-protected static boolean isAbsolutePath(String path)
-
-
Verifies that the given string corresponds to a valid absolute - path name. -

-

-
-
-
-
-
-
-
- -

-isValidName

-
-protected static int isValidName(String name)
-
-
Verifies that the string only contains valid characters for - resource names. The following are allowed: - - [a-z][A-Z][0-9][-., ] - - In addition, names cannot begin with ".", i.e. we do NOT - support file names like ".profile" at the moment. - The current implementation does not allow international - characters for resource names. -

-

-
-
-
- -
Returns:
0 for a system-valid resource name, otherwise error codes - defined in InvalidNameException.
See Also:
InvalidNameException
-
-
-
- -

-getCanonicalPath

-
-public static String getCanonicalPath(String path)
-                               throws InvalidNameException
-
-
Returns a canonical path by removing leading or trailing - separator characters as needed. -

-

-
-
-
- -
Throws: -
InvalidNameException
-
-
-
- -

-getResourceID

-
-public BigDecimal getResourceID()
-
-
-
-
-
-
-
-
-
- -

-getResourceID

-
-public BigDecimal getResourceID(String path)
-                         throws com.arsdigita.domain.DataObjectNotFoundException,
-                                InvalidNameException
-
-
Retrieve the ID of a child resource using a relative path. - This method is useful for checking the existence of a named - child without the overhead of instantiating that child. -

-

-
-
-
- -
Returns:
the BigDecimal ID of the resource with the specified - relative path -
Throws: -
com.arsdigita.domain.DataObjectNotFoundException -
InvalidNameException
-
-
-
- -

-getPropertyNames

-
-protected Vector getPropertyNames()
-
-
Return the list of declared property names for a Resource. - This list only includes the properties that should be - duplicated during a copy operation. -

-

-
-
-
-
-
-
-
- -

-getLastModifiedDate

-
-public Date getLastModifiedDate()
-
-
-
Specified by:
getLastModifiedDate in interface com.arsdigita.auditing.Audited
-
-
-
-
-
-
- -

-setLastModifiedDate

-
-public void setLastModifiedDate(Date date)
-
-
-
-
-
-
-
-
-
- -

-getCreationDate

-
-public Date getCreationDate()
-
-
-
Specified by:
getCreationDate in interface com.arsdigita.auditing.Audited
-
-
-
-
-
-
- -

-setCreationDate

-
-public void setCreationDate(Date date)
-
-
-
-
-
-
-
-
-
- -

-getCreationUser

-
-public com.arsdigita.kernel.User getCreationUser()
-
-
-
Specified by:
getCreationUser in interface com.arsdigita.auditing.Audited
-
-
-
-
-
-
- -

-setCreationUser

-
-public void setCreationUser(com.arsdigita.kernel.User user)
-
-
-
-
-
-
-
-
-
- -

-getLastModifiedUser

-
-public com.arsdigita.kernel.User getLastModifiedUser()
-
-
-
Specified by:
getLastModifiedUser in interface com.arsdigita.auditing.Audited
-
-
-
-
-
-
- -

-setLastModifiedUser

-
-public void setLastModifiedUser(com.arsdigita.kernel.User user)
-
-
-
-
-
-
-
-
-
- -

-getCreationIP

-
-public String getCreationIP()
-
-
-
Specified by:
getCreationIP in interface com.arsdigita.auditing.Audited
-
-
-
-
-
-
- -

-setCreationIP

-
-public void setCreationIP()
-
-
-
-
-
-
-
-
-
- -

-getLastModifiedIP

-
-public String getLastModifiedIP()
-
-
-
Specified by:
getLastModifiedIP in interface com.arsdigita.auditing.Audited
-
-
-
-
-
-
- -

-setLastModifiedIP

-
-public void setLastModifiedIP()
-
-
-
-
-
-
-
-
-
- -

-copy

-
-protected static void copy(ResourceImpl src,
-                           ResourceImpl dest)
-
-
Copy the generic properties of a Resource. Uses an explicit - list of properties to copy as determined by getPropertyNames. -

-

-
-
-
-
-
-
-
- -

-copyTo

-
-public Resource copyTo(Resource parent)
-
-
Description copied from interface: Resource
-
Copies the resource into another location. Preserves the - original name of the resource but places the copy inside a new - parent resource. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
parent - the parent of the copy -
Returns:
a copy of the original resource
-
-
-
- -

-copyTo

-
-public Resource copyTo(String name)
-
-
Description copied from interface: Resource
-
Copies the resource into the same location (same parent) with a - new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy -
Returns:
a copy of the original resource.
-
-
-
- -

-copyTo

-
-public abstract Resource copyTo(String name,
-                                Resource parent)
-
-
Description copied from interface: Resource
-
Copies the resource into another location with a new name. -

-

-
Specified by:
copyTo in interface Resource
-
-
-
Parameters:
name - the name of the copy
parent - the parent of the copy -
Returns:
a copy of the original resource.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImplCollection.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImplCollection.html deleted file mode 100755 index e5f83e6f0..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceImplCollection.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - -ResourceImplCollection (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ResourceImplCollection

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainQuery
-      extended bycom.arsdigita.domain.DomainCollection
-          extended bycom.arsdigita.docmgr.ResourceImplCollection
-
-
-
All Implemented Interfaces:
com.arsdigita.persistence.DataQuery
-
-
-
-
public class ResourceImplCollection
extends com.arsdigita.domain.DomainCollection
- -

-

-
Author:
-
Jim Parsons <jparsons@redhat.com>
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainCollection
m_dataCollection, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.domain.DomainQuery
m_dataQuery
-  - - - - - - - - - - -
-Constructor Summary
ResourceImplCollection(com.arsdigita.persistence.DataCollection dataCollection) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- com.arsdigita.domain.DomainObjectgetDomainObject() - -
-          Get the current item as a ResourceImpl domain object.
- ResourceImplgetResourceImpl() - -
-          Get the current item as a ResourceImpl domain object.
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainQuery
addEqualsFilter, addFilter, addFilter, addInSubqueryFilter, addInSubqueryFilter, addNotEqualsFilter, addNotInSubqueryFilter, addOrder, addOrderWithNull, addPath, alias, clearFilter, clearOrder, close, first, get, getFilterFactory, getOption, getParameter, getPosition, getPropertyValues, getType, hasProperty, isAfterLast, isBeforeFirst, isEmpty, isFirst, isLast, last, next, previous, removeFilter, reset, rewind, setFilter, setOption, setOrder, setParameter, setRange, setRange, setReturnsLowerBound, setReturnsUpperBound, size
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-ResourceImplCollection

-
-public ResourceImplCollection(com.arsdigita.persistence.DataCollection dataCollection)
-
-
- - - - - - - - -
-Method Detail
- -

-getDomainObject

-
-public com.arsdigita.domain.DomainObject getDomainObject()
-
-
Get the current item as a ResourceImpl domain object. -

-

- -
Returns:
a ResourceImpl domain object.
-
-
-
- -

-getResourceImpl

-
-public ResourceImpl getResourceImpl()
-
-
Get the current item as a ResourceImpl domain object. -

-

- -
Returns:
a ResourceImpl domain object.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceNotEmptyException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceNotEmptyException.html deleted file mode 100755 index 517ffcc82..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ResourceNotEmptyException.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - -ResourceNotEmptyException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class ResourceNotEmptyException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended byjava.lang.RuntimeException
-              extended bycom.arsdigita.util.UncheckedWrapperException
-                  extended bycom.arsdigita.persistence.PersistenceException
-                      extended bycom.arsdigita.docmgr.ResourceNotEmptyException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class ResourceNotEmptyException
extends com.arsdigita.persistence.PersistenceException
- -

-Exception thrown to indicate that resource contains children and - cannot be deleted. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ResourceNotEmptyException.java#2 $
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.persistence.PersistenceException
versionId
-  - - - - - - - - - - -
-Constructor Summary
ResourceNotEmptyException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.persistence.PersistenceException
newInstance, newInstance, newInstance
- - - - - - - -
Methods inherited from class com.arsdigita.util.UncheckedWrapperException
getMessage, getRootCause, hasRootCause, printStackTrace, printStackTrace, printStackTrace, throwLoggedException, toString, toString
- - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-ResourceNotEmptyException

-
-public ResourceNotEmptyException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/TypeChangeException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/TypeChangeException.html deleted file mode 100755 index f905725a8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/TypeChangeException.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - -TypeChangeException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class TypeChangeException

-
-java.lang.Object
-  extended byjava.lang.Throwable
-      extended byjava.lang.Exception
-          extended byjava.lang.RuntimeException
-              extended bycom.arsdigita.docmgr.ResourceException
-                  extended bycom.arsdigita.docmgr.TypeChangeException
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class TypeChangeException
extends ResourceException
- -

-Exception thrown to indicate that a resource name (or path) contains - invalid characters. -

- -

-

-
Version:
-
$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/TypeChangeException.java#2 $
-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
TypeChangeException(String message) - -
-          Creates a new exception with a given error message.
-  - - - - - - - - - - -
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-TypeChangeException

-
-public TypeChangeException(String message)
-
-
Creates a new exception with a given error message. -

-

Parameters:
message - the error message
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Util.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Util.html deleted file mode 100755 index 219d0cd73..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/Util.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - -Util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr -
-Class Util

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.Util
-
-
-
-
public class Util
extends Object
- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
Util() - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static voidredirectToLoginPage(com.arsdigita.bebop.PageState ps) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-Util

-
-public Util()
-
-
- - - - - - - - -
-Method Detail
- -

-redirectToLoginPage

-
-public static void redirectToLoginPage(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ApplicationAuthenticationListener.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ApplicationAuthenticationListener.html deleted file mode 100755 index 87daf46bc..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ApplicationAuthenticationListener.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ApplicationAuthenticationListener (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ApplicationAuthenticationListener

-
-No usage of com.arsdigita.docmgr.ApplicationAuthenticationListener -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Constants.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Constants.html deleted file mode 100755 index 5da1bef7e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Constants.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.docmgr.Constants (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.docmgr.Constants

-
- - - - - - - - - -
-Packages that use Constants
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of Constants in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - - - - - - - - - -
Classes in com.arsdigita.docmgr that implement Constants
- classFile - -
-          Represents a File in the document manager application.
- classFolder - -
-          Represents a Folder in the document manager application.
- classRepository - -
-          A repository is the application that provides access to files and - folders.
- classResourceImpl - -
-          This class is the abstract parent class of File and Folder.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ContentTypeException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ContentTypeException.html deleted file mode 100755 index 6dc9a9a2f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ContentTypeException.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ContentTypeException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ContentTypeException

-
- - - - - - - - - -
-Packages that use ContentTypeException
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of ContentTypeException in com.arsdigita.docmgr
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr that throw ContentTypeException
- voidFile.initializeContentType(HttpServletRequest request) - -
-          Initialize the content type of a file by looking up a MIME type - from the file extension or an optional Content-Type header in - an HttpServletRequest.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/DocBlobject.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/DocBlobject.html deleted file mode 100755 index a99729f4b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/DocBlobject.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.DocBlobject (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.DocBlobject

-
-No usage of com.arsdigita.docmgr.DocBlobject -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/File.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/File.html deleted file mode 100755 index 4705e4cb6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/File.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.File (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.File

-
- - - - - - - - - - - - - -
-Packages that use File
com.arsdigita.docmgr  
com.arsdigita.docmgr.ui  
-  -

- - - - - -
-Uses of File in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that return File
- FileFolder.retrieveFile(String path) - -
-           
-static FileFile.retrieveFile(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  -

- - - - - -
-Uses of File in com.arsdigita.docmgr.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr.ui that return File
-static FileDMUtils.getFile(BigDecimal id) - -
-          Attempts to load a file by ID.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Folder.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Folder.html deleted file mode 100755 index 9284c7c1f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Folder.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.Folder (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.Folder

-
- - - - - - - - - - - - - -
-Packages that use Folder
com.arsdigita.docmgr  
com.arsdigita.docmgr.ui  
-  -

- - - - - -
-Uses of Folder in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that return Folder
- FolderRepository.getRoot() - -
-           
- FolderFolder.retrieveFolder(String path) - -
-          Retrieves the named sub folder by searching from the current folder - along the given path.
- FolderFolder.createFolders(String path) - -
-          Creates the sub folder named by path, including any necessary - but nonexistent parent folders.
-  -

- - - - - - - - - - - - - - - - - -
Constructors in com.arsdigita.docmgr with parameters of type Folder
Folder(String name, - String description, - Folder parent) - -
-          Creates a sub folder inside a given parent folder.
File(String name, - String description, - Folder parent) - -
-          Creates a file inside a given parent folder.
File(String baseDataObjectType, - String name, - String description, - Folder parent) - -
-          Creates a file inside a given parent folder.
File(Folder parent) - -
-          Creates an empty file inside a given parent folder.
-  -

- - - - - -
-Uses of Folder in com.arsdigita.docmgr.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr.ui that return Folder
-static FolderDMUtils.getRootFolder(com.arsdigita.bebop.PageState state) - -
-          Gets or sets the root folder id and returns the root Folder
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr.ui with parameters of type Folder
-static voidDMUtils.setRoot(com.arsdigita.bebop.PageState state, - Folder root) - -
-          Change global state parameter of root folder.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidMimeTypeFormatException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidMimeTypeFormatException.html deleted file mode 100755 index 685261d87..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidMimeTypeFormatException.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.InvalidMimeTypeFormatException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.InvalidMimeTypeFormatException

-
- - - - - - - - - -
-Packages that use InvalidMimeTypeFormatException
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of InvalidMimeTypeFormatException in com.arsdigita.docmgr
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr that throw InvalidMimeTypeFormatException
-static voidMimeTypeXMLLoader.parse(InputStream is) - -
-          Parse the input stream and load the extracted XML source.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidNameException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidNameException.html deleted file mode 100755 index 1002f5f44..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/InvalidNameException.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.InvalidNameException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.InvalidNameException

-
- - - - - - - - - -
-Packages that use InvalidNameException
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of InvalidNameException in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that throw InvalidNameException
- FolderFolder.retrieveFolder(String path) - -
-          Retrieves the named sub folder by searching from the current folder - along the given path.
- FileFolder.retrieveFile(String path) - -
-           
- FolderFolder.createFolders(String path) - -
-          Creates the sub folder named by path, including any necessary - but nonexistent parent folders.
-static StringResourceImpl.getCanonicalPath(String path) - -
-          Returns a canonical path by removing leading or trailing - separator characters as needed.
- BigDecimalResourceImpl.getResourceID(String path) - -
-          Retrieve the ID of a child resource using a relative path.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Lockable.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Lockable.html deleted file mode 100755 index 5e8eef3be..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Lockable.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.docmgr.Lockable (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.docmgr.Lockable

-
-No usage of com.arsdigita.docmgr.Lockable -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/MimeTypeXMLLoader.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/MimeTypeXMLLoader.html deleted file mode 100755 index dcbcae23b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/MimeTypeXMLLoader.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.MimeTypeXMLLoader (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.MimeTypeXMLLoader

-
-No usage of com.arsdigita.docmgr.MimeTypeXMLLoader -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Repository.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Repository.html deleted file mode 100755 index 560a10c6d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Repository.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.Repository (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.Repository

-
- - - - - - - - - -
-Packages that use Repository
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of Repository in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that return Repository
-static RepositoryRepository.create(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This is called when the application is created.
-static RepositoryRepository.getCurrentRepository(HttpServletRequest req) - -
-           
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr with parameters of type Repository
-static ResourceImplCollectionRepository.getRecentlyModifiedDocuments(Repository rep) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Resource.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Resource.html deleted file mode 100755 index b7c00441d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Resource.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.docmgr.Resource (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.docmgr.Resource

-
- - - - - - - - - -
-Packages that use Resource
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of Resource in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - - - - - -
Classes in com.arsdigita.docmgr that implement Resource
- classFile - -
-          Represents a File in the document manager application.
- classFolder - -
-          Represents a Folder in the document manager application.
- classResourceImpl - -
-          This class is the abstract parent class of File and Folder.
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that return Resource
-static ResourceRepository.retrieveResource(String absPath) - -
-          Convenience method to retrieve a resource (file or folder) by - absolute path name.
- ResourceFolder.copyTo(String name, - Resource parent) - -
-          Copy this folder to a new location.
- ResourceResource.getParent() - -
-          Returns the path name of this resource's parent, or null if - this resource does not have a parent.
- ResourceResource.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceResource.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceResource.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
- ResourceResourceImpl.getParent() - -
-           
- ResourceResourceImpl.copyTo(Resource parent) - -
-           
- ResourceResourceImpl.copyTo(String name) - -
-           
-abstract  ResourceResourceImpl.copyTo(String name, - Resource parent) - -
-           
- ResourceFile.copyTo(String name, - Resource parent) - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr with parameters of type Resource
- ResourceFolder.copyTo(String name, - Resource parent) - -
-          Copy this folder to a new location.
- ResourceResource.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceResource.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- voidResourceImpl.setParent(Resource parent) - -
-          Set the parent of this resource.
- ResourceResourceImpl.copyTo(Resource parent) - -
-           
-abstract  ResourceResourceImpl.copyTo(String name, - Resource parent) - -
-           
- ResourceFile.copyTo(String name, - Resource parent) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceException.html deleted file mode 100755 index b78222d26..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceException.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ResourceException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ResourceException

-
- - - - - - - - - -
-Packages that use ResourceException
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of ResourceException in com.arsdigita.docmgr
-  -

- - - - - - - - - -
Subclasses of ResourceException in com.arsdigita.docmgr
- classTypeChangeException - -
-          Exception thrown to indicate that a resource name (or path) contains - invalid characters.
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that throw ResourceException
- voidFile.setContent(File file, - String name, - String description) - -
-          Sets the content of this resource to a file with a given name and - description.
- voidFile.setDataHandler(DataHandler dh) - -
-          Provides the mechanism to set this file's content.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceExistsException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceExistsException.html deleted file mode 100755 index 3477ad211..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceExistsException.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ResourceExistsException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ResourceExistsException

-
- - - - - - - - - -
-Packages that use ResourceExistsException
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of ResourceExistsException in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that throw ResourceExistsException
- FolderFolder.createFolders(String path) - -
-          Creates the sub folder named by path, including any necessary - but nonexistent parent folders.
- ResourceResource.copyTo(Resource parent) - -
-          Copies the resource into another location.
- ResourceResource.copyTo(String name, - Resource parent) - -
-          Copies the resource into another location with a new name.
- ResourceResource.copyTo(String name) - -
-          Copies the resource into the same location (same parent) with a - new name.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImpl.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImpl.html deleted file mode 100755 index 55e04d5b1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImpl.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ResourceImpl (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ResourceImpl

-
- - - - - - - - - -
-Packages that use ResourceImpl
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of ResourceImpl in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - -
Subclasses of ResourceImpl in com.arsdigita.docmgr
- classFile - -
-          Represents a File in the document manager application.
- classFolder - -
-          Represents a Folder in the document manager application.
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr that return ResourceImpl
- ResourceImplResourceImplCollection.getResourceImpl() - -
-          Get the current item as a ResourceImpl domain object.
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr with parameters of type ResourceImpl
-protected static voidResourceImpl.copy(ResourceImpl src, - ResourceImpl dest) - -
-          Copy the generic properties of a Resource.
-  -

- - - - - - - - - - - -
Constructors in com.arsdigita.docmgr with parameters of type ResourceImpl
ResourceImpl(String type, - String name, - String description, - ResourceImpl parent) - -
-          Creates a named resource of the specified type with a given parent.
ResourceImpl(String type, - ResourceImpl parent) - -
-          Creates an empty resource with the given parent.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImplCollection.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImplCollection.html deleted file mode 100755 index 57bbdbcdc..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceImplCollection.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ResourceImplCollection (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ResourceImplCollection

-
- - - - - - - - - -
-Packages that use ResourceImplCollection
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of ResourceImplCollection in com.arsdigita.docmgr
-  -

- - - - - - - - - - - - - -
Methods in com.arsdigita.docmgr that return ResourceImplCollection
-static ResourceImplCollectionRepository.getRecentlyModifiedDocuments() - -
-           
-static ResourceImplCollectionRepository.getRecentlyModifiedDocuments(Repository rep) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceNotEmptyException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceNotEmptyException.html deleted file mode 100755 index c45561bc0..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/ResourceNotEmptyException.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ResourceNotEmptyException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ResourceNotEmptyException

-
- - - - - - - - - -
-Packages that use ResourceNotEmptyException
com.arsdigita.docmgr  
-  -

- - - - - -
-Uses of ResourceNotEmptyException in com.arsdigita.docmgr
-  -

- - - - - - - - - -
Methods in com.arsdigita.docmgr that throw ResourceNotEmptyException
- voidResourceImpl.delete() - -
-          Deletes a resource.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/TypeChangeException.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/TypeChangeException.html deleted file mode 100755 index 79fbd1518..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/TypeChangeException.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.TypeChangeException (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.TypeChangeException

-
-No usage of com.arsdigita.docmgr.TypeChangeException -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Util.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Util.html deleted file mode 100755 index 4664dd2d9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/class-use/Util.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.Util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.Util

-
-No usage of com.arsdigita.docmgr.Util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/Initializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/Initializer.html deleted file mode 100755 index ad2cc4cc6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/Initializer.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - -Initializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.installer -
-Class Initializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended bycom.arsdigita.docmgr.installer.Initializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class Initializer
extends com.arsdigita.runtime.CompoundInitializer
- -

-Initializes the document manager package, sets up the - DomainFactory, registers knowledge types and portlets. -

- -

-

-
Version:
-
$Revision: #7 $ $Date: 2003/07/10 $
-
Author:
-
Stefan Deusch, David Dao
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
Initializer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidinit(com.arsdigita.runtime.DomainInitEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.CompoundInitializer
add, init, init
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-Initializer

-
-public Initializer()
-
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init(com.arsdigita.runtime.DomainInitEvent e)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/class-use/Initializer.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/class-use/Initializer.html deleted file mode 100755 index bda0e810e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/class-use/Initializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.installer.Initializer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.installer.Initializer

-
-No usage of com.arsdigita.docmgr.installer.Initializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-frame.html deleted file mode 100755 index c2eeb14f2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -com.arsdigita.docmgr.installer (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.docmgr.installer - - - - -
-Classes  - -
-Initializer
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-summary.html deleted file mode 100755 index b46f5e36f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-summary.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -com.arsdigita.docmgr.installer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.docmgr.installer -

- - - - - - - - - -
-Class Summary
InitializerInitializes the document manager package, sets up the - DomainFactory, registers knowledge types and portlets.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-tree.html deleted file mode 100755 index 252689a70..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-tree.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -com.arsdigita.docmgr.installer Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.docmgr.installer -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-use.html deleted file mode 100755 index c22ca1d30..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/installer/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.docmgr.installer (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.docmgr.installer

-
-No usage of com.arsdigita.docmgr.installer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-frame.html deleted file mode 100755 index a6f3c154e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-frame.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - -com.arsdigita.docmgr (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.docmgr - - - - -
-Interfaces  - -
-Constants -
-Lockable -
-Resource
- - - - - - -
-Classes  - -
-ApplicationAuthenticationListener -
-DocBlobject -
-File -
-Folder -
-MimeTypeXMLLoader -
-Repository -
-ResourceImpl -
-ResourceImplCollection -
-Util
- - - - - - -
-Exceptions  - -
-ContentTypeException -
-InvalidMimeTypeFormatException -
-InvalidNameException -
-ResourceException -
-ResourceExistsException -
-ResourceNotEmptyException -
-TypeChangeException
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-summary.html deleted file mode 100755 index 71515155b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-summary.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - -com.arsdigita.docmgr (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.docmgr -

- - - - - - - - - - - - - - - - - -
-Interface Summary
ConstantsConstants used throughout the document manager application.
LockableThis interface specifies functionality to lock a - an object by a user.
ResourceThis interface describes the functionality common to operations - on files and folders in the document manager application.
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
ApplicationAuthenticationListenerA RequestListener that verifies the user - has a given privilege on the current Application.
DocBlobject 
FileRepresents a File in the document manager application.
FolderRepresents a Folder in the document manager application.
MimeTypeXMLLoaderInitializer helper class which loades more Mime types into the - database from an xml file.
RepositoryA repository is the application that provides access to files and - folders.
ResourceImplThis class is the abstract parent class of File and Folder.
ResourceImplCollection 
Util 
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Exception Summary
ContentTypeExceptionBase class for content type exceptions.
InvalidMimeTypeFormatException 
InvalidNameExceptionException thrown to indicate that a resource name (or path) - is in an invalid state.
ResourceExceptionBase class for resource exceptions.
ResourceExistsExceptionException thrown to indicate that another resource exists with the - same parent and name.
ResourceNotEmptyExceptionException thrown to indicate that resource contains children and - cannot be deleted.
TypeChangeExceptionException thrown to indicate that a resource name (or path) contains - invalid characters.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-tree.html deleted file mode 100755 index d118e2890..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-tree.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - -com.arsdigita.docmgr Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.docmgr -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -

-Interface Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-use.html deleted file mode 100755 index e45162b93..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/package-use.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.docmgr (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.docmgr

-
- - - - - - - - - - - - - -
-Packages that use com.arsdigita.docmgr
com.arsdigita.docmgr  
com.arsdigita.docmgr.ui  
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Classes in com.arsdigita.docmgr used by com.arsdigita.docmgr
Constants - -
-          Constants used throughout the document manager application.
ContentTypeException - -
-          Base class for content type exceptions.
File - -
-          Represents a File in the document manager application.
Folder - -
-          Represents a Folder in the document manager application.
InvalidMimeTypeFormatException - -
-           
InvalidNameException - -
-          Exception thrown to indicate that a resource name (or path) - is in an invalid state.
Repository - -
-          A repository is the application that provides access to files and - folders.
Resource - -
-          This interface describes the functionality common to operations - on files and folders in the document manager application.
ResourceException - -
-          Base class for resource exceptions.
ResourceExistsException - -
-          Exception thrown to indicate that another resource exists with the - same parent and name.
ResourceImpl - -
-          This class is the abstract parent class of File and Folder.
ResourceImplCollection - -
-           
ResourceNotEmptyException - -
-          Exception thrown to indicate that resource contains children and - cannot be deleted.
-  -

- - - - - - - - - - - -
-Classes in com.arsdigita.docmgr used by com.arsdigita.docmgr.ui
File - -
-          Represents a File in the document manager application.
Folder - -
-          Represents a Folder in the document manager application.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMConstants.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMConstants.html deleted file mode 100755 index 1e871cdee..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMConstants.html +++ /dev/null @@ -1,2168 +0,0 @@ - - - - - - -DMConstants (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Interface DMConstants

-
-
All Known Implementing Classes:
DMDispatcher, DMUtils, FileUploadForm
-
-
-
-
public interface DMConstants
- -

-Variously used constant objects used in Document Manager UI -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringABS_PATH - -
-           
-static com.arsdigita.bebop.LabelACTION_COPY_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_COPY_SUBMIT - -
-           
-static StringACTION_COPY_VALUE - -
-           
-static com.arsdigita.bebop.LabelACTION_CUT_LABEL - -
-           
-static StringACTION_CUT_VALUE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_DELETE_CONFIRM - -
-           
-static com.arsdigita.bebop.LabelACTION_DELETE_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_DELETE_SUBMIT - -
-           
-static StringACTION_DELETE_VALUE - -
-           
-static com.arsdigita.bebop.LabelACTION_ERROR_CONTINUE - -
-           
-static com.arsdigita.bebop.LabelACTION_ERROR_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageACTION_MOVE_SUBMIT - -
-           
-static StringBUNDLE_NAME - -
-          Globalization resource
-static com.arsdigita.globalization.GlobalizedMessageCANCEL - -
-           
-static com.arsdigita.bebop.LabelDESTINATION_FOLDER_PANEL_HEADER - -
-          Action Panel Constants
-static com.arsdigita.globalization.GlobalizedMessageDIFFERENT_MIMETYPE_ERROR - -
-           
-static StringDOCS_XML_NS - -
-          The XML namespace.
-static com.arsdigita.globalization.GlobalizedMessageEMAIL_INVALID_ERROR - -
-           
-static com.arsdigita.bebop.LabelFILE_ACTION_HEADER - -
-          File Action Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_DELETE_CONFIRM - -
-          FILE DELETE link
-static com.arsdigita.bebop.LabelFILE_DELETE_HEADER - -
-          File-Delete Form
-static com.arsdigita.globalization.GlobalizedMessageFILE_DELETE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelFILE_DOWNLOAD_HEADER - -
-          File Download Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_DOWNLOAD_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_EDIT_ACTION_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelFILE_EDIT_HEADER - -
-          File Edit Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_EDIT_LINK - -
-          File Action Panel Constants
-static com.arsdigita.bebop.LabelFILE_FEEDBACK_HEADER - -
-          File Feedback Panel
-static com.arsdigita.bebop.parameters.BigDecimalParameterFILE_ID_PARAM - -
-           
-static StringFILE_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_COMMENTS_TITLE - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_HISTORY_TITLE - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_LABEL - -
-          DM File Info Page
-static com.arsdigita.bebop.LabelFILE_INFO_LINKS_TITLE - -
-           
-static com.arsdigita.bebop.LabelFILE_INFO_PROPERTIES_TITLE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_KEYWORDS - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_NAME - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_NAME_REQUIRED - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_NEW_VERSION_LINK - -
-           
-static com.arsdigita.bebop.LabelFILE_PROPERTIES_HEADER - -
-          File Properties
-static com.arsdigita.bebop.LabelFILE_REVISION_HISTORY_HEADER - -
-          File Revision History Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_SAVE - -
-           
-static com.arsdigita.bebop.LabelFILE_SEND_COLLEAGUE_HEADER - -
-          File-Send-to-Colleague Form
-static com.arsdigita.globalization.GlobalizedMessageFILE_SEND_COLLEAGUE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SOURCE - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_SUBMIT - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_UPLOAD_ADD_FILE - -
-           
-static com.arsdigita.bebop.LabelFILE_UPLOAD_FORM_HEADER - -
-          File Uplaod Form
-static com.arsdigita.bebop.LabelFILE_UPLOAD_HEADER - -
-          File Upload Panel
-static com.arsdigita.globalization.GlobalizedMessageFILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFILE_VERSION_DESCRIPTION - -
-           
-static StringFILES - -
-           
-static com.arsdigita.bebop.LabelFOLDER_CREATE_FORM_HEADER - -
-          Folder Create Form
-static StringFOLDER_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelFOLDER_DESCRIPTION_LABEL - -
-           
-static com.arsdigita.bebop.LabelFOLDER_EMPTY_LABEL - -
-           
-static StringFOLDER_ID - -
-           
-static com.arsdigita.bebop.LabelFOLDER_INFORMATION_HEADER - -
-          One Folder content
-static StringFOLDER_NAME - -
-          Folder parameters
-static com.arsdigita.bebop.LabelFOLDER_NAME_LABEL - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_NEW_FILE_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_NEW_FOLDER_LINK - -
-           
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_PARENTNOTFOUND_ERROR - -
-          Error messages
-static com.arsdigita.globalization.GlobalizedMessageFOLDER_SAVE - -
-           
-static StringFOLDERS - -
-           
-static StringGET_ALL_TREES - -
-           
-static StringGET_CHILDREN - -
-           
-static StringGET_REPOSITORIES - -
-           
-static StringGET_REPOSITORIES_ROOTS - -
-           
-static com.arsdigita.bebop.LabelGO_BACK_LABEL - -
-           
-static com.arsdigita.bebop.LabelHELP_LABEL - -
-           
-static StringIS_FOLDER - -
-           
-static StringIS_LOCKED - -
-           
-static StringIS_MOUNTED - -
-           
-static StringLAST_MODIFIED - -
-           
-static StringMIME_TYPE_LABEL - -
-           
-static StringMODIFYING_USER - -
-           
-static com.arsdigita.bebop.LabelMY_WORKSPACE_LABEL - -
-          Navigational dimensional bar
-static StringNAME - -
-           
-static StringNUM_FILES - -
-           
-static com.arsdigita.bebop.LabelPAGE_TITLE_LABEL - -
-          DM Index page title
-static com.arsdigita.bebop.LabelREPOSITORIES_INFORMATION_HEADER - -
-          Repositories
-static com.arsdigita.globalization.GlobalizedMessageREPOSITORIES_MOUNTED_SAVE - -
-          Repsitories Selection Form
-static StringREPOSITORY_ID - -
-           
-static com.arsdigita.globalization.GlobalizedMessageREPOSITORY_RECENTDOCS_EMPTY - -
-           
-static com.arsdigita.globalization.GlobalizedMessageRESOURCE_EXISTS_ERROR - -
-           
-static StringRESOURCE_ID - -
-           
-static com.arsdigita.bebop.parameters.StringParameterROOT_ADD_DOC_PARAM - -
-           
-static StringROOT_ADD_DOC_PARAM_NAME - -
-           
-static com.arsdigita.globalization.GlobalizedMessageROOT_ADD_RESOURCE_LINK - -
-          Portlet Panel Constants
-static com.arsdigita.bebop.parameters.BigDecimalParameterROOTFOLDER_ID_PARAM - -
-           
-static StringROOTFOLDER_ID_PARAM_NAME - -
-          Global state parameters.
-static com.arsdigita.bebop.parameters.BigDecimalParameterSEL_FOLDER_ID_PARAM - -
-           
-static StringSEL_FOLDER_ID_PARAM_NAME - -
-           
-static com.arsdigita.bebop.LabelSEND_FRIEND_FORM_DESCRIPTION - -
-           
-static com.arsdigita.bebop.LabelSEND_FRIEND_FORM_EMAIL_LIST - -
-           
-static com.arsdigita.bebop.LabelSEND_FRIEND_FORM_EMAIL_SUBJECT - -
-          Send to colleague form variables.
-static com.arsdigita.globalization.GlobalizedMessageSEND_FRIEND_FORM_SUBMIT - -
-           
-static com.arsdigita.bebop.LabelSIGN_OUT_LABEL - -
-           
-static StringSIZE - -
-           
-static StringTYPE - -
-           
-static com.arsdigita.bebop.LabelWS_BROWSE_TITLE - -
-          Page navigational tabs
-static com.arsdigita.bebop.LabelWS_REPOSITORIES_TITLE - -
-           
-static com.arsdigita.bebop.LabelWS_SEARCH_TITLE - -
-           
-  - - - - - - -

- - - - - - - - -
-Field Detail
- -

-FOLDER_ID

-
-public static final String FOLDER_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_LOCKED

-
-public static final String IS_LOCKED
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_MOUNTED

-
-public static final String IS_MOUNTED
-
-
-
See Also:
Constant Field Values
-
-
- -

-LAST_MODIFIED

-
-public static final String LAST_MODIFIED
-
-
-
See Also:
Constant Field Values
-
-
- -

-MODIFYING_USER

-
-public static final String MODIFYING_USER
-
-
-
See Also:
Constant Field Values
-
-
- -

-MIME_TYPE_LABEL

-
-public static final String MIME_TYPE_LABEL
-
-
-
See Also:
Constant Field Values
-
-
- -

-NAME

-
-public static final String NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ABS_PATH

-
-public static final String ABS_PATH
-
-
-
See Also:
Constant Field Values
-
-
- -

-NUM_FILES

-
-public static final String NUM_FILES
-
-
-
See Also:
Constant Field Values
-
-
- -

-REPOSITORY_ID

-
-public static final String REPOSITORY_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-RESOURCE_ID

-
-public static final String RESOURCE_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-SIZE

-
-public static final String SIZE
-
-
-
See Also:
Constant Field Values
-
-
- -

-TYPE

-
-public static final String TYPE
-
-
-
See Also:
Constant Field Values
-
-
- -

-IS_FOLDER

-
-public static final String IS_FOLDER
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_ALL_TREES

-
-public static final String GET_ALL_TREES
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_REPOSITORIES

-
-public static final String GET_REPOSITORIES
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_REPOSITORIES_ROOTS

-
-public static final String GET_REPOSITORIES_ROOTS
-
-
-
See Also:
Constant Field Values
-
-
- -

-GET_CHILDREN

-
-public static final String GET_CHILDREN
-
-
-
See Also:
Constant Field Values
-
-
- -

-FILES

-
-public static final String FILES
-
-
-
See Also:
Constant Field Values
-
-
- -

-FOLDERS

-
-public static final String FOLDERS
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOCS_XML_NS

-
-public static final String DOCS_XML_NS
-
-
The XML namespace. -

-

-
See Also:
Constant Field Values
-
-
- -

-BUNDLE_NAME

-
-public static final String BUNDLE_NAME
-
-
Globalization resource -

-

-
See Also:
Constant Field Values
-
-
- -

-ROOTFOLDER_ID_PARAM_NAME

-
-public static final String ROOTFOLDER_ID_PARAM_NAME
-
-
Global state parameters. -

-

-
See Also:
Constant Field Values
-
-
- -

-ROOTFOLDER_ID_PARAM

-
-public static final com.arsdigita.bebop.parameters.BigDecimalParameter ROOTFOLDER_ID_PARAM
-
-
-
-
-
- -

-SEL_FOLDER_ID_PARAM_NAME

-
-public static final String SEL_FOLDER_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-SEL_FOLDER_ID_PARAM

-
-public static final com.arsdigita.bebop.parameters.BigDecimalParameter SEL_FOLDER_ID_PARAM
-
-
-
-
-
- -

-FILE_ID_PARAM_NAME

-
-public static final String FILE_ID_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-FILE_ID_PARAM

-
-public static final com.arsdigita.bebop.parameters.BigDecimalParameter FILE_ID_PARAM
-
-
-
-
-
- -

-PAGE_TITLE_LABEL

-
-public static final com.arsdigita.bebop.Label PAGE_TITLE_LABEL
-
-
DM Index page title -

-

-
-
-
- -

-FILE_INFO_LABEL

-
-public static final com.arsdigita.bebop.Label FILE_INFO_LABEL
-
-
DM File Info Page -

-

-
-
-
- -

-FILE_INFO_PROPERTIES_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_PROPERTIES_TITLE
-
-
-
-
-
- -

-FILE_INFO_HISTORY_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_HISTORY_TITLE
-
-
-
-
-
- -

-FILE_INFO_COMMENTS_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_COMMENTS_TITLE
-
-
-
-
-
- -

-FILE_INFO_LINKS_TITLE

-
-public static final com.arsdigita.bebop.Label FILE_INFO_LINKS_TITLE
-
-
-
-
-
- -

-GO_BACK_LABEL

-
-public static final com.arsdigita.bebop.Label GO_BACK_LABEL
-
-
-
-
-
- -

-MY_WORKSPACE_LABEL

-
-public static final com.arsdigita.bebop.Label MY_WORKSPACE_LABEL
-
-
Navigational dimensional bar -

-

-
-
-
- -

-SIGN_OUT_LABEL

-
-public static final com.arsdigita.bebop.Label SIGN_OUT_LABEL
-
-
-
-
-
- -

-HELP_LABEL

-
-public static final com.arsdigita.bebop.Label HELP_LABEL
-
-
-
-
-
- -

-WS_BROWSE_TITLE

-
-public static final com.arsdigita.bebop.Label WS_BROWSE_TITLE
-
-
Page navigational tabs -

-

-
-
-
- -

-WS_SEARCH_TITLE

-
-public static final com.arsdigita.bebop.Label WS_SEARCH_TITLE
-
-
-
-
-
- -

-WS_REPOSITORIES_TITLE

-
-public static final com.arsdigita.bebop.Label WS_REPOSITORIES_TITLE
-
-
-
-
-
- -

-FOLDER_INFORMATION_HEADER

-
-public static final com.arsdigita.bebop.Label FOLDER_INFORMATION_HEADER
-
-
One Folder content -

-

-
-
-
- -

-REPOSITORIES_INFORMATION_HEADER

-
-public static final com.arsdigita.bebop.Label REPOSITORIES_INFORMATION_HEADER
-
-
Repositories -

-

-
-
-
- -

-REPOSITORY_RECENTDOCS_EMPTY

-
-public static final com.arsdigita.globalization.GlobalizedMessage REPOSITORY_RECENTDOCS_EMPTY
-
-
-
-
-
- -

-FILE_UPLOAD_FORM_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_UPLOAD_FORM_HEADER
-
-
File Uplaod Form -

-

-
-
-
- -

-FOLDER_CREATE_FORM_HEADER

-
-public static final com.arsdigita.bebop.Label FOLDER_CREATE_FORM_HEADER
-
-
Folder Create Form -

-

-
-
-
- -

-FILE_PROPERTIES_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_PROPERTIES_HEADER
-
-
File Properties -

-

-
-
-
- -

-FILE_EDIT_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_EDIT_HEADER
-
-
File Edit Panel -

-

-
-
-
- -

-FILE_EDIT_ACTION_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_EDIT_ACTION_DESCRIPTION
-
-
-
-
-
- -

-FILE_UPLOAD_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_UPLOAD_HEADER
-
-
File Upload Panel -

-

-
-
-
- -

-FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION
-
-
-
-
-
- -

-FILE_DOWNLOAD_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_DOWNLOAD_HEADER
-
-
File Download Panel -

-

-
-
-
- -

-FILE_SEND_COLLEAGUE_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_SEND_COLLEAGUE_HEADER
-
-
File-Send-to-Colleague Form -

-

-
-
-
- -

-FILE_DELETE_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_DELETE_HEADER
-
-
File-Delete Form -

-

-
-
-
- -

-FILE_ACTION_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_ACTION_HEADER
-
-
File Action Panel -

-

-
-
-
- -

-FILE_REVISION_HISTORY_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_REVISION_HISTORY_HEADER
-
-
File Revision History Panel -

-

-
-
-
- -

-FILE_FEEDBACK_HEADER

-
-public static final com.arsdigita.bebop.Label FILE_FEEDBACK_HEADER
-
-
File Feedback Panel -

-

-
-
-
- -

-DESTINATION_FOLDER_PANEL_HEADER

-
-public static final com.arsdigita.bebop.Label DESTINATION_FOLDER_PANEL_HEADER
-
-
Action Panel Constants -

-

-
-
-
- -

-FOLDER_EMPTY_LABEL

-
-public static final com.arsdigita.bebop.Label FOLDER_EMPTY_LABEL
-
-
-
-
-
- -

-FOLDER_NEW_FOLDER_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_NEW_FOLDER_LINK
-
-
-
-
-
- -

-FOLDER_NEW_FILE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_NEW_FILE_LINK
-
-
-
-
-
- -

-ACTION_CUT_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_CUT_LABEL
-
-
-
-
-
- -

-ACTION_COPY_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_COPY_LABEL
-
-
-
-
-
- -

-ACTION_DELETE_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_DELETE_LABEL
-
-
-
-
-
- -

-ACTION_DELETE_CONFIRM

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_DELETE_CONFIRM
-
-
-
-
-
- -

-ACTION_ERROR_LABEL

-
-public static final com.arsdigita.bebop.Label ACTION_ERROR_LABEL
-
-
-
-
-
- -

-ACTION_ERROR_CONTINUE

-
-public static final com.arsdigita.bebop.Label ACTION_ERROR_CONTINUE
-
-
-
-
-
- -

-ACTION_CUT_VALUE

-
-public static final String ACTION_CUT_VALUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ACTION_COPY_VALUE

-
-public static final String ACTION_COPY_VALUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ACTION_DELETE_VALUE

-
-public static final String ACTION_DELETE_VALUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ACTION_DELETE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_DELETE_SUBMIT
-
-
-
-
-
- -

-ACTION_COPY_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_COPY_SUBMIT
-
-
-
-
-
- -

-ACTION_MOVE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage ACTION_MOVE_SUBMIT
-
-
-
-
-
- -

-ROOT_ADD_RESOURCE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage ROOT_ADD_RESOURCE_LINK
-
-
Portlet Panel Constants -

-

-
-
-
- -

-ROOT_ADD_DOC_PARAM_NAME

-
-public static final String ROOT_ADD_DOC_PARAM_NAME
-
-
-
See Also:
Constant Field Values
-
-
- -

-ROOT_ADD_DOC_PARAM

-
-public static final com.arsdigita.bebop.parameters.StringParameter ROOT_ADD_DOC_PARAM
-
-
-
-
-
- -

-FILE_EDIT_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_EDIT_LINK
-
-
File Action Panel Constants -

-

-
-
-
- -

-FILE_NEW_VERSION_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_NEW_VERSION_LINK
-
-
-
-
-
- -

-FILE_DOWNLOAD_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DOWNLOAD_LINK
-
-
-
-
-
- -

-FILE_SEND_COLLEAGUE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SEND_COLLEAGUE_LINK
-
-
-
-
-
- -

-FILE_DELETE_LINK

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DELETE_LINK
-
-
-
-
-
- -

-FOLDER_PARENTNOTFOUND_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_PARENTNOTFOUND_ERROR
-
-
Error messages -

-

-
-
-
- -

-RESOURCE_EXISTS_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage RESOURCE_EXISTS_ERROR
-
-
-
-
-
- -

-EMAIL_INVALID_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage EMAIL_INVALID_ERROR
-
-
-
-
-
- -

-DIFFERENT_MIMETYPE_ERROR

-
-public static final com.arsdigita.globalization.GlobalizedMessage DIFFERENT_MIMETYPE_ERROR
-
-
-
-
-
- -

-FILE_DELETE_CONFIRM

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DELETE_CONFIRM
-
-
FILE DELETE link -

-

-
-
-
- -

-FILE_NAME

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_NAME
-
-
-
-
-
- -

-FILE_NAME_REQUIRED

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_NAME_REQUIRED
-
-
-
-
-
- -

-FILE_UPLOAD_ADD_FILE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_UPLOAD_ADD_FILE
-
-
-
-
-
- -

-FILE_SOURCE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SOURCE
-
-
-
-
-
- -

-FILE_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_DESCRIPTION
-
-
-
-
-
- -

-FILE_VERSION_DESCRIPTION

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_VERSION_DESCRIPTION
-
-
-
-
-
- -

-FILE_KEYWORDS

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_KEYWORDS
-
-
-
-
-
- -

-FILE_SAVE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SAVE
-
-
-
-
-
- -

-FILE_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage FILE_SUBMIT
-
-
-
-
-
- -

-CANCEL

-
-public static final com.arsdigita.globalization.GlobalizedMessage CANCEL
-
-
-
-
-
- -

-FOLDER_NAME

-
-public static final String FOLDER_NAME
-
-
Folder parameters -

-

-
See Also:
Constant Field Values
-
-
- -

-FOLDER_DESCRIPTION

-
-public static final String FOLDER_DESCRIPTION
-
-
-
See Also:
Constant Field Values
-
-
- -

-FOLDER_NAME_LABEL

-
-public static final com.arsdigita.bebop.Label FOLDER_NAME_LABEL
-
-
-
-
-
- -

-FOLDER_DESCRIPTION_LABEL

-
-public static final com.arsdigita.bebop.Label FOLDER_DESCRIPTION_LABEL
-
-
-
-
-
- -

-FOLDER_SAVE

-
-public static final com.arsdigita.globalization.GlobalizedMessage FOLDER_SAVE
-
-
-
-
-
- -

-REPOSITORIES_MOUNTED_SAVE

-
-public static final com.arsdigita.globalization.GlobalizedMessage REPOSITORIES_MOUNTED_SAVE
-
-
Repsitories Selection Form -

-

-
-
-
- -

-SEND_FRIEND_FORM_EMAIL_SUBJECT

-
-public static final com.arsdigita.bebop.Label SEND_FRIEND_FORM_EMAIL_SUBJECT
-
-
Send to colleague form variables. -

-

-
-
-
- -

-SEND_FRIEND_FORM_EMAIL_LIST

-
-public static final com.arsdigita.bebop.Label SEND_FRIEND_FORM_EMAIL_LIST
-
-
-
-
-
- -

-SEND_FRIEND_FORM_DESCRIPTION

-
-public static final com.arsdigita.bebop.Label SEND_FRIEND_FORM_DESCRIPTION
-
-
-
-
-
- -

-SEND_FRIEND_FORM_SUBMIT

-
-public static final com.arsdigita.globalization.GlobalizedMessage SEND_FRIEND_FORM_SUBMIT
-
-
-
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMDispatcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMDispatcher.html deleted file mode 100755 index 0783abfd4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMDispatcher.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - -DMDispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DMDispatcher

-
-java.lang.Object
-  extended bycom.arsdigita.dispatcher.MapDispatcher
-      extended bycom.arsdigita.bebop.page.BebopMapDispatcher
-          extended bycom.arsdigita.bebop.BebopMapDispatcher
-              extended bycom.arsdigita.docmgr.ui.DMDispatcher
-
-
-
All Implemented Interfaces:
com.arsdigita.dispatcher.Dispatcher, DMConstants
-
-
-
-
public class DMDispatcher
extends com.arsdigita.bebop.BebopMapDispatcher
implements DMConstants
- -

-Dispatcher for document manager application. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.dispatcher.MapDispatcher
com.arsdigita.dispatcher.MapDispatcher.ParseConfigHandler
-  - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOCS_XML_NS, EMAIL_INVALID_ERROR, FILE_ACTION_HEADER, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, PAGE_TITLE_LABEL, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
DMDispatcher() - -
-          Default constructor instantiating the URL-page map.
-  - - - - - - - - - - - -
-Method Summary
- voiddispatch(HttpServletRequest req, - HttpServletResponse resp, - com.arsdigita.dispatcher.RequestContext ctx) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
addPage, getPresentationManager, newParseConfigHandler, setMap, setNotFoundPage, setPresentationManager
- - - - - - - -
Methods inherited from class com.arsdigita.dispatcher.MapDispatcher
addPage, getMap, preprocessRequest, readFromFile, requireTrailingSlash, setNotFoundDispatcher
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DMDispatcher

-
-public DMDispatcher()
-
-
Default constructor instantiating the URL-page map. -

-

- - - - - - - - -
-Method Detail
- -

-dispatch

-
-public void dispatch(HttpServletRequest req,
-                     HttpServletResponse resp,
-                     com.arsdigita.dispatcher.RequestContext ctx)
-              throws IOException,
-                     ServletException
-
-
-
Specified by:
dispatch in interface com.arsdigita.dispatcher.Dispatcher
-
-
- -
Throws: -
IOException -
ServletException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.DateFormat.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.DateFormat.html deleted file mode 100755 index 93a3eeea7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.DateFormat.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - -DMUtils.DateFormat (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DMUtils.DateFormat

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.ui.DMUtils.DateFormat
-
-
-
Enclosing class:
DMUtils
-
-
-
-
public static class DMUtils.DateFormat
extends Object
- -

-Class to render java.util.Date in request specific locale - and pattern. -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
DMUtils.DateFormat() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static Stringformat(Date date) - -
-          Default Date format should look like this - 12/19/01 07:21 PM
-static Stringformat(Date date, - String fmt) - -
-          This allows to pass in any formatting strings for the date
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DMUtils.DateFormat

-
-public DMUtils.DateFormat()
-
-
- - - - - - - - -
-Method Detail
- -

-format

-
-public static String format(Date date)
-
-
Default Date format should look like this - 12/19/01 07:21 PM -

-

-
-
-
-
- -

-format

-
-public static String format(Date date,
-                            String fmt)
-
-
This allows to pass in any formatting strings for the date -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.FileSize.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.FileSize.html deleted file mode 100755 index 7d5b3057d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.FileSize.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - -DMUtils.FileSize (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DMUtils.FileSize

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.ui.DMUtils.FileSize
-
-
-
Enclosing class:
DMUtils
-
-
-
-
public static class DMUtils.FileSize
extends Object
- -

-Class to describe and format file sizes in request specific locales -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
DMUtils.FileSize() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static StringformatFileSize(BigDecimal size, - com.arsdigita.bebop.PageState state) - -
-          Wrapper for converting from BigDecimal to long file size
-static StringformatFileSize(long n, - com.arsdigita.bebop.PageState state) - -
-          Chooses the units for the file such that the file size is - greater or equal unity in the smallest units possible.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DMUtils.FileSize

-
-public DMUtils.FileSize()
-
-
- - - - - - - - -
-Method Detail
- -

-formatFileSize

-
-public static String formatFileSize(long n,
-                                    com.arsdigita.bebop.PageState state)
-
-
Chooses the units for the file such that the file size is - greater or equal unity in the smallest units possible. -

-

-
-
-
-
- -

-formatFileSize

-
-public static String formatFileSize(BigDecimal size,
-                                    com.arsdigita.bebop.PageState state)
-
-
Wrapper for converting from BigDecimal to long file size -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.html deleted file mode 100755 index 322a70fad..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DMUtils.html +++ /dev/null @@ -1,517 +0,0 @@ - - - - - - -DMUtils (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DMUtils

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.ui.DMUtils
-
-
-
All Implemented Interfaces:
DMConstants
-
-
-
-
public class DMUtils
extends Object
implements DMConstants
- -

-Public static helper methods and classes for recurring tasks - in Document Manager UI. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - -
-Nested Class Summary
-static classDMUtils.DateFormat - -
-          Class to render java.util.Date in request specific locale - and pattern.
-static classDMUtils.FileSize - -
-          Class to describe and format file sizes in request specific locales
-  - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOCS_XML_NS, EMAIL_INVALID_ERROR, FILE_ACTION_HEADER, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, PAGE_TITLE_LABEL, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
-  - - - - - - - - - - -
-Constructor Summary
DMUtils() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static StringextractFileName(String rawName, - com.arsdigita.bebop.PageState state) - -
-          Extract the true filename from the uploaded filepath name - taking OS-specific file-separator into account The considered - OS'es are Windows, Mac, and Linux/Unixes.
-static FilegetFile(BigDecimal id) - -
-          Attempts to load a file by ID.
-static StringgetFolderName(com.arsdigita.bebop.PageState state, - com.arsdigita.bebop.Tree tree) - -
-          Get the selected folder in the tree
-static FoldergetRootFolder(com.arsdigita.bebop.PageState state) - -
-          Gets or sets the root folder id and returns the root Folder
-static BigDecimalgetSelectedFolderID(com.arsdigita.bebop.PageState state, - com.arsdigita.bebop.Tree t) - -
-          Wrapper to get the selected folder in a tree.
-static BigDecimalgetSelFolderOrRootID(com.arsdigita.bebop.PageState state, - com.arsdigita.bebop.tree.TreeNode n) - -
-          Get the selected folder in the tree node or the root tree id
-static com.arsdigita.kernel.UsergetUser(com.arsdigita.bebop.PageState state) - -
-          Get User object from request context.
-static voidsetRoot(com.arsdigita.bebop.PageState state, - Folder root) - -
-          Change global state parameter of root folder.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DMUtils

-
-public DMUtils()
-
-
- - - - - - - - -
-Method Detail
- -

-getRootFolder

-
-public static Folder getRootFolder(com.arsdigita.bebop.PageState state)
-
-
Gets or sets the root folder id and returns the root Folder -

-

-
-
-
-
-
-
-
- -

-getSelFolderOrRootID

-
-public static BigDecimal getSelFolderOrRootID(com.arsdigita.bebop.PageState state,
-                                              com.arsdigita.bebop.tree.TreeNode n)
-
-
Get the selected folder in the tree node or the root tree id -

-

-
-
-
-
-
-
-
- -

-setRoot

-
-public static void setRoot(com.arsdigita.bebop.PageState state,
-                           Folder root)
-
-
Change global state parameter of root folder. -

-

-
-
-
-
-
-
-
- -

-getUser

-
-public static com.arsdigita.kernel.User getUser(com.arsdigita.bebop.PageState state)
-
-
Get User object from request context. -

-

-
-
-
-
-
-
-
- -

-getSelectedFolderID

-
-public static BigDecimal getSelectedFolderID(com.arsdigita.bebop.PageState state,
-                                             com.arsdigita.bebop.Tree t)
-
-
Wrapper to get the selected folder in a tree. Works only if - we are already showing an expanded tree. -

-

-
-
-
-
-
-
-
- -

-getFile

-
-public static File getFile(BigDecimal id)
-
-
Attempts to load a file by ID. -

-

-
-
-
-
-
-
-
- -

-getFolderName

-
-public static String getFolderName(com.arsdigita.bebop.PageState state,
-                                   com.arsdigita.bebop.Tree tree)
-
-
Get the selected folder in the tree -

-

-
-
-
-
-
-
-
- -

-extractFileName

-
-public static String extractFileName(String rawName,
-                                     com.arsdigita.bebop.PageState state)
-
-
Extract the true filename from the uploaded filepath name - taking OS-specific file-separator into account The considered - OS'es are Windows, Mac, and Linux/Unixes. The default case is - Linux/Unix. -

-

-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html deleted file mode 100755 index 0c8eb1587..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLabelPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -DocmgrBasePage.CurrentApplicationLabelPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DocmgrBasePage.CurrentApplicationLabelPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
DocmgrBasePage
-
-
-
-
protected class DocmgrBasePage.CurrentApplicationLabelPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage.CurrentApplicationLabelPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage.CurrentApplicationLabelPrinter

-
-public DocmgrBasePage.CurrentApplicationLabelPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index 36ce3c9d2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -DocmgrBasePage.CurrentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DocmgrBasePage.CurrentApplicationLinkPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
DocmgrBasePage
-
-
-
-
protected class DocmgrBasePage.CurrentApplicationLinkPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage.CurrentApplicationLinkPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage.CurrentApplicationLinkPrinter

-
-public DocmgrBasePage.CurrentApplicationLinkPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html deleted file mode 100755 index a00bb5500..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.ParentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -DocmgrBasePage.ParentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DocmgrBasePage.ParentApplicationLinkPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
DocmgrBasePage
-
-
-
-
protected class DocmgrBasePage.ParentApplicationLinkPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage.ParentApplicationLinkPrinter() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidprepare(com.arsdigita.bebop.event.PrintEvent e) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage.ParentApplicationLinkPrinter

-
-public DocmgrBasePage.ParentApplicationLinkPrinter()
-
-
- - - - - - - - -
-Method Detail
- -

-prepare

-
-public void prepare(com.arsdigita.bebop.event.PrintEvent e)
-
-
-
Specified by:
prepare in interface com.arsdigita.bebop.event.PrintListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.html deleted file mode 100755 index fed2cc1c8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/DocmgrBasePage.html +++ /dev/null @@ -1,797 +0,0 @@ - - - - - - -DocmgrBasePage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class DocmgrBasePage

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Page
-                      extended bycom.arsdigita.docmgr.ui.DocmgrBasePage
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public class DocmgrBasePage
extends com.arsdigita.bebop.Page
- -

-

BasePage class

-

- -

-

-
Author:
-
Jim Parsons
-
-
- -

- - - - - - - - - - - - - - - - - - - -
-Nested Class Summary
-protected  classDocmgrBasePage.CurrentApplicationLabelPrinter - -
-           
-protected  classDocmgrBasePage.CurrentApplicationLinkPrinter - -
-           
-protected  classDocmgrBasePage.ParentApplicationLinkPrinter - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringDOC_BODY_ELEMENT - -
-           
-static StringDOC_FOOTER_ELEMENT - -
-           
-static StringDOC_GLOBAL_ELEMENT - -
-           
-static StringDOC_HEADER_ELEMENT - -
-           
-static StringDOC_XML_NS - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Page
m_invisible, m_panel, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
DocmgrBasePage() - -
-           
DocmgrBasePage(String view) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidadd(com.arsdigita.bebop.Component pc) - -
-          Adds a component to the body.
-protected  voidbuildBody(com.arsdigita.bebop.Container body) - -
-           
-protected  voidbuildContextBar() - -
-           
-protected  voidbuildFooter(com.arsdigita.bebop.Container footer) - -
-           
-protected  voidbuildGlobal(com.arsdigita.bebop.Container global) - -
-           
-protected  voidbuildHeader(com.arsdigita.bebop.Container header) - -
-           
-protected  voidbuildPage() - -
-           
-protected  voidbuildTitle() - -
-           
- com.arsdigita.bebop.ContainergetBody() - -
-           
- com.arsdigita.bebop.ContainergetFooter() - -
-           
- com.arsdigita.bebop.ContainergetGlobal() - -
-           
- com.arsdigita.bebop.ContainergetHeader() - -
-           
- voidgoModal(com.arsdigita.bebop.PageState ps, - com.arsdigita.bebop.Component c) - -
-          Makes the given component the only visible component between - the header and footer of this page.
- voidgoUnmodal(com.arsdigita.bebop.PageState ps) - -
-          Clears the currently selected modal component if it has been set.
- voidlock() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Page
add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, generateXMLHelper, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-DOC_GLOBAL_ELEMENT

-
-public static final String DOC_GLOBAL_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_HEADER_ELEMENT

-
-public static final String DOC_HEADER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_BODY_ELEMENT

-
-public static final String DOC_BODY_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_FOOTER_ELEMENT

-
-public static final String DOC_FOOTER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-DOC_XML_NS

-
-public static final String DOC_XML_NS
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-DocmgrBasePage

-
-public DocmgrBasePage()
-
-
-
- -

-DocmgrBasePage

-
-public DocmgrBasePage(String view)
-
-
Parameters:
view - A String that specifies which application view to - show. Valid values: "user", "admin" and "null". If view is - "null", there will be no right-hand navigation link. Note - - We've decided not to have the right-hand navigation link at - all. Instead, you should create tabs. So, once the - applications are migrated, view will always be null and we can - remove view altogether.
- - - - - - - - -
-Method Detail
- -

-lock

-
-public void lock()
-
-
-
-
-
-
- -

-buildPage

-
-protected final void buildPage()
-
-
-
-
-
-
- -

-buildTitle

-
-protected void buildTitle()
-
-
-
-
-
-
- -

-buildContextBar

-
-protected void buildContextBar()
-
-
-
-
-
-
- -

-buildGlobal

-
-protected void buildGlobal(com.arsdigita.bebop.Container global)
-
-
-
-
-
-
- -

-buildHeader

-
-protected void buildHeader(com.arsdigita.bebop.Container header)
-
-
-
-
-
-
- -

-buildBody

-
-protected void buildBody(com.arsdigita.bebop.Container body)
-
-
-
-
-
-
- -

-buildFooter

-
-protected void buildFooter(com.arsdigita.bebop.Container footer)
-
-
-
-
-
-
- -

-goModal

-
-public void goModal(com.arsdigita.bebop.PageState ps,
-                    com.arsdigita.bebop.Component c)
-
-
Makes the given component the only visible component between - the header and footer of this page. -

-

-
-
-
-
- -

-goUnmodal

-
-public void goUnmodal(com.arsdigita.bebop.PageState ps)
-
-
Clears the currently selected modal component if it has been set. -

-

-
-
-
-
- -

-add

-
-public void add(com.arsdigita.bebop.Component pc)
-
-
Adds a component to the body. -

-

-
Parameters:
pc - the component to be added
-
-
-
- -

-getGlobal

-
-public com.arsdigita.bebop.Container getGlobal()
-
-
-
-
-
-
- -

-getHeader

-
-public com.arsdigita.bebop.Container getHeader()
-
-
-
-
-
-
- -

-getBody

-
-public com.arsdigita.bebop.Container getBody()
-
-
-
-
-
-
- -

-getFooter

-
-public com.arsdigita.bebop.Container getFooter()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/FileUploadForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/FileUploadForm.html deleted file mode 100755 index 561b8ebf3..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/FileUploadForm.html +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - -FileUploadForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class FileUploadForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended bycom.arsdigita.docmgr.ui.FileUploadForm
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, DMConstants, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class FileUploadForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormProcessListener, DMConstants
- -

-Form to upload and submit a file to the document repository. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.docmgr.ui.DMConstants
ABS_PATH, ACTION_COPY_LABEL, ACTION_COPY_SUBMIT, ACTION_COPY_VALUE, ACTION_CUT_LABEL, ACTION_CUT_VALUE, ACTION_DELETE_CONFIRM, ACTION_DELETE_LABEL, ACTION_DELETE_SUBMIT, ACTION_DELETE_VALUE, ACTION_ERROR_CONTINUE, ACTION_ERROR_LABEL, ACTION_MOVE_SUBMIT, BUNDLE_NAME, CANCEL, DESTINATION_FOLDER_PANEL_HEADER, DIFFERENT_MIMETYPE_ERROR, DOCS_XML_NS, EMAIL_INVALID_ERROR, FILE_ACTION_HEADER, FILE_DELETE_CONFIRM, FILE_DELETE_HEADER, FILE_DELETE_LINK, FILE_DESCRIPTION, FILE_DOWNLOAD_HEADER, FILE_DOWNLOAD_LINK, FILE_EDIT_ACTION_DESCRIPTION, FILE_EDIT_HEADER, FILE_EDIT_LINK, FILE_FEEDBACK_HEADER, FILE_ID_PARAM, FILE_ID_PARAM_NAME, FILE_INFO_COMMENTS_TITLE, FILE_INFO_HISTORY_TITLE, FILE_INFO_LABEL, FILE_INFO_LINKS_TITLE, FILE_INFO_PROPERTIES_TITLE, FILE_KEYWORDS, FILE_NAME, FILE_NAME_REQUIRED, FILE_NEW_VERSION_LINK, FILE_PROPERTIES_HEADER, FILE_REVISION_HISTORY_HEADER, FILE_SAVE, FILE_SEND_COLLEAGUE_HEADER, FILE_SEND_COLLEAGUE_LINK, FILE_SOURCE, FILE_SUBMIT, FILE_UPLOAD_ADD_FILE, FILE_UPLOAD_FORM_HEADER, FILE_UPLOAD_HEADER, FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION, FILE_VERSION_DESCRIPTION, FILES, FOLDER_CREATE_FORM_HEADER, FOLDER_DESCRIPTION, FOLDER_DESCRIPTION_LABEL, FOLDER_EMPTY_LABEL, FOLDER_ID, FOLDER_INFORMATION_HEADER, FOLDER_NAME, FOLDER_NAME_LABEL, FOLDER_NEW_FILE_LINK, FOLDER_NEW_FOLDER_LINK, FOLDER_PARENTNOTFOUND_ERROR, FOLDER_SAVE, FOLDERS, GET_ALL_TREES, GET_CHILDREN, GET_REPOSITORIES, GET_REPOSITORIES_ROOTS, GO_BACK_LABEL, HELP_LABEL, IS_FOLDER, IS_LOCKED, IS_MOUNTED, LAST_MODIFIED, MIME_TYPE_LABEL, MODIFYING_USER, MY_WORKSPACE_LABEL, NAME, NUM_FILES, PAGE_TITLE_LABEL, REPOSITORIES_INFORMATION_HEADER, REPOSITORIES_MOUNTED_SAVE, REPOSITORY_ID, REPOSITORY_RECENTDOCS_EMPTY, RESOURCE_EXISTS_ERROR, RESOURCE_ID, ROOT_ADD_DOC_PARAM, ROOT_ADD_DOC_PARAM_NAME, ROOT_ADD_RESOURCE_LINK, ROOTFOLDER_ID_PARAM, ROOTFOLDER_ID_PARAM_NAME, SEL_FOLDER_ID_PARAM, SEL_FOLDER_ID_PARAM_NAME, SEND_FRIEND_FORM_DESCRIPTION, SEND_FRIEND_FORM_EMAIL_LIST, SEND_FRIEND_FORM_EMAIL_SUBJECT, SEND_FRIEND_FORM_SUBMIT, SIGN_OUT_LABEL, SIZE, TYPE, WS_BROWSE_TITLE, WS_REPOSITORIES_TITLE, WS_SEARCH_TITLE
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
FileUploadForm(com.arsdigita.docmgr.ui.BrowsePane parent, - com.arsdigita.bebop.Tree tree) - -
-          Constructor
FileUploadForm(com.arsdigita.docmgr.ui.BrowsePane parent, - com.arsdigita.bebop.Tree tree, - boolean initListeners) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  StringgetFileName(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Gets either the file name from the widget - or takes the filename from the upload - widget in this order.
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
-protected  BigDecimalinsertFile(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Post the file to a temporary file on the server and - insert it into the database
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Post the file to a temporary file on the server and - insert it into the database
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent e) - -
-          Verify that the parent folder exists and does not contain any - other files or sub folders with the same name as the file being - uploaded.
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-FileUploadForm

-
-public FileUploadForm(com.arsdigita.docmgr.ui.BrowsePane parent,
-                      com.arsdigita.bebop.Tree tree)
-
-
Constructor -

-

-
- -

-FileUploadForm

-
-public FileUploadForm(com.arsdigita.docmgr.ui.BrowsePane parent,
-                      com.arsdigita.bebop.Tree tree,
-                      boolean initListeners)
-
-
- - - - - - - - -
-Method Detail
- -

-insertFile

-
-protected BigDecimal insertFile(com.arsdigita.bebop.event.FormSectionEvent e)
-                         throws com.arsdigita.bebop.FormProcessException
-
-
Post the file to a temporary file on the server and - insert it into the database -

-

-
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
-
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-             throws com.arsdigita.bebop.FormProcessException
-
-
Post the file to a temporary file on the server and - insert it into the database -

-

-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-getFileName

-
-protected String getFileName(com.arsdigita.bebop.event.FormSectionEvent e)
-
-
Gets either the file name from the widget - or takes the filename from the upload - widget in this order. -

-

-
-
-
-
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent e)
-              throws com.arsdigita.bebop.FormProcessException
-
-
Verify that the parent folder exists and does not contain any - other files or sub folders with the same name as the file being - uploaded. -

-

-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/RecentUpdatedDocsPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/RecentUpdatedDocsPortlet.html deleted file mode 100755 index 7b5b4fb6c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/RecentUpdatedDocsPortlet.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - -RecentUpdatedDocsPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.ui -
-Class RecentUpdatedDocsPortlet

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.portal.Portlet
-                      extended bycom.arsdigita.portal.apportlet.AppPortlet
-                          extended bycom.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet
-
-
-
-
public class RecentUpdatedDocsPortlet
extends com.arsdigita.portal.apportlet.AppPortlet
- -

-Portlet showing the n most recently updated documents of a - portal. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringversionId - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - -
-Constructor Summary
RecentUpdatedDocsPortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet
getAppPortletType, getParentApplication, getPortletRenderer, getZoomURL, setParentApplication
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-versionId

-
-public static final String versionId
-
-
-
See Also:
Constant Field Values
-
-
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-RecentUpdatedDocsPortlet

-
-public RecentUpdatedDocsPortlet(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMConstants.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMConstants.html deleted file mode 100755 index ff75d0aec..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMConstants.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.docmgr.ui.DMConstants (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.docmgr.ui.DMConstants

-
- - - - - - - - - -
-Packages that use DMConstants
com.arsdigita.docmgr.ui  
-  -

- - - - - -
-Uses of DMConstants in com.arsdigita.docmgr.ui
-  -

- - - - - - - - - - - - - - - - - -
Classes in com.arsdigita.docmgr.ui that implement DMConstants
- classDMDispatcher - -
-          Dispatcher for document manager application.
- classDMUtils - -
-          Public static helper methods and classes for recurring tasks - in Document Manager UI.
- classFileUploadForm - -
-          Form to upload and submit a file to the document repository.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMDispatcher.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMDispatcher.html deleted file mode 100755 index db9feb266..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMDispatcher.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DMDispatcher (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DMDispatcher

-
-No usage of com.arsdigita.docmgr.ui.DMDispatcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.DateFormat.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.DateFormat.html deleted file mode 100755 index 70ff5f1dc..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.DateFormat.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DMUtils.DateFormat (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DMUtils.DateFormat

-
-No usage of com.arsdigita.docmgr.ui.DMUtils.DateFormat -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.FileSize.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.FileSize.html deleted file mode 100755 index 0d71a04f6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.FileSize.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DMUtils.FileSize (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DMUtils.FileSize

-
-No usage of com.arsdigita.docmgr.ui.DMUtils.FileSize -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.html deleted file mode 100755 index ce9ea01c2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DMUtils.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DMUtils (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DMUtils

-
-No usage of com.arsdigita.docmgr.ui.DMUtils -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html deleted file mode 100755 index 6d8c4fe8e..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLabelPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter

-
-No usage of com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index d96444be9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter

-
-No usage of com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html deleted file mode 100755 index eede36898..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.ParentApplicationLinkPrinter.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter

-
-No usage of com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.html deleted file mode 100755 index 6063a8887..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/DocmgrBasePage.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.DocmgrBasePage (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.DocmgrBasePage

-
-No usage of com.arsdigita.docmgr.ui.DocmgrBasePage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/FileUploadForm.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/FileUploadForm.html deleted file mode 100755 index 5b422145a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/FileUploadForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.FileUploadForm (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.FileUploadForm

-
-No usage of com.arsdigita.docmgr.ui.FileUploadForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html deleted file mode 100755 index af68918cd..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/class-use/RecentUpdatedDocsPortlet.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet

-
-No usage of com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-frame.html deleted file mode 100755 index a1b96bdca..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-frame.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - -com.arsdigita.docmgr.ui (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.docmgr.ui - - - - -
-Interfaces  - -
-DMConstants
- - - - - - -
-Classes  - -
-DMDispatcher -
-DMUtils -
-DMUtils.DateFormat -
-DMUtils.FileSize -
-DocmgrBasePage -
-FileUploadForm -
-RecentUpdatedDocsPortlet
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-summary.html deleted file mode 100755 index ec7fbf3d7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-summary.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - -com.arsdigita.docmgr.ui (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.docmgr.ui -

- - - - - - - - - -
-Interface Summary
DMConstantsVariously used constant objects used in Document Manager UI
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
DMDispatcherDispatcher for document manager application.
DMUtilsPublic static helper methods and classes for recurring tasks - in Document Manager UI.
DMUtils.DateFormatClass to render java.util.Date in request specific locale - and pattern.
DMUtils.FileSizeClass to describe and format file sizes in request specific locales
DocmgrBasePageBasePage class
FileUploadFormForm to upload and submit a file to the document repository.
RecentUpdatedDocsPortletPortlet showing the n most recently updated documents of a - portal.
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-tree.html deleted file mode 100755 index 11ceb1441..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-tree.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - -com.arsdigita.docmgr.ui Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.docmgr.ui -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) -
              -
            • class com.arsdigita.docmgr.ui.FileUploadForm (implements com.arsdigita.docmgr.ui.DMConstants, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) - -
            -
          -
        -
      -
    • class com.arsdigita.docmgr.ui.DMUtils (implements com.arsdigita.docmgr.ui.DMConstants) -
    • class com.arsdigita.docmgr.ui.DMUtils.DateFormat
    • class com.arsdigita.docmgr.ui.DMUtils.FileSize
    • class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.kernel.Resource
              -
            • class com.arsdigita.portal.Portlet -
            -
          -
        -
      -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher
          -
        • class com.arsdigita.bebop.BebopMapDispatcher -
        -
      -
    -
-

-Interface Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-use.html deleted file mode 100755 index cfb3ed822..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/ui/package-use.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.docmgr.ui (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.docmgr.ui

-
- - - - - - - - - -
-Packages that use com.arsdigita.docmgr.ui
com.arsdigita.docmgr.ui  
-  -

- - - - - - - - -
-Classes in com.arsdigita.docmgr.ui used by com.arsdigita.docmgr.ui
DMConstants - -
-          Variously used constant objects used in Document Manager UI
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/GlobalizationUtil.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/GlobalizationUtil.html deleted file mode 100755 index 33b797be3..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/GlobalizationUtil.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - -GlobalizationUtil (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.docmgr.util -
-Class GlobalizationUtil

-
-java.lang.Object
-  extended bycom.arsdigita.docmgr.util.GlobalizationUtil
-
-
-
All Implemented Interfaces:
com.arsdigita.globalization.Globalized
-
-
-
-
public class GlobalizationUtil
extends Object
implements com.arsdigita.globalization.Globalized
- -

-

- . - Contains methods to simplify globalizing keys -

-

- -

-

-
Version:
-
$Revision: #2 $ $Date: 2003/03/20 $
-
Author:
-
sarnold@redhat.com
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.globalization.Globalized
DATE_DISPLAY_FORMAT, TIME_DISPLAY_FORMAT, versionId
-  - - - - - - - - - - -
-Constructor Summary
GlobalizationUtil() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key) - -
-           
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key, - Object[] args) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-GlobalizationUtil

-
-public GlobalizationUtil()
-
-
- - - - - - - - -
-Method Detail
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key)
-
-
-
-
-
-
-
-
-
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key,
-                                                                      Object[] args)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/class-use/GlobalizationUtil.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/class-use/GlobalizationUtil.html deleted file mode 100755 index 79d0cf0b6..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/class-use/GlobalizationUtil.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.docmgr.util.GlobalizationUtil (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.docmgr.util.GlobalizationUtil

-
-No usage of com.arsdigita.docmgr.util.GlobalizationUtil -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-frame.html deleted file mode 100755 index 088a3b358..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -com.arsdigita.docmgr.util (Document Manager API Documentation) - - - - - - - - - - - -com.arsdigita.docmgr.util - - - - -
-Classes  - -
-GlobalizationUtil
- - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-summary.html deleted file mode 100755 index 3bad1e6a1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-summary.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -com.arsdigita.docmgr.util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.docmgr.util -

- - - - - - - - - -
-Class Summary
GlobalizationUtil - .
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-tree.html deleted file mode 100755 index 72fb84135..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-tree.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -com.arsdigita.docmgr.util Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package com.arsdigita.docmgr.util -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.docmgr.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-use.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-use.html deleted file mode 100755 index fd80a7632..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/com/arsdigita/docmgr/util/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.docmgr.util (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.docmgr.util

-
-No usage of com.arsdigita.docmgr.util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/constant-values.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/constant-values.html deleted file mode 100755 index 4aa02bce2..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/constant-values.html +++ /dev/null @@ -1,1738 +0,0 @@ - - - - - - -Constant Field Values (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Constant Field Values

-
-
-Contents - - - - - - -
-com.arsdigita.*
- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.DocFolder
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.DocFolder"
-public static final StringDESCRIPTION"description"
-public static final StringTYPE"com.arsdigita.cms.docmgr.DocFolder"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.DocLink
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.DocLink"
-public static final StringDESCRIPTION"description"
-public static final StringLAST_MOD_LOCAL"lastModifiedTimeCached"
-public static final StringTYPE"com.arsdigita.cms.docmgr.DocLink"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.DocMgrConfig
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/DocMgrConfig.java#4 $$Author: cwolfe $$DateTime: 2004/01/14 15:24:15 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.Document
-public static final StringAUTHOR"author"
-public static final StringAUTHOR_LAST_NAME"authorLastName"
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.Document"
-public static final StringCREATOR"creator"
-public static final StringDESCRIPTION"description"
-public static final StringFILE"file"
-public static final StringLAST_MOD_LOCAL"lastModifiedTimeCached"
-public static final StringREPOSITORY"repository"
-public static final StringTYPE"com.arsdigita.cms.docmgr.Document"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.Repository
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.Repository"
-public static final StringOWNER"ownerID"
-public static final StringROOT"rootID"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.Resource
-public static final StringSEPARATOR"/"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage
-public static final StringASSET_ID"asset_id"
-public static final StringversionId"$Id: //cms/6.0/src/com/arsdigita/cms/dispatcher/DocumentAssetPage.java#1 $ by $Author: dennis $, $DateTime: 2003/08/18 23:54:14 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver
-protected static final StringITEM_ID"item_id"
-protected static final StringSEPARATOR"&"
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/dispatcher/MultilingualDocumentResolver.java#1 $$Author: cwolfe $$DateTime: 2003/11/26 14:30:10 $"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.installer.DocFolderInitializer
-public static final StringDESCRIPTION"A document type."
-public static final StringLABEL"DocFolder"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.installer.Initializer
-public static final StringCONTENT_SECTION"contentSection"
-public static final StringINTERNAL_GROUP_ID"internalGroupID"
-public static final StringLEGACY_FOLDER_NAME"legacyFolderName"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.installer.MimeIconInitializer
-public static final StringDEFAULT_ICON"defaultIcon"
-public static final StringMIME_ICON_MAP"mimeIconMap"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet"
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/CategoryDocsNavigatorPortlet.java#2 $$Author: cwolfe $$DateTime: 2003/08/12 11:48:50 $"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/CategoryItemsBrowser.java#7 $ by $Author: cwolfe $, $DateTime: 2003/09/19 15:46:00 $"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.CreateDocLinkPane
-public static final StringPARAM_EDIT_DOCLINK_ID"editDoclinkID"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable
-public static final intPAGE_SIZE10
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.DCNDispatcher
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/DCNDispatcher.java#2 $$Author: cwolfe $$DateTime: 2003/08/14 12:28:36 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.DMConstants
-public static final StringABS_PATH"absPath"
-public static final StringACTION_COPY_VALUE"resource-copy"
-public static final StringACTION_CUT_VALUE"resource-cut"
-public static final StringACTION_DELETE_VALUE"resource-delete"
-public static final StringBUNDLE_NAME"com.arsdigita.cms.docmgr.ui.DMResources"
-public static final StringCAT_TREE_ID_PARAM_NAME"dct_id"
-public static final StringCAT_TREE_INIT_ID_PARAM_NAME"dct_init_id"
-public static final StringDOC_COL_ID_PARAM_NAME"doc_col_id"
-public static final StringDOCS_XML_NS"http://www.redhat.com/docs/1.0"
-public static final StringEND_DATE_PARAM_NAME"endDate"
-public static final StringFILE_ID_PARAM_NAME"d_id"
-public static final StringFILES"files"
-public static final StringFOLDER_ADD_DOC_PARAM_NAME"folder_add_doc"
-public static final StringFOLDER_DESCRIPTION"folder-description"
-public static final StringFOLDER_ID"folderID"
-public static final StringFOLDER_NAME"folder-name"
-public static final StringFOLDERS"folders"
-public static final StringGET_ALL_TREES"com.arsdigita.docs.getAllTreesView"
-public static final StringGET_CHILDREN"com.arsdigita.docs.getChildren"
-public static final StringGET_REPOSITORIES"com.arsdigita.docs.getRepositoriesView"
-public static final StringGET_REPOSITORIES_ROOTS"com.arsdigita.docs.getRepositoryRoots"
-public static final StringIS_FOLDER"isFolder"
-public static final StringIS_LOCKED"isLocked"
-public static final StringIS_MOUNTED"isMounted"
-public static final StringLAST_MODIFIED"lastModified"
-public static final StringMIME_TYPE_LABEL"mimeTypeDescription"
-public static final StringMODIFYING_USER"modifyingUser"
-public static final StringNAME"name"
-public static final StringNUM_FILES"numFiles"
-public static final StringOPEN_FOLDER_ID_PARAM_NAME"of_id"
-public static final StringPARAM_ROOT_ADD_DOC_LINK"root_add_doc_link"
-public static final StringREPOSITORY_ID"repositoryID"
-public static final StringRESOURCE_ID"resourceID"
-public static final StringROOT_ADD_DOC_PARAM_NAME"root_add_doc"
-public static final StringROOTFOLDER_ID_PARAM_NAME"r_id"
-public static final StringSEL_FOLDER_ID_PARAM_NAME"f_id"
-public static final StringSIZE"size"
-public static final StringSTART_DATE_PARAM_NAME"startDate"
-public static final StringTYPE"mimeType"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.DMDispatcher
-public static final StringversionId"$Id: DMDispatcher.java,v 1.2 2005/01/18 08:37:08 pkopunec Exp $$Author: pkopunec $$DateTime: 2003/10/27 15:42:01 $"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.DMUtils
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/DMUtils.java#3 $$Author: sshinde $$DateTime: 2003/12/12 20:18:12 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.DocmgrBasePage
-public static final StringDOC_BODY_ELEMENT"docs:body"
-public static final StringDOC_FOOTER_ELEMENT"docs:footer"
-public static final StringDOC_GLOBAL_ELEMENT"docs:global"
-public static final StringDOC_HEADER_ELEMENT"docs:header"
-public static final StringDOC_XML_NS"http://www.redhat.com/docs/1.0"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.FileUploadForm
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/FileUploadForm.java#5 $$Author: cwolfe $$DateTime: 2003/08/13 14:35:17 $"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet"
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/LegacyCategoryDocsNavigatorPortlet.java#1 $$Author: cwolfe $$DateTime: 2004/01/14 15:24:15 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.PagingControlContainer
-public static final StringCLASS_PAGING_CONTROL"pageControlClass"
-public static final StringCLASS_SELECTED"selected"
-public static final StringLABEL_NEXT"Next >"
-public static final StringLABEL_PREVIOUS"< Previous"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet"
-public static final StringversionId"$Id: RecentUpdatedDocsPortlet.java,v 1.5 2005/12/08 14:46:55 pkopunec Exp $$Author: pkopunec $$DateTime: 2003/12/12 20:18:12 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm
-public static final StringDESCRIPTION"description"
-public static final StringEXTERNAL_URL"externalURL"
-public static final StringTARGET_DOC_ID"targetLinkID"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm
-public static final StringDESCRIPTION"description"
-public static final StringFILE"file"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.docmgr.ui.content.DocIndexPage
-public static final StringversionId"$Id: //apps/docmgr-cms/dev/src/com/arsdigita/cms/docmgr/ui/content/DocIndexPage.java#1 $$Author: cwolfe $$DateTime: 2003/11/26 14:30:10 $"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.ApplicationAuthenticationListener
-public static final StringversionId"$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ApplicationAuthenticationListener.java#2 $$Author: jorris $$DateTime: 2003/05/23 13:52:45 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.Constants
-public static final StringACTION"action"
-public static final StringCONTENT"content"
-public static final StringDESCRIPTION"description"
-public static final StringDURATION"duration"
-public static final StringFOLDER_ID"folderID"
-public static final StringIS_FOLDER"isFolder"
-public static final StringLAST_MODIFIED_DATE"lastModifiedDate"
-public static final StringMIME_TYPE_LABEL"mimeTypeDescription"
-public static final StringNAME"name"
-public static final StringOBJECT_ID"objectID"
-public static final StringPARENT"parent"
-public static final StringPARTY_ID"partyID"
-public static final StringPATH"path"
-public static final StringREPOSITORIES_MOUNTED"subscribedRepositories"
-public static final StringSIZE"size"
-public static final StringTEXT_HTML"text/html"
-public static final StringTEXT_PLAIN"text/plain"
-public static final StringTYPE"mimeType"
-public static final StringUSER_ID"userID"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.DocBlobject
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.docs.DocBlobject"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.File
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.docs.File"
-public static final StringDEFAULT_MIME_TYPE"application/octet-stream"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.Folder
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.docs.Folder"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.InvalidNameException
-public static final intINVALID_CHARACTER_ERROR4
-public static final intLEADING_CHARACTER_ERROR5
-public static final intLEADING_FILE_SEPARATOR_ERROR2
-public static final intTRAILING_FILE_SEPARATOR_ERROR3
-public static final intZERO_CHARACTERS_ERROR1
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.Repository
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.docs.Repository"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.Resource
-public static final StringSEPARATOR"/"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.ResourceImpl
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.docs.ResourceImpl"
-public static final StringPARENT"parent"
-public static final StringversionId"$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ResourceImpl.java#13 $$Author: jparsons $$DateTime: 2003/07/11 15:26:21 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.ui.DMConstants
-public static final StringABS_PATH"absPath"
-public static final StringACTION_COPY_VALUE"resource-copy"
-public static final StringACTION_CUT_VALUE"resource-cut"
-public static final StringACTION_DELETE_VALUE"resource-delete"
-public static final StringBUNDLE_NAME"com.arsdigita.docmgr.ui.DMResources"
-public static final StringDOCS_XML_NS"http://www.arsdigita.com/docs-ui/1.0"
-public static final StringFILE_ID_PARAM_NAME"d_id"
-public static final StringFILES"files"
-public static final StringFOLDER_DESCRIPTION"folder-description"
-public static final StringFOLDER_ID"folderID"
-public static final StringFOLDER_NAME"folder-name"
-public static final StringFOLDERS"folders"
-public static final StringGET_ALL_TREES"com.arsdigita.docs.getAllTreesView"
-public static final StringGET_CHILDREN"com.arsdigita.docs.getChildren"
-public static final StringGET_REPOSITORIES"com.arsdigita.docs.getRepositoriesView"
-public static final StringGET_REPOSITORIES_ROOTS"com.arsdigita.docs.getRepositoryRoots"
-public static final StringIS_FOLDER"isFolder"
-public static final StringIS_LOCKED"isLocked"
-public static final StringIS_MOUNTED"isMounted"
-public static final StringLAST_MODIFIED"lastModified"
-public static final StringMIME_TYPE_LABEL"mimeTypeDescription"
-public static final StringMODIFYING_USER"modifyingUser"
-public static final StringNAME"name"
-public static final StringNUM_FILES"numFiles"
-public static final StringREPOSITORY_ID"repositoryID"
-public static final StringRESOURCE_ID"resourceID"
-public static final StringROOT_ADD_DOC_PARAM_NAME"root_add_doc"
-public static final StringROOTFOLDER_ID_PARAM_NAME"r_id"
-public static final StringSEL_FOLDER_ID_PARAM_NAME"f_id"
-public static final StringSIZE"size"
-public static final StringTYPE"mimeType"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.ui.DMDispatcher
-public static final StringversionId"$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ui/DMDispatcher.java#4 $$Author: jparsons $$DateTime: 2003/07/17 20:42:41 $"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.ui.DMUtils
-public static final StringversionId"$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ui/DMUtils.java#3 $$Author: jorris $$DateTime: 2003/05/23 13:52:45 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.ui.DocmgrBasePage
-public static final StringDOC_BODY_ELEMENT"docs:body"
-public static final StringDOC_FOOTER_ELEMENT"docs:footer"
-public static final StringDOC_GLOBAL_ELEMENT"docs:global"
-public static final StringDOC_HEADER_ELEMENT"docs:header"
-public static final StringDOC_XML_NS"http://www.redhat.com/docs/1.0"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.docmgr.ui.FileUploadForm
-public static final StringversionId"$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ui/FileUploadForm.java#6 $$Author: jparsons $$DateTime: 2003/07/17 20:23:56 $"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.docs.ui.RecentUpdatedDocsPortlet"
-public static final StringversionId"$Id: //apps/docmgr/dev/src/com/arsdigita/docmgr/ui/RecentUpdatedDocsPortlet.java#6 $$Author: jparsons $$DateTime: 2003/07/11 17:45:09 $"
- -

- -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/deprecated-list.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/deprecated-list.html deleted file mode 100755 index 1078b0c9d..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/deprecated-list.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -Deprecated List (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Deprecated API

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/help-doc.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/help-doc.html deleted file mode 100755 index 1f51b21a9..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/help-doc.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -API Help (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-How This API Document Is Organized

-
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.

-Overview

-
- -

-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

-

-Package

-
- -

-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:

    -
  • Interfaces (italic)
  • Classes
  • Exceptions
  • Errors
-
-

-Class/Interface

-
- -

-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
  • Class inheritance diagram
  • Direct Subclasses
  • All Known Subinterfaces
  • All Known Implementing Classes
  • Class/interface declaration
  • Class/interface description -

    -

  • Nested Class Summary
  • Field Summary
  • Constructor Summary
  • Method Summary -

    -

  • Field Detail
  • Constructor Detail
  • Method Detail
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-

-Use

-
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-

-Tree (Class Hierarchy)

-
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
    -
  • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
  • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-

-Deprecated API

-
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-

-Index

-
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-

-Prev/Next

-These links take you to the next or previous class, interface, package, or related page.

-Frames/No Frames

-These links show and hide the HTML frames. All pages are available with or without frames. -

-

-Serialized Form

-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. -

- - -This help file applies to API documentation generated using the standard doclet. - -
-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/index-all.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/index-all.html deleted file mode 100755 index 1a5f67baf..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/index-all.html +++ /dev/null @@ -1,3275 +0,0 @@ - - - - - - -Index (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -A B C D E F G H I L M N O P R S T U V W Z
-

-A

-
-
ABS_PATH - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ABS_PATH - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
ACTION_COPY_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_COPY_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_COPY_SUBMIT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_COPY_SUBMIT - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_COPY_VALUE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_COPY_VALUE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_CUT_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_CUT_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_CUT_VALUE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_CUT_VALUE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_DELETE_CONFIRM - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_DELETE_CONFIRM - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_DELETE_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_DELETE_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_DELETE_SUBMIT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_DELETE_SUBMIT - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_DELETE_VALUE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_DELETE_VALUE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_ERROR_CONTINUE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_ERROR_CONTINUE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_ERROR_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_ERROR_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ACTION_MOVE_SUBMIT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ACTION_MOVE_SUBMIT - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ASSET_ID - -Static variable in class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage -
  -
AUTHOR - -Static variable in class com.arsdigita.cms.docmgr.Document -
  -
AUTHOR_LAST_NAME - -Static variable in class com.arsdigita.cms.docmgr.Document -
  -
ApplicationAuthenticationListener - class com.arsdigita.docmgr.ApplicationAuthenticationListener.
A RequestListener that verifies the user - has a given privilege on the current Application.
ApplicationAuthenticationListener(String) - -Constructor for class com.arsdigita.docmgr.ApplicationAuthenticationListener -
Constructs listener -
add(Component) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
Adds a component to the body. -
add(Component) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
Adds a component to the body. -
addPage(String, Page, boolean) - -Method in class com.arsdigita.cms.docmgr.ui.DMDispatcher -
convenience wrapper method that allows to register a "" page - for an index page, if the isIndex flag is try -
addWidgets() - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
Adds widgets to the form. -
addWidgets() - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
Adds widgets to the form. -
advancedSearch(String, String, String, BigDecimal, Date, Date, String[], String[], User, Collection) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
advancedSearch(String, String, String, BigDecimal, Date, Date, String[], String[], User, Collection) - -Method in class com.arsdigita.cms.docmgr.search.LuceneSearcher -
Returns a collection of the search results. -
advancedSearch(String, String, String, BigDecimal, Date, Date, String[], String[], User, Collection) - -Method in interface com.arsdigita.cms.docmgr.search.Searcher -
  -
afterSave() - -Method in class com.arsdigita.cms.docmgr.Repository -
Grant write permission to the Portal participants. -
afterSave() - -Method in class com.arsdigita.docmgr.File -
  -
afterSave() - -Method in class com.arsdigita.docmgr.Repository -
Grant write permission to the Portal participants. -
afterSave() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
appendExtension(String) - -Method in class com.arsdigita.docmgr.File -
Append the extension of this file to a given file name. -
-
-

-B

-
-
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.DocFolder -
Data object type for this domain object -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.DocLink -
Data object type for this domain object -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.Document -
Data object type for this domain object -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.Repository -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.docmgr.DocBlobject -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.docmgr.File -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.docmgr.Folder -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.docmgr.Repository -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.docmgr.ResourceImpl -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet -
  -
BUNDLE_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Globalization resource -
BUNDLE_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Globalization resource -
BrowseFileInfoPropertiesPane - class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane.
 
BrowseFileInfoPropertiesPane(BrowsePane) - -Constructor for class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
BrowseFileRevisionsTable - class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable.
 
BrowseFileRevisionsTable(BrowsePane) - -Constructor for class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
  -
BrowseFolderEdit - class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit.
 
BrowseFolderEdit(BrowsePane, BigDecimalParameter) - -Constructor for class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit -
  -
beforeSave() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
beforeSave() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
beforeSave() - -Method in class com.arsdigita.cms.docmgr.Repository -
  -
beforeSave() - -Method in class com.arsdigita.docmgr.File -
  -
beforeSave() - -Method in class com.arsdigita.docmgr.Folder -
  -
beforeSave() - -Method in class com.arsdigita.docmgr.Repository -
  -
beforeSave() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
buildBody(Container) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildBody(Container) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
buildContextBar() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildContextBar() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
buildDCNIndexPage() - -Method in class com.arsdigita.cms.docmgr.ui.DCNDispatcher -
Build index page to browse documents by category -
buildDMIndexPage() - -Method in class com.arsdigita.cms.docmgr.ui.DMDispatcher -
Build index page for the document manager, -
buildFileInfoPage() - -Method in class com.arsdigita.cms.docmgr.ui.DMDispatcher -
Build page for the administration of one file. -
buildFooter(Container) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildFooter(Container) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
buildGlobal(Container) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildGlobal(Container) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
buildHeader(Container) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildHeader(Container) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
buildPage() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildPage() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
buildSearchPage() - -Method in class com.arsdigita.cms.docmgr.ui.DMDispatcher -
Build search page for the document manager, -
buildTitle() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
buildTitle() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
-
-

-C

-
-
CANCEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
CANCEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
CAT_TREE_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Global state parameters. -
CAT_TREE_INIT_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
CLASS_PAGING_CONTROL - -Static variable in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
CLASS_SELECTED - -Static variable in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
CONTENT - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
CONTENT_SECTION - -Static variable in class com.arsdigita.cms.docmgr.installer.Initializer -
  -
CREATOR - -Static variable in class com.arsdigita.cms.docmgr.Document -
  -
CategoriesPrintListener - class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener.
 
CategoriesPrintListener(ContentSection) - -Constructor for class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener -
  -
CategoriesPrintListener(ContentSection, BigDecimalParameter) - -Constructor for class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener -
  -
CategoriesPrintListener(ContentSection, BigDecimalParameter, boolean) - -Constructor for class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener -
  -
CategoryDocModelBuilder - class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder.
Iterates through all the children of the given Category
CategoryDocModelBuilder(ACSObjectSelectionModel, String) - -Constructor for class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder -
  -
CategoryDocsNavigatorPortlet - class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet.
Portlet showing the category tree used by Documents.
CategoryDocsNavigatorPortlet(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -
  -
CategoryItemsBrowser - class com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser.
Displays Documents for a given Category
CategoryItemsBrowser(CategoryDocModelBuilder, ACSObjectSelectionModel, String, ContentSection) - -Constructor for class com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser -
Construct a new CategoryItemsBrowser - -
Constants - interface com.arsdigita.docmgr.Constants.
Constants used throughout the document manager application.
ContentTypeException - exception com.arsdigita.docmgr.ContentTypeException.
Base class for content type exceptions.
ContentTypeException(String) - -Constructor for class com.arsdigita.docmgr.ContentTypeException -
Creates a new exception with a given error message. -
ContentTypeException(Exception) - -Constructor for class com.arsdigita.docmgr.ContentTypeException -
Creates a new exception by wrapping an existing one. -
CreateDocLinkPane - class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane.
A UI Container class used to create instances of DocLink object type.
CreateDocLinkPane(Component, Tree) - -Constructor for class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane -
Constructor. -
CreateDocLinkSearchTable - class com.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable.
A UI class used to create the objects of type DocLink.
cellSelected(TableActionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
  -
cleanUpSearchString(String, String) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
com.arsdigita.cms.docmgr - package com.arsdigita.cms.docmgr
 
com.arsdigita.cms.docmgr.dispatcher - package com.arsdigita.cms.docmgr.dispatcher
 
com.arsdigita.cms.docmgr.installer - package com.arsdigita.cms.docmgr.installer
 
com.arsdigita.cms.docmgr.search - package com.arsdigita.cms.docmgr.search
 
com.arsdigita.cms.docmgr.ui - package com.arsdigita.cms.docmgr.ui
 
com.arsdigita.cms.docmgr.ui.authoring - package com.arsdigita.cms.docmgr.ui.authoring
 
com.arsdigita.cms.docmgr.ui.content - package com.arsdigita.cms.docmgr.ui.content
 
com.arsdigita.cms.docmgr.ui.tree - package com.arsdigita.cms.docmgr.ui.tree
 
com.arsdigita.cms.docmgr.util - package com.arsdigita.cms.docmgr.util
 
com.arsdigita.docmgr - package com.arsdigita.docmgr
 
com.arsdigita.docmgr.installer - package com.arsdigita.docmgr.installer
 
com.arsdigita.docmgr.ui - package com.arsdigita.docmgr.ui
 
com.arsdigita.docmgr.util - package com.arsdigita.docmgr.util
 
compareTo(Object) - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
copy(ResourceImpl, ResourceImpl) - -Static method in class com.arsdigita.docmgr.ResourceImpl -
Copy the generic properties of a Resource. -
copyTo(Resource) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
Copies the resource into another location. -
copyTo(String, Resource) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
Copies the resource into another location with a new name. -
copyTo(String) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
Copies the resource into the same location (same parent) with a - new name. -
copyTo(Resource) - -Method in class com.arsdigita.cms.docmgr.DocLink -
Copies the resource into another location. -
copyTo(String, Resource) - -Method in class com.arsdigita.cms.docmgr.DocLink -
Copies the resource into another location with a new name. -
copyTo(String) - -Method in class com.arsdigita.cms.docmgr.DocLink -
Copies the resource into the same location (same parent) with passed - in name as new name. -
copyTo(Resource) - -Method in class com.arsdigita.cms.docmgr.Document -
Copies the resource into another location. -
copyTo(String, Resource) - -Method in class com.arsdigita.cms.docmgr.Document -
Copies the resource into another location with a new name. -
copyTo(String) - -Method in class com.arsdigita.cms.docmgr.Document -
Copies the resource into the same location (same parent) with a - new name. -
copyTo(Resource) - -Method in interface com.arsdigita.cms.docmgr.Resource -
Copies the resource into another location. -
copyTo(String, Resource) - -Method in interface com.arsdigita.cms.docmgr.Resource -
Copies the resource into another location with a new name. -
copyTo(String) - -Method in interface com.arsdigita.cms.docmgr.Resource -
Copies the resource into the same location (same parent) with a - new name. -
copyTo(String, Resource) - -Method in class com.arsdigita.docmgr.File -
  -
copyTo(String, Resource) - -Method in class com.arsdigita.docmgr.Folder -
Copy this folder to a new location. -
copyTo(Resource) - -Method in interface com.arsdigita.docmgr.Resource -
Copies the resource into another location. -
copyTo(String, Resource) - -Method in interface com.arsdigita.docmgr.Resource -
Copies the resource into another location with a new name. -
copyTo(String) - -Method in interface com.arsdigita.docmgr.Resource -
Copies the resource into the same location (same parent) with a - new name. -
copyTo(Resource) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
copyTo(String) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
copyTo(String, Resource) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
create(String, String, Application) - -Static method in class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication -
This is called when the application is created. -
create(String, String, Application) - -Static method in class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication -
This is called when the application is created. -
create(String, String, Application) - -Static method in class com.arsdigita.cms.docmgr.Repository -
This is called when the application is created. -
create(String, String, Application) - -Static method in class com.arsdigita.docmgr.Repository -
This is called when the application is created. -
createAdvancedQuery(String, User, Collection) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
createFolders(String) - -Method in class com.arsdigita.docmgr.Folder -
Creates the sub folder named by path, including any necessary - but nonexistent parent folders. -
createSearchString(String[], String[], String, String, String, BigDecimal, Date, Date) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
createSimpleQuery(String, User) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
-
-

-D

-
-
DCNDispatcher - class com.arsdigita.cms.docmgr.ui.DCNDispatcher.
Dispatcher for document category navigator.
DCNDispatcher() - -Constructor for class com.arsdigita.cms.docmgr.ui.DCNDispatcher -
Default constructor instantiating the URL-page map. -
DEFAULT_ICON - -Static variable in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
  -
DEFAULT_MIME_TYPE - -Static variable in class com.arsdigita.docmgr.File -
  -
DESCRIPTION - -Static variable in class com.arsdigita.cms.docmgr.DocFolder -
  -
DESCRIPTION - -Static variable in class com.arsdigita.cms.docmgr.DocLink -
  -
DESCRIPTION - -Static variable in class com.arsdigita.cms.docmgr.Document -
PDL properties -
DESCRIPTION - -Static variable in class com.arsdigita.cms.docmgr.installer.DocFolderInitializer -
  -
DESCRIPTION - -Static variable in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
  -
DESCRIPTION - -Static variable in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
  -
DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
DESTINATION_FOLDER_PANEL_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Action Panel Constants -
DESTINATION_FOLDER_PANEL_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Action Panel Constants -
DIFFERENT_MIMETYPE_ERROR - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
DIFFERENT_MIMETYPE_ERROR - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
DMConstants - interface com.arsdigita.cms.docmgr.ui.DMConstants.
Variously used constant objects used in Document Manager UI
DMConstants - interface com.arsdigita.docmgr.ui.DMConstants.
Variously used constant objects used in Document Manager UI
DMDispatcher - class com.arsdigita.cms.docmgr.ui.DMDispatcher.
Dispatcher for document manager application.
DMDispatcher() - -Constructor for class com.arsdigita.cms.docmgr.ui.DMDispatcher -
Default constructor instantiating the URL-page map. -
DMDispatcher - class com.arsdigita.docmgr.ui.DMDispatcher.
Dispatcher for document manager application.
DMDispatcher() - -Constructor for class com.arsdigita.docmgr.ui.DMDispatcher -
Default constructor instantiating the URL-page map. -
DMUtils - class com.arsdigita.cms.docmgr.ui.DMUtils.
Public static helper methods and classes for recurring tasks - in Document Manager UI.
DMUtils() - -Constructor for class com.arsdigita.cms.docmgr.ui.DMUtils -
  -
DMUtils - class com.arsdigita.docmgr.ui.DMUtils.
Public static helper methods and classes for recurring tasks - in Document Manager UI.
DMUtils() - -Constructor for class com.arsdigita.docmgr.ui.DMUtils -
  -
DMUtils.DateFormat - class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat.
Class to render java.util.Date in request specific locale - and pattern.
DMUtils.DateFormat() - -Constructor for class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat -
  -
DMUtils.DateFormat - class com.arsdigita.docmgr.ui.DMUtils.DateFormat.
Class to render java.util.Date in request specific locale - and pattern.
DMUtils.DateFormat() - -Constructor for class com.arsdigita.docmgr.ui.DMUtils.DateFormat -
  -
DMUtils.FileSize - class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize.
Class to describe and format file sizes in request specific locales
DMUtils.FileSize() - -Constructor for class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize -
  -
DMUtils.FileSize - class com.arsdigita.docmgr.ui.DMUtils.FileSize.
Class to describe and format file sizes in request specific locales
DMUtils.FileSize() - -Constructor for class com.arsdigita.docmgr.ui.DMUtils.FileSize -
  -
DOCS_XML_NS - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
The XML namespace. -
DOCS_XML_NS - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
The XML namespace. -
DOC_BODY_ELEMENT - -Static variable in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DOC_BODY_ELEMENT - -Static variable in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DOC_COL_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
DOC_FOOTER_ELEMENT - -Static variable in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DOC_FOOTER_ELEMENT - -Static variable in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DOC_GLOBAL_ELEMENT - -Static variable in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DOC_GLOBAL_ELEMENT - -Static variable in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DOC_HEADER_ELEMENT - -Static variable in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DOC_HEADER_ELEMENT - -Static variable in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DOC_XML_NS - -Static variable in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DOC_XML_NS - -Static variable in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DURATION - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
DocBlobject - class com.arsdigita.docmgr.DocBlobject.
 
DocBlobject() - -Constructor for class com.arsdigita.docmgr.DocBlobject -
  -
DocBlobject(DataObject) - -Constructor for class com.arsdigita.docmgr.DocBlobject -
Creates a new Doc Blob by retrieving it from the underlying data - object. -
DocBlobject(BigDecimal) - -Constructor for class com.arsdigita.docmgr.DocBlobject -
Creates a new File by retrieving it based on ID. -
DocBlobject(OID) - -Constructor for class com.arsdigita.docmgr.DocBlobject -
Creates a new DocBlobject by retrieving it based on OID. -
DocFolder - class com.arsdigita.cms.docmgr.DocFolder.
This class needs its own BASE_DATA_OBJECT_TYPE so we can have - Description field.
DocFolder() - -Constructor for class com.arsdigita.cms.docmgr.DocFolder -
  -
DocFolder(BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.DocFolder -
  -
DocFolder(OID) - -Constructor for class com.arsdigita.cms.docmgr.DocFolder -
  -
DocFolder(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.DocFolder -
  -
DocFolder(String) - -Constructor for class com.arsdigita.cms.docmgr.DocFolder -
  -
DocFolder(String, String, DocFolder) - -Constructor for class com.arsdigita.cms.docmgr.DocFolder -
  -
DocFolderAppCellRenderer - class com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer.
 
DocFolderAppCellRenderer() - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer -
  -
DocFolderContentTreeRenderer - class com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer.
Customized Bebop Tree that shows the accessible Repositories - at the root level and the inidividual File trees beneath it.
DocFolderContentTreeRenderer() - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer -
  -
DocFolderInitializer - class com.arsdigita.cms.docmgr.installer.DocFolderInitializer.
Loader class for the DocFolder content type.
DocFolderInitializer() - -Constructor for class com.arsdigita.cms.docmgr.installer.DocFolderInitializer -
  -
DocFolderIterator - class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator.
 
DocFolderIterator(Folder.ItemCollection) - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator -
  -
DocFolderLoader - class com.arsdigita.cms.docmgr.DocFolderLoader.
 
DocFolderLoader() - -Constructor for class com.arsdigita.cms.docmgr.DocFolderLoader -
  -
DocFolderNavbar - class com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar.
 
DocFolderNavbar() - -Constructor for class com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar -
  -
DocFolderTreeNode - class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode.
 
DocFolderTreeNode() - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode -
  -
DocFolderTreeNode(DocFolder) - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode -
  -
DocFoldersContentTree - class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree.
Tree model that incorporates the views of all subsribed repositories.
DocFoldersContentTree(TreeModel) - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree -
  -
DocFoldersContentTreeModel - class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel.
Tree model that incorporates the views of all subsribed repositories.
DocFoldersContentTreeModel() - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel -
  -
DocIndexPage - class com.arsdigita.cms.docmgr.ui.content.DocIndexPage.
A public page that displays all items in the current content - section, and allows to search or browse them.
DocIndexPage() - -Constructor for class com.arsdigita.cms.docmgr.ui.content.DocIndexPage -
  -
DocLink - class com.arsdigita.cms.docmgr.DocLink.
DomainObject class which represents DocLink ContentType objects.
DocLink() - -Constructor for class com.arsdigita.cms.docmgr.DocLink -
  -
DocLink(BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.DocLink -
  -
DocLink(OID) - -Constructor for class com.arsdigita.cms.docmgr.DocLink -
  -
DocLink(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.DocLink -
  -
DocLink(String) - -Constructor for class com.arsdigita.cms.docmgr.DocLink -
  -
DocLinkInitializer - class com.arsdigita.cms.docmgr.installer.DocLinkInitializer.
 
DocLinkInitializer() - -Constructor for class com.arsdigita.cms.docmgr.installer.DocLinkInitializer -
  -
DocLinkLoader - class com.arsdigita.cms.docmgr.DocLinkLoader.
 
DocLinkLoader() - -Constructor for class com.arsdigita.cms.docmgr.DocLinkLoader -
  -
DocLinkPropertyForm - class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm.
Form to edit the basic properties of an document.
DocLinkPropertyForm(ItemSelectionModel) - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
Creates a new form to edit the Document object specified - by the item selection model passed in. -
DocLinkStep - class com.arsdigita.cms.docmgr.ui.authoring.DocLinkStep.
 
DocLinkStep(ItemSelectionModel, AuthoringKitWizard) - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.DocLinkStep -
  -
DocMgr - class com.arsdigita.cms.docmgr.DocMgr.
Provides a set of helper methods for the DocManager module.
DocMgrConfig - class com.arsdigita.cms.docmgr.DocMgrConfig.
 
DocMgrConfig() - -Constructor for class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
DocmgrBasePage - class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.
BasePage class
DocmgrBasePage() - -Constructor for class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DocmgrBasePage(BigDecimalParameter) - -Constructor for class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DocmgrBasePage(String, BigDecimalParameter) - -Constructor for class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
DocmgrBasePage - class com.arsdigita.docmgr.ui.DocmgrBasePage.
BasePage class
DocmgrBasePage() - -Constructor for class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DocmgrBasePage(String) - -Constructor for class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
DocmgrBasePage.CurrentApplicationLabelPrinter - class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter.
 
DocmgrBasePage.CurrentApplicationLabelPrinter() - -Constructor for class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter -
  -
DocmgrBasePage.CurrentApplicationLabelPrinter - class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter.
 
DocmgrBasePage.CurrentApplicationLabelPrinter() - -Constructor for class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter -
  -
DocmgrBasePage.CurrentApplicationLinkPrinter - class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter.
 
DocmgrBasePage.CurrentApplicationLinkPrinter() - -Constructor for class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter -
  -
DocmgrBasePage.CurrentApplicationLinkPrinter - class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter.
 
DocmgrBasePage.CurrentApplicationLinkPrinter() - -Constructor for class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter -
  -
DocmgrBasePage.ParentApplicationLinkPrinter - class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter.
 
DocmgrBasePage.ParentApplicationLinkPrinter() - -Constructor for class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter -
  -
DocmgrBasePage.ParentApplicationLinkPrinter - class com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter.
 
DocmgrBasePage.ParentApplicationLinkPrinter() - -Constructor for class com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter -
  -
Document - class com.arsdigita.cms.docmgr.Document.
This content type represents a document.
Document() - -Constructor for class com.arsdigita.cms.docmgr.Document -
  -
Document(BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.Document -
  -
Document(OID) - -Constructor for class com.arsdigita.cms.docmgr.Document -
  -
Document(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.Document -
  -
Document(String) - -Constructor for class com.arsdigita.cms.docmgr.Document -
  -
DocumentAssetPage - class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage.
A resource handler which streams out a blob from the database.
DocumentAssetPage() - -Constructor for class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage -
Construct the resource handler -
DocumentCategoryBrowserApplication - class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication.
A repository is the application that provides access to files and - folders.
DocumentCategoryBrowserApplication(OID) - -Constructor for class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication -
Retreives a repository from the database usings its OID. -
DocumentCategoryBrowserApplication(BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication -
Constructor. -
DocumentCategoryBrowserApplication(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication -
Constructs a repository from the underlying data object. -
DocumentCollection - class com.arsdigita.cms.docmgr.DocumentCollection.
 
DocumentCollection(DataCollection) - -Constructor for class com.arsdigita.cms.docmgr.DocumentCollection -
  -
DocumentInitializer - class com.arsdigita.cms.docmgr.installer.DocumentInitializer.
 
DocumentInitializer() - -Constructor for class com.arsdigita.cms.docmgr.installer.DocumentInitializer -
  -
DocumentLoader - class com.arsdigita.cms.docmgr.DocumentLoader.
 
DocumentLoader() - -Constructor for class com.arsdigita.cms.docmgr.DocumentLoader -
  -
DocumentPropertiesStep - class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.
Authoring step to edit the simple attributes of the Document content - type (and its subclasses).
DocumentPropertiesStep(ItemSelectionModel, AuthoringKitWizard) - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep -
  -
DocumentPropertiesStep.FileFormatter - class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter.
 
DocumentPropertiesStep.FileFormatter() - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter -
  -
DocumentPropertiesStep.FileFormatter(String) - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter -
  -
DocumentPropertyForm - class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm.
Form to edit the basic properties of an document.
DocumentPropertyForm(ItemSelectionModel) - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
Creates a new form to edit the Document object specified - by the item selection model passed in. -
delete() - -Method in class com.arsdigita.cms.docmgr.DocLink -
Delete this Link along with it's parent ContentBundle -
delete() - -Method in class com.arsdigita.cms.docmgr.Document -
Deletes the Parent ContentBundle of this Document. -
delete() - -Method in interface com.arsdigita.cms.docmgr.Resource -
  -
delete() - -Method in class com.arsdigita.docmgr.ResourceImpl -
Deletes a resource. -
denyRequest(PageState) - -Method in class com.arsdigita.docmgr.ApplicationAuthenticationListener -
Action performed if authentication failed. -
dispatch(HttpServletRequest, HttpServletResponse, RequestContext) - -Method in class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage -
Streams an image from the database. -
dispatch(HttpServletRequest, HttpServletResponse, RequestContext) - -Method in class com.arsdigita.cms.docmgr.ui.DMDispatcher -
  -
dispatch(HttpServletRequest, HttpServletResponse, RequestContext) - -Method in class com.arsdigita.docmgr.ui.DMDispatcher -
  -
displayEditForm(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
displayPropertiesPane(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
displaySendColleagueForm(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
displayUploadForm(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
doGetPortletRenderer() - -Method in class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -
  -
doGetPortletRenderer() - -Method in class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -
  -
doGetPortletRenderer() - -Method in class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet -
  -
doGetPortletRenderer() - -Method in class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet -
  -
-
-

-E

-
-
EDIT_SHEET_NAME - -Static variable in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep -
The name of the editing sheet added to this step -
EMAIL_INVALID_ERROR - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
EMAIL_INVALID_ERROR - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
END_DATE_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
EXTERNAL_URL - -Static variable in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
  -
expandPath(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTree -
  -
extractFileName(String, PageState) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Extract the true filename from the uploaded filepath name - taking OS-specific file-separator into account The considered - OS'es are Windows, Mac, and Linux/Unixes. -
extractFileName(String, PageState) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Extract the true filename from the uploaded filepath name - taking OS-specific file-separator into account The considered - OS'es are Windows, Mac, and Linux/Unixes. -
-
-

-F

-
-
FILE - -Static variable in class com.arsdigita.cms.docmgr.Document -
  -
FILE - -Static variable in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
  -
FILES - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILES - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_ACTION_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Action Panel -
FILE_ACTION_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Action Panel -
FILE_CATEGORIES - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_DELETE_CONFIRM - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
FILE DELETE link -
FILE_DELETE_CONFIRM - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
FILE DELETE link -
FILE_DELETE_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File-Delete Form -
FILE_DELETE_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File-Delete Form -
FILE_DELETE_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_DELETE_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_DESCRIPTION - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_DOWNLOAD_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Download Panel -
FILE_DOWNLOAD_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Download Panel -
FILE_DOWNLOAD_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_DOWNLOAD_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_EDIT_ACTION_DESCRIPTION - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_EDIT_ACTION_DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_EDIT_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Edit Panel -
FILE_EDIT_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Edit Panel -
FILE_EDIT_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Action Panel Constants -
FILE_EDIT_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Action Panel Constants -
FILE_FEEDBACK_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Feedback Panel -
FILE_FEEDBACK_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Feedback Panel -
FILE_ID_PARAM - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_ID_PARAM_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_INFO_COMMENTS_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INFO_COMMENTS_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_INFO_HISTORY_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INFO_HISTORY_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_INFO_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
DM File Info Page -
FILE_INFO_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
DM File Info Page -
FILE_INFO_LINKS_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INFO_LINKS_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_INFO_PROPERTIES_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INFO_PROPERTIES_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_INTENDED_AUDIENCE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INTENDED_AUDIENCE_INTERNAL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INTENDED_AUDIENCE_PUBLIC - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_INTENDED_AUDIENCE_WORKSPACE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_KEYWORDS - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_KEYWORDS - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_NAME_REQUIRED - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_NAME_REQUIRED - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_NEW_VERSION_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_NEW_VERSION_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_PROPERTIES_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Properties -
FILE_PROPERTIES_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Properties -
FILE_REVISION_HISTORY_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Revision History Panel -
FILE_REVISION_HISTORY_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Revision History Panel -
FILE_SAVE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SAVE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_FORM_EMAIL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File-Send-to-Colleague Form -
FILE_SEND_COLLEAGUE_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File-Send-to-Colleague Form -
FILE_SEND_COLLEAGUE_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_MESSAGE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_RETURN_ADDRESS - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_SUBJECT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_SUBMIT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_THANKS - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SEND_COLLEAGUE_THANKS_RETURN_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SOURCE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SOURCE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_SUBMIT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_SUBMIT - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_UPLOAD_ADD_FILE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_UPLOAD_ADD_FILE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_UPLOAD_FORM_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Uplaod Form -
FILE_UPLOAD_FORM_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Uplaod Form -
FILE_UPLOAD_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
File Upload Panel -
FILE_UPLOAD_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
File Upload Panel -
FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_UPLOAD_INITIAL_TRANSACTION_DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FILE_VERSION_DESCRIPTION - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FILE_VERSION_DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDERS - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDERS - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_ADD_DOC_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_CREATE_FORM_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Folder Create Form -
FOLDER_CREATE_FORM_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Folder Create Form -
FOLDER_DESCRIPTION - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_DESCRIPTION_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_DESCRIPTION_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_EMPTY_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_EMPTY_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_ID - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_ID - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
FOLDER_ID - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_INFORMATION_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
One Folder content -
FOLDER_INFORMATION_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
One Folder content -
FOLDER_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Folder parameters -
FOLDER_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Folder parameters -
FOLDER_NAME_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_NAME_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_NEW_CREATE_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_NEW_DOCLINK_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_NEW_FILE_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_NEW_FILE_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_NEW_FOLDER_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_NEW_FOLDER_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
FOLDER_PARENTNOTFOUND_ERROR - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Error messages -
FOLDER_PARENTNOTFOUND_ERROR - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Error messages -
FOLDER_SAVE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
FOLDER_SAVE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
File - class com.arsdigita.docmgr.File.
Represents a File in the document manager application.
File(DataObject) - -Constructor for class com.arsdigita.docmgr.File -
Creates a new file by retrieving it from the underlying data - object. -
File(BigDecimal) - -Constructor for class com.arsdigita.docmgr.File -
Creates a new File by retrieving it based on ID. -
File(OID) - -Constructor for class com.arsdigita.docmgr.File -
Creates a new File by retrieving it based on OID. -
File(String, String, Folder) - -Constructor for class com.arsdigita.docmgr.File -
Creates a file inside a given parent folder. -
File(String, String, String, Folder) - -Constructor for class com.arsdigita.docmgr.File -
Creates a file inside a given parent folder. -
File(Folder) - -Constructor for class com.arsdigita.docmgr.File -
Creates an empty file inside a given parent folder. -
File(String) - -Constructor for class com.arsdigita.docmgr.File -
Creates a file -
FileDimensionalNavbar - class com.arsdigita.cms.docmgr.ui.FileDimensionalNavbar.
 
FileDimensionalNavbar(RequestLocal) - -Constructor for class com.arsdigita.cms.docmgr.ui.FileDimensionalNavbar -
  -
FileDisplay - class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay.
 
FileDisplay() - -Constructor for class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay -
Construct a new FileDisplay -
FileUploadForm - class com.arsdigita.cms.docmgr.ui.FileUploadForm.
Form to upload and submit a file to the document repository.
FileUploadForm(BrowsePane, Tree) - -Constructor for class com.arsdigita.cms.docmgr.ui.FileUploadForm -
Constructor -
FileUploadForm(BrowsePane, Tree, boolean) - -Constructor for class com.arsdigita.cms.docmgr.ui.FileUploadForm -
  -
FileUploadForm - class com.arsdigita.docmgr.ui.FileUploadForm.
Form to upload and submit a file to the document repository.
FileUploadForm(BrowsePane, Tree) - -Constructor for class com.arsdigita.docmgr.ui.FileUploadForm -
Constructor -
FileUploadForm(BrowsePane, Tree, boolean) - -Constructor for class com.arsdigita.docmgr.ui.FileUploadForm -
  -
Folder - class com.arsdigita.docmgr.Folder.
Represents a Folder in the document manager application.
Folder() - -Constructor for class com.arsdigita.docmgr.Folder -
Constructor. -
Folder(DataObject) - -Constructor for class com.arsdigita.docmgr.Folder -
Creates a new folder object. -
Folder(BigDecimal) - -Constructor for class com.arsdigita.docmgr.Folder -
Creates a new folder by retrieving it based on ID. -
Folder(OID) - -Constructor for class com.arsdigita.docmgr.Folder -
Creates a new folder by retrieving it based on OID. -
Folder(String) - -Constructor for class com.arsdigita.docmgr.Folder -
  -
Folder(ObjectType) - -Constructor for class com.arsdigita.docmgr.Folder -
Constructor. -
Folder(String, String) - -Constructor for class com.arsdigita.docmgr.Folder -
Creates a named folder with a description. -
Folder(String, String, Folder) - -Constructor for class com.arsdigita.docmgr.Folder -
Creates a sub folder inside a given parent folder. -
format(Date) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat -
Default Date format should look like this - 12/19/01 07:21 PM -
format(Date, String) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat -
This allows to pass in any formatting strings for the date -
format(DomainObject, String, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter -
  -
format(Date) - -Static method in class com.arsdigita.docmgr.ui.DMUtils.DateFormat -
Default Date format should look like this - 12/19/01 07:21 PM -
format(Date, String) - -Static method in class com.arsdigita.docmgr.ui.DMUtils.DateFormat -
This allows to pass in any formatting strings for the date -
formatFileSize(long) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize -
Chooses the units for the file such that the file size is - greater or equal unity in the smallest units possible. -
formatFileSize(BigDecimal) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize -
Wrapper for converting from BigDecimal to long file size -
formatFileSize(long, PageState) - -Static method in class com.arsdigita.docmgr.ui.DMUtils.FileSize -
Chooses the units for the file such that the file size is - greater or equal unity in the smallest units possible. -
formatFileSize(BigDecimal, PageState) - -Static method in class com.arsdigita.docmgr.ui.DMUtils.FileSize -
Wrapper for converting from BigDecimal to long file size -
-
-

-G

-
-
GET_ALL_TREES - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
GET_ALL_TREES - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
GET_CHILDREN - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
GET_CHILDREN - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
GET_REPOSITORIES - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
GET_REPOSITORIES - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
GET_REPOSITORIES_ROOTS - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
GET_REPOSITORIES_ROOTS - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
GO_BACK_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
GO_BACK_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
GlobalizationUtil - class com.arsdigita.cms.docmgr.util.GlobalizationUtil.
- .
GlobalizationUtil() - -Constructor for class com.arsdigita.cms.docmgr.util.GlobalizationUtil -
  -
GlobalizationUtil - class com.arsdigita.docmgr.util.GlobalizationUtil.
- .
GlobalizationUtil() - -Constructor for class com.arsdigita.docmgr.util.GlobalizationUtil -
  -
generateDraftURL(ContentSection, BigDecimal) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Returns content item's draft version URL -
generateFilePropertiesXML(FileAsset, PageState, Element) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay -
  -
generateItemURL(PageState, BigDecimal, String, ContentSection, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Generates a URL for a content item. -
generateItemURL(PageState, BigDecimal, String, ContentSection, String, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Generates a URL for a content item. -
generateItemURL(PageState, ContentItem, ContentSection, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Generates a URL for a content item. -
generateItemURL(PageState, ContentItem, ContentSection, String, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Generates a URL for a content item. -
generateLiveURL(ContentSection, ContentItem, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Generate a language-independent URL to the - item in the given section. -
generatePreviewURL(ContentSection, ContentItem, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Generate a URL which can be used to preview the - item, using the given - templateContext. -
generateXML(PageState, Element) - -Method in class com.arsdigita.cms.docmgr.ui.FileDimensionalNavbar -
  -
generateXML(PageState, Element) - -Method in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
generateXML(PageState, Element) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay -
  -
generateXML(PageState, Element) - -Method in class com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar -
  -
getAdvancedSearch(String, String, String, BigDecimal, Date, Date, String[], String[], User, Collection) - -Static method in class com.arsdigita.cms.docmgr.search.SearchUtils -
  -
getAuthor() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getAuthorLastName() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.docmgr.DocumentCategoryBrowserApplication -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.docmgr.Repository -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.docmgr.DocBlobject -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.docmgr.File -
Returns the pdl object type required for this object. -
getBaseDataObjectType() - -Method in class com.arsdigita.docmgr.Folder -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.docmgr.Repository -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet -
  -
getBody() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
getBody() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
getCanonicalPath(String) - -Static method in class com.arsdigita.docmgr.ResourceImpl -
Returns a canonical path by removing leading or trailing - separator characters as needed. -
getChildren(TreeNode, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel -
Get direct children in this node which are folders in this application -
getChildren(TreeNode, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel -
Get direct children in this node which are folders in this application -
getComponent(List, PageState, Object, String, int, boolean) - -Method in class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer -
  -
getComponent(Tree, PageState, Object, boolean, boolean, boolean, Object) - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer -
  -
getComponent(Tree, PageState, Object, boolean, boolean, boolean, Object) - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer -
  -
getConfig() - -Static method in class com.arsdigita.cms.docmgr.DocMgr -
Retrieves the current configuration -
getConfiguration() - -Method in class com.arsdigita.cms.docmgr.installer.Initializer -
Returns the configuration object used by this initializer. -
getConfiguration() - -Method in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
Returns the configuration object used by this initializer. -
getContent() - -Method in class com.arsdigita.docmgr.DocBlobject -
  -
getContentSection() - -Method in class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
getContentType() - -Method in class com.arsdigita.docmgr.File -
  -
getContext() - -Method in class com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser -
  -
getCreationDate() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getCreationIP() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getCreationUser() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getCreator() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getCurrentContext(PageState) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Fetches the current context based on the page state. -
getCurrentRepository(HttpServletRequest) - -Static method in class com.arsdigita.cms.docmgr.Repository -
  -
getCurrentRepository(HttpServletRequest) - -Static method in class com.arsdigita.docmgr.Repository -
  -
getDefaultString() - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter -
  -
getDescription() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
getDescription() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getDescription() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getDescription() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Returns a description of the resource, or null if no - description has been provided. -
getDescription() - -Method in interface com.arsdigita.docmgr.Resource -
Returns a description of the resource, or null if no - description has been provided. -
getDescription() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getDisplayName() - -Method in class com.arsdigita.docmgr.File -
Returns the display name of a file, that is the file name minus - any extension if present. -
getDisplayName() - -Method in class com.arsdigita.docmgr.Folder -
Returns the display name for a folder, which is equivalent to - calling getName(). -
getDocLink(BigDecimal) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Attempts to load a DocLink by passed in ID. -
getDocument() - -Method in class com.arsdigita.cms.docmgr.DocumentCollection -
Get the current item as a Document domain object. -
getDocumentPropertySheet(ItemSelectionModel) - -Static method in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkStep -
Returns a component that displays the properties of the - Document specified by the ItemSelectionModel passed in. -
getDocumentPropertySheet(ItemSelectionModel) - -Static method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep -
Returns a component that displays the properties of the - Document specified by the ItemSelectionModel passed in. -
getDocumentsWithName(Folder, String) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getDomainObject() - -Method in class com.arsdigita.cms.docmgr.DocumentCollection -
Get the current item as a Document domain object. -
getDomainObject() - -Method in class com.arsdigita.docmgr.ResourceImplCollection -
Get the current item as a ResourceImpl domain object. -
getEditDoclinkIDParam() - -Method in class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane -
  -
getElement() - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode -
  -
getExtension(String) - -Static method in class com.arsdigita.docmgr.File -
Return the extension of a file name, if present. -
getExternalURL() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getFile() - -Method in class com.arsdigita.cms.docmgr.Document -
Accessor. -
getFile(BigDecimal) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Attempts to load a file by ID. -
getFile(BigDecimal) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Attempts to load a file by ID. -
getFileIDParam() - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
getFileIDParam() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
getFileName(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.FileUploadForm -
Gets either the file name from the widget - or takes the filename from the upload - widget in this order. -
getFileName(FormSectionEvent) - -Method in class com.arsdigita.docmgr.ui.FileUploadForm -
Gets either the file name from the widget - or takes the filename from the upload - widget in this order. -
getFirstRowNo(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
getFolder() - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode -
  -
getFolderName(PageState, Tree) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Get the selected folder in the tree -
getFolderName(PageState, Tree) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Get the selected folder in the tree -
getFooter() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
getFooter() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
getGlobal() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
getGlobal() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
getHeader() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
getHeader() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
getID() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Returns a unique identifier for this resource. -
getID() - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
getID() - -Method in interface com.arsdigita.docmgr.Resource -
Returns a unique identifier for this resource. -
getImpliedAuthor() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getInputStream() - -Method in class com.arsdigita.docmgr.File -
Returns an InputStream suitable for reading the raw content of - the file. -
getInternalGroupID() - -Method in class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
getItem(ContentSection, String, String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Returns a content item based on section, url, and use context. -
getItemFromDraftURL(String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Retrieves ITEM_ID parameter from URL and - instantiates item according to this ID. -
getItemFromLangAndBundle(String, ContentItem) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Finds a language instance of a content item given the bundle, - name, and lang string -
getItemFromLiveURL(String, Folder) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Returns a content item based on URL relative to the root - folder. -
getKey() - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode -
  -
getKeyColumn() - -Method in class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder -
  -
getLastModifiedDate() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getLastModifiedIP() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getLastModifiedLocal() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getLastModifiedLocal() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getLastModifiedUser() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getLastRowNo(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
getLegacyFolderID() - -Method in class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
getLegacyFolderName() - -Method in class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
getLink() - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
getLockedParty() - -Method in interface com.arsdigita.docmgr.Lockable -
Retrieves the user who locked the process. -
getMasterPage(ContentItem, HttpServletRequest) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Returns a master page based on page state (and content - section). -
getMaxPages(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
getMimeIconURL(String) - -Static method in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
  -
getName() - -Method in interface com.arsdigita.docmgr.Resource -
Returns the name of the file or folder corresponding to this - resource. -
getName() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getNameAndLangFromURLFrag(String) - -Method in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
Returns an array containing the the item's name and lang based - on the URL fragment. -
getOwner() - -Method in class com.arsdigita.cms.docmgr.Repository -
Returns the party owning the repository. -
getOwner() - -Method in class com.arsdigita.docmgr.Repository -
Returns the party owning the repository. -
getPageNo(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
getParent() - -Method in interface com.arsdigita.docmgr.Resource -
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -
getParent() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getParentResource() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
getParentResource() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getParentResource() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getParentResource() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Returns the path name of this resource's parent, or null if - this resource does not have a parent. -
getParentResourceID() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getPath() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Converts this resource into a pathname string. -
getPath() - -Method in interface com.arsdigita.docmgr.Resource -
Converts this resource into a pathname string. -
getPath() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getPrettyContentType() - -Method in class com.arsdigita.docmgr.File -
  -
getPrettyMimeType() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getPropertyNames() - -Method in class com.arsdigita.docmgr.File -
  -
getPropertyNames() - -Method in class com.arsdigita.docmgr.ResourceImpl -
Return the list of declared property names for a Resource. -
getRawContent() - -Method in class com.arsdigita.docmgr.File -
Returns the raw content of the file as a byte array. -
getRecentlyModifiedDocuments() - -Static method in class com.arsdigita.cms.docmgr.Repository -
  -
getRecentlyModifiedDocuments(Repository) - -Static method in class com.arsdigita.cms.docmgr.Repository -
  -
getRecentlyModifiedDocuments() - -Static method in class com.arsdigita.docmgr.Repository -
  -
getRecentlyModifiedDocuments(Repository) - -Static method in class com.arsdigita.docmgr.Repository -
  -
getRepository(Resource) - -Static method in class com.arsdigita.cms.docmgr.DocFolder -
  -
getRepository() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getRepository() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getRequiredPrivilege() - -Method in class com.arsdigita.docmgr.ApplicationAuthenticationListener -
  -
getResourceID() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
getResourceID(String) - -Method in class com.arsdigita.docmgr.ResourceImpl -
Retrieve the ID of a child resource using a relative path. -
getResourceImpl() - -Method in class com.arsdigita.docmgr.ResourceImplCollection -
Get the current item as a ResourceImpl domain object. -
getResults() - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearchResults -
  -
getResults() - -Method in class com.arsdigita.cms.docmgr.search.LuceneSearchResults -
  -
getResults() - -Method in interface com.arsdigita.cms.docmgr.search.SearchResults -
Returns an iterator over the desired range of Results, - or all the Results if setRange has not been called. -
getRoot() - -Method in class com.arsdigita.cms.docmgr.Repository -
  -
getRoot(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel -
Obtain the root folder of the tree -
getRoot(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel -
Obtain the root folder of the tree -
getRoot() - -Method in class com.arsdigita.docmgr.Repository -
  -
getRootFolder(DocFolder) - -Static method in class com.arsdigita.cms.docmgr.DocFolder -
  -
getRootFolder(PageState) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Gets or sets the root folder id and returns the root DocFolder -
getRootFolder(PageState) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Gets or sets the root folder id and returns the root Folder -
getRowsPerPage() - -Method in class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
getScore() - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
getSearchHits(PageState) - -Method in interface com.arsdigita.cms.docmgr.ui.SearchForm -
  -
getSearchLanguage() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getSearchLanguage() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getSearchLinkText() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getSearchLinkText() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getSearchRawContent() - -Method in class com.arsdigita.cms.docmgr.DocLink -
Over-ride to avoid any indexing of data for this ContentType. -
getSearchRawContent() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getSearchResultCount(PageState) - -Method in interface com.arsdigita.cms.docmgr.ui.SearchForm -
  -
getSearchUrlStub() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getSearchUrlStub() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
getSearchXMLContent() - -Method in class com.arsdigita.cms.docmgr.DocLink -
Over-ride to avoid any indexing of data for this ContentType. -
getSearcher() - -Static method in class com.arsdigita.cms.docmgr.search.SearchUtils -
  -
getSelFolderOrRootID(PageState, TreeNode) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Get the selected folder in the tree node or the root tree id -
getSelFolderOrRootID(PageState, TreeNode) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Get the selected folder in the tree node or the root tree id -
getSelectedFolderID(PageState, Tree) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Wrapper to get the selected folder in a tree. -
getSelectedFolderID(PageState, Tree) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Wrapper to get the selected folder in a tree. -
getSimpleSearch(String, User) - -Static method in class com.arsdigita.cms.docmgr.search.SearchUtils -
  -
getSize() - -Method in class com.arsdigita.cms.docmgr.Document -
Returns the size of the file in bytes. -
getSize() - -Method in class com.arsdigita.docmgr.File -
Returns the size of the file in bytes. -
getStylesheets() - -Method in class com.arsdigita.cms.docmgr.installer.DocLinkInitializer -
  -
getStylesheets() - -Method in class com.arsdigita.cms.docmgr.installer.DocumentInitializer -
  -
getSummary() - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
getTarget() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
getTitle() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
getTitle() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Returns the title of the file or folder corresponding to this - resource. -
getTotalSize() - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearchResults -
Returns the size of the wrapped SearchDataQuery -
getTotalSize() - -Method in class com.arsdigita.cms.docmgr.search.LuceneSearchResults -
  -
getTotalSize() - -Method in interface com.arsdigita.cms.docmgr.search.SearchResults -
Returns the number of search results -
getTotalSize(Paginator, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder -
  -
getTraversalXML() - -Method in class com.arsdigita.cms.docmgr.installer.DocLinkInitializer -
  -
getTraversalXML() - -Method in class com.arsdigita.cms.docmgr.installer.DocumentInitializer -
  -
getTypes() - -Method in class com.arsdigita.cms.docmgr.DocFolderLoader -
  -
getTypes() - -Method in class com.arsdigita.cms.docmgr.DocLinkLoader -
  -
getTypes() - -Method in class com.arsdigita.cms.docmgr.DocumentLoader -
  -
getUrlStub() - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
getUser(PageState) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Get User object from request context. -
getUser(PageState) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Get User object from request context. -
globalize(String) - -Static method in class com.arsdigita.cms.docmgr.util.GlobalizationUtil -
  -
globalize(String, Object[]) - -Static method in class com.arsdigita.cms.docmgr.util.GlobalizationUtil -
  -
globalize(String) - -Static method in class com.arsdigita.docmgr.util.GlobalizationUtil -
  -
globalize(String, Object[]) - -Static method in class com.arsdigita.docmgr.util.GlobalizationUtil -
  -
goModal(PageState, Component) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
Makes the given component the only visible component between - the header and footer of this page. -
goModal(PageState, Component) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
Makes the given component the only visible component between - the header and footer of this page. -
goUnmodal(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
Clears the currently selected modal component if it has been set. -
goUnmodal(PageState) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
Clears the currently selected modal component if it has been set. -
guessContentType(String, HttpServletRequest) - -Static method in class com.arsdigita.docmgr.File -
Guess the content type for a file by checking the file - extension agains the know database of types, or for the - existence of a MIME type header in an HttpServletRequest. -
gz(String) - -Static method in class com.arsdigita.cms.docmgr.ui.content.DocIndexPage -
  -
-
-

-H

-
-
HELP_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
HELP_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
hasChildren(TreeNode, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel -
Check whether a given node has children -
hasChildren(TreeNode, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel -
Check whether a given node has children -
hasNext() - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator -
  -
headSelected(TableActionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
  -
-
-

-I

-
-
ICON_URL_ROOT - -Static variable in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
  -
INTERNAL_GROUP_ID - -Static variable in class com.arsdigita.cms.docmgr.installer.Initializer -
  -
INVALID_CHARACTER_ERROR - -Static variable in class com.arsdigita.docmgr.InvalidNameException -
  -
IS_FOLDER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
IS_FOLDER - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
IS_FOLDER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
IS_LOCKED - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
IS_LOCKED - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
IS_MOUNTED - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
IS_MOUNTED - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ITEM_ID - -Static variable in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
The string identifying an item's ID in the query string of a - URL. -
Initializer - class com.arsdigita.cms.docmgr.installer.Initializer.
Initializes the document manager package, sets up the - DomainFactory, registers knowledge types and portlets.
Initializer() - -Constructor for class com.arsdigita.cms.docmgr.installer.Initializer -
  -
Initializer - class com.arsdigita.docmgr.installer.Initializer.
Initializes the document manager package, sets up the - DomainFactory, registers knowledge types and portlets.
Initializer() - -Constructor for class com.arsdigita.docmgr.installer.Initializer -
  -
IntermediaSearchResults - class com.arsdigita.cms.docmgr.search.IntermediaSearchResults.
 
IntermediaSearchResults(SearchDataQuery) - -Constructor for class com.arsdigita.cms.docmgr.search.IntermediaSearchResults -
  -
IntermediaSearcher - class com.arsdigita.cms.docmgr.search.IntermediaSearcher.
- Implement the Intermedia-based simple and advanced searches for the site.
IntermediaSearcher() - -Constructor for class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
InvalidMimeTypeFormatException - exception com.arsdigita.docmgr.InvalidMimeTypeFormatException.
 
InvalidMimeTypeFormatException(String) - -Constructor for class com.arsdigita.docmgr.InvalidMimeTypeFormatException -
Constructs a InvalidMimeTypeFormatException with the specified detail message. -
InvalidMimeTypeFormatException(Throwable) - -Constructor for class com.arsdigita.docmgr.InvalidMimeTypeFormatException -
Constructs a InvalidMimeTypeFormatException with the specified cause. -
InvalidNameException - exception com.arsdigita.docmgr.InvalidNameException.
Exception thrown to indicate that a resource name (or path) - is in an invalid state.
InvalidNameException(String) - -Constructor for class com.arsdigita.docmgr.InvalidNameException -
Creates a new exception with a given error message. -
InvalidNameException(int) - -Constructor for class com.arsdigita.docmgr.InvalidNameException -
Creates a new exception with the error message - corresponding to the error message codes above. -
init(DomainInitEvent) - -Method in class com.arsdigita.cms.docmgr.installer.Initializer -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.FileUploadForm -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
Form initialisation hook. -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
Form initialisation hook. -
init(DomainInitEvent) - -Method in class com.arsdigita.docmgr.installer.Initializer -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.docmgr.ui.FileUploadForm -
  -
initialize() - -Method in class com.arsdigita.docmgr.DocBlobject -
  -
initializeContentType(HttpServletRequest) - -Method in class com.arsdigita.docmgr.File -
Initialize the content type of a file by looking up a MIME type - from the file extension or an optional Content-Type header in - an HttpServletRequest. -
insertFile(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.FileUploadForm -
Post the file to a temporary file on the server and - insert it into the database -
insertFile(FormSectionEvent) - -Method in class com.arsdigita.docmgr.ui.FileUploadForm -
Post the file to a temporary file on the server and - insert it into the database -
isAbsolutePath(String) - -Static method in class com.arsdigita.docmgr.ResourceImpl -
Verifies that the given string corresponds to a valid absolute - path name. -
isExternal() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
isFile() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
isFile() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
isFile() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
isFile() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Tests whether this resource is a file. -
isFile() - -Method in class com.arsdigita.docmgr.File -
  -
isFile() - -Method in class com.arsdigita.docmgr.Folder -
  -
isFile() - -Method in interface com.arsdigita.docmgr.Resource -
Tests whether this resource is a file. -
isFile() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
isFolder() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
isFolder() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
isFolder() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
isFolder() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Tests whether this resource is a folder. -
isFolder() - -Method in class com.arsdigita.docmgr.File -
  -
isFolder() - -Method in class com.arsdigita.docmgr.Folder -
  -
isFolder() - -Method in interface com.arsdigita.docmgr.Resource -
Tests whether this resource is a folder. -
isFolder() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
isLocked() - -Method in class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder -
  -
isLocked() - -Method in interface com.arsdigita.docmgr.Lockable -
Checks whether the task is locked by a user. -
isRoot() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
isRoot() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
isRoot() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
isRoot() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Is this the root? -
isRoot() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
isValidContentType(String) - -Method in class com.arsdigita.docmgr.File -
Returns true if the given content type matches the current - content type of a file. -
isValidName(String) - -Static method in class com.arsdigita.docmgr.ResourceImpl -
Verifies that the string only contains valid characters for - resource names. -
isValidNewName(String) - -Method in class com.arsdigita.docmgr.File -
Checks for valid characters in a file name and also checks that - the name corresponds to a compatible MIME type. -
isValidPath(String) - -Static method in class com.arsdigita.docmgr.ResourceImpl -
Verifies that the given string corresponds to a valid relative - path name. -
isVisible(PageState) - -Method in interface com.arsdigita.cms.docmgr.ui.SearchForm -
  -
isVisible(PageState) - -Method in class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder -
  -
-
-

-L

-
-
LABEL - -Static variable in class com.arsdigita.cms.docmgr.installer.DocFolderInitializer -
  -
LABEL_NEXT - -Static variable in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
LABEL_PREVIOUS - -Static variable in class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
  -
LAST_MODIFIED - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
LAST_MODIFIED - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
LAST_MODIFIED_DATE - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
LAST_MOD_LOCAL - -Static variable in class com.arsdigita.cms.docmgr.DocLink -
  -
LAST_MOD_LOCAL - -Static variable in class com.arsdigita.cms.docmgr.Document -
  -
LEADING_CHARACTER_ERROR - -Static variable in class com.arsdigita.docmgr.InvalidNameException -
  -
LEADING_FILE_SEPARATOR_ERROR - -Static variable in class com.arsdigita.docmgr.InvalidNameException -
  -
LEGACY_FOLDER_NAME - -Static variable in class com.arsdigita.cms.docmgr.installer.Initializer -
  -
LegacyCategoryBrowserApplication - class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication.
browse items by category within a given toplevel (legacy) folder.
LegacyCategoryBrowserApplication(OID) - -Constructor for class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication -
Retreives a repository from the database usings its OID. -
LegacyCategoryBrowserApplication(BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication -
Constructor. -
LegacyCategoryBrowserApplication(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.LegacyCategoryBrowserApplication -
Constructs a repository from the underlying data object. -
LegacyCategoryDocsNavigatorPortlet - class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet.
Portlet showing the category tree used by Documents.
LegacyCategoryDocsNavigatorPortlet(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -
  -
Lockable - interface com.arsdigita.docmgr.Lockable.
This interface specifies functionality to lock a - an object by a user.
LuceneSearchResults - class com.arsdigita.cms.docmgr.search.LuceneSearchResults.
 
LuceneSearchResults(LuceneSearch) - -Constructor for class com.arsdigita.cms.docmgr.search.LuceneSearchResults -
  -
LuceneSearcher - class com.arsdigita.cms.docmgr.search.LuceneSearcher.
 
LuceneSearcher() - -Constructor for class com.arsdigita.cms.docmgr.search.LuceneSearcher -
  -
load() - -Method in class com.arsdigita.cms.docmgr.installer.DocFolderInitializer -
  -
lock() - -Method in class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder -
  -
lock() - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage -
  -
lock(Party) - -Method in interface com.arsdigita.docmgr.Lockable -
Applies a lock to an object - owned by the user -
lock() - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage -
  -
-
-

-M

-
-
MIME_ICON_MAP - -Static variable in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
  -
MIME_TYPE_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
MIME_TYPE_LABEL - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
MIME_TYPE_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
MODIFYING_USER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
MODIFYING_USER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
MY_WORKSPACE_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Navigational dimensional bar -
MY_WORKSPACE_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Navigational dimensional bar -
MimeIconInitializer - class com.arsdigita.cms.docmgr.installer.MimeIconInitializer.
Initializes mime-type to icon map.
MimeIconInitializer() - -Constructor for class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
  -
MimeTypeXMLLoader - class com.arsdigita.docmgr.MimeTypeXMLLoader.
Initializer helper class which loades more Mime types into the - database from an xml file.
MimeTypeXMLLoader() - -Constructor for class com.arsdigita.docmgr.MimeTypeXMLLoader -
  -
MultilingualDocumentResolver - class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver.
Adapted from MultilingualItemResolver.
MultilingualDocumentResolver() - -Constructor for class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
  -
m_columns - -Static variable in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
makeDataQuery(DataTable, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder -
  -
makeModel(List, PageState) - -Method in class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder -
  -
-
-

-N

-
-
NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
NAME - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
NUM_FILES - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
NUM_FILES - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
next() - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator -
  -
-
-

-O

-
-
OBJECT_ID - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
OPEN_FOLDER_ID_PARAM - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
OPEN_FOLDER_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
OWNER - -Static variable in class com.arsdigita.cms.docmgr.Repository -
  -
objectToString(Object[]) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
Yet another dumb method brought to you by Java -
-
-

-P

-
-
PAGE_SIZE - -Static variable in class com.arsdigita.cms.docmgr.ui.CreateDocLinkSearchTable -
  -
PAGE_TITLE_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
DM Index page title -
PAGE_TITLE_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
DM Index page title -
PARAM_EDIT_DOCLINK_ID - -Static variable in class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane -
  -
PARAM_ROOT_ADD_DOC_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
PARENT - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
PARENT - -Static variable in class com.arsdigita.docmgr.ResourceImpl -
  -
PARTY_ID - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
PATH - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
PagingControlContainer - class com.arsdigita.cms.docmgr.ui.PagingControlContainer.
 
PagingControlContainer(IntegerParameter, RequestLocal) - -Constructor for class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
Constructor -
PagingControlContainer(IntegerParameter, RequestLocal, int) - -Constructor for class com.arsdigita.cms.docmgr.ui.PagingControlContainer -
Constructor -
pageRequested(RequestEvent) - -Method in class com.arsdigita.cms.docmgr.ui.content.DocIndexPage -
  -
pageRequested(RequestEvent) - -Method in class com.arsdigita.docmgr.ApplicationAuthenticationListener -
Checks whether the user is logged in. -
parse(InputStream) - -Static method in class com.arsdigita.docmgr.MimeTypeXMLLoader -
Parse the input stream and load the extracted XML source. -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.FileUploadForm -
Post the file to a temporary file on the server and - insert it into the database -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
Form processing hook. -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
Form processing hook. -
process(FormSectionEvent) - -Method in class com.arsdigita.docmgr.ui.FileUploadForm -
Post the file to a temporary file on the server and - insert it into the database -
-
-

-R

-
-
REPOSITORIES_INFORMATION_HEADER - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Repositories -
REPOSITORIES_INFORMATION_HEADER - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Repositories -
REPOSITORIES_MOUNTED - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
REPOSITORIES_MOUNTED_SAVE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Repsitories Selection Form -
REPOSITORIES_MOUNTED_SAVE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Repsitories Selection Form -
REPOSITORY - -Static variable in class com.arsdigita.cms.docmgr.Document -
  -
REPOSITORY_ID - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
REPOSITORY_ID - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
REPOSITORY_RECENTDOCS_EMPTY - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
REPOSITORY_RECENTDOCS_EMPTY - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
RESOURCE_EXISTS_ERROR - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
RESOURCE_EXISTS_ERROR - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
RESOURCE_ID - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
RESOURCE_ID - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ROOT - -Static variable in class com.arsdigita.cms.docmgr.Repository -
  -
ROOTFOLDER_ID_PARAM - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ROOTFOLDER_ID_PARAM - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ROOTFOLDER_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ROOTFOLDER_ID_PARAM_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Global state parameters. -
ROOT_ADD_DOCLINK_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ROOT_ADD_DOC_PARAM - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ROOT_ADD_DOC_PARAM - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ROOT_ADD_DOC_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
ROOT_ADD_DOC_PARAM_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
ROOT_ADD_RESOURCE_LINK - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Portlet Panel Constants -
ROOT_ADD_RESOURCE_LINK - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Portlet Panel Constants -
RecentUpdatedDocsPortlet - class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet.
Portlet showing the n most recently updated documents of a - portal.
RecentUpdatedDocsPortlet(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet -
  -
RecentUpdatedDocsPortlet - class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet.
Portlet showing the n most recently updated documents of a - portal.
RecentUpdatedDocsPortlet(DataObject) - -Constructor for class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet -
  -
Repository - class com.arsdigita.cms.docmgr.Repository.
A repository is the application that provides access to files and - folders.
Repository(OID) - -Constructor for class com.arsdigita.cms.docmgr.Repository -
Retreives a repository from the database usings its OID. -
Repository(BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.Repository -
Constructor. -
Repository(DataObject) - -Constructor for class com.arsdigita.cms.docmgr.Repository -
Constructs a repository from the underlying data object. -
Repository - class com.arsdigita.docmgr.Repository.
A repository is the application that provides access to files and - folders.
Repository(OID) - -Constructor for class com.arsdigita.docmgr.Repository -
Retreives a repository from the database usings its OID. -
Repository(BigDecimal) - -Constructor for class com.arsdigita.docmgr.Repository -
Constructor. -
Repository(DataObject) - -Constructor for class com.arsdigita.docmgr.Repository -
Constructs a repository from the underlying data object. -
RepositoryTreeModel - class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel.
Tree model that incorporates the views of all subsribed repositories.
RepositoryTreeModel() - -Constructor for class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel -
  -
Resource - interface com.arsdigita.cms.docmgr.Resource.
This interface describes the functionality common to operations - on files and folders in the document manager application.
Resource - interface com.arsdigita.docmgr.Resource.
This interface describes the functionality common to operations - on files and folders in the document manager application.
ResourceException - exception com.arsdigita.docmgr.ResourceException.
Base class for resource exceptions.
ResourceException(String) - -Constructor for class com.arsdigita.docmgr.ResourceException -
Creates a new exception with a given error message. -
ResourceException(Exception) - -Constructor for class com.arsdigita.docmgr.ResourceException -
Creates a new exception by wrapping an existing one. -
ResourceExistsException - exception com.arsdigita.cms.docmgr.ResourceExistsException.
Exception thrown to indicate that another resource exists with the - same parent and name.
ResourceExistsException(String) - -Constructor for class com.arsdigita.cms.docmgr.ResourceExistsException -
Creates a new exception with a given error message. -
ResourceExistsException - exception com.arsdigita.docmgr.ResourceExistsException.
Exception thrown to indicate that another resource exists with the - same parent and name.
ResourceExistsException(String) - -Constructor for class com.arsdigita.docmgr.ResourceExistsException -
Creates a new exception with a given error message. -
ResourceImpl - class com.arsdigita.docmgr.ResourceImpl.
This class is the abstract parent class of File and Folder.
ResourceImpl() - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Default constructor. -
ResourceImpl(String) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Constructor. -
ResourceImpl(ObjectType) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Constructor. -
ResourceImpl(DataObject) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Creates a new resource. -
ResourceImpl(BigDecimal) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Creates a resource given the ID -
ResourceImpl(OID) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Creates a resource given the OID -
ResourceImpl(String, String, String) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Creates a named resource of the specified type. -
ResourceImpl(String, String, String, ResourceImpl) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Creates a named resource of the specified type with a given parent. -
ResourceImpl(String, ResourceImpl) - -Constructor for class com.arsdigita.docmgr.ResourceImpl -
Creates an empty resource with the given parent. -
ResourceImplCollection - class com.arsdigita.docmgr.ResourceImplCollection.
 
ResourceImplCollection(DataCollection) - -Constructor for class com.arsdigita.docmgr.ResourceImplCollection -
  -
ResourceNotEmptyException - exception com.arsdigita.docmgr.ResourceNotEmptyException.
Exception thrown to indicate that resource contains children and - cannot be deleted.
ResourceNotEmptyException(String) - -Constructor for class com.arsdigita.docmgr.ResourceNotEmptyException -
Creates a new exception with a given error message. -
redirectToLoginPage(PageState) - -Static method in class com.arsdigita.cms.docmgr.Util -
  -
redirectToLoginPage(PageState) - -Static method in class com.arsdigita.docmgr.Util -
  -
register(Page) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
Register the page the fist time -
register(Page) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
Register the page the fist time -
register(Page) - -Method in class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane -
  -
reindexObjects(DataCollection, String) - -Static method in class com.arsdigita.cms.docmgr.search.SearchUtils -
  -
remove() - -Method in class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator -
  -
retrieveDocFolder(DataObject) - -Static method in class com.arsdigita.cms.docmgr.DocFolder -
Returns a DocFolder for the given data object. -
retrieveDocument(DataObject) - -Static method in class com.arsdigita.cms.docmgr.Document -
Returns a document for the given data object. -
retrieveFile(DataObject) - -Static method in class com.arsdigita.docmgr.File -
  -
retrieveFile(String) - -Method in class com.arsdigita.docmgr.Folder -
  -
retrieveFolder(String) - -Method in class com.arsdigita.docmgr.Folder -
Retrieves the named sub folder by searching from the current folder - along the given path. -
retrievePath(BigDecimal) - -Static method in class com.arsdigita.docmgr.ResourceImpl -
Retrieves the path corresponding to a given resource. -
retrieveResource(String) - -Static method in class com.arsdigita.cms.docmgr.Repository -
Convenience method to retrieve a resource (file or folder) by - absolute path name. -
retrieveResource(String) - -Static method in class com.arsdigita.docmgr.Repository -
Convenience method to retrieve a resource (file or folder) by - absolute path name. -
retrieveSubFolder(String) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
retrieveSubResource(String) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
-
-

-S

-
-
SEL_FOLDER_ID_PARAM - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SEL_FOLDER_ID_PARAM - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
SEL_FOLDER_ID_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SEL_FOLDER_ID_PARAM_NAME - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
SEND_FRIEND_FORM_DESCRIPTION - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SEND_FRIEND_FORM_DESCRIPTION - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
SEND_FRIEND_FORM_EMAIL_LIST - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SEND_FRIEND_FORM_EMAIL_LIST - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
SEND_FRIEND_FORM_EMAIL_SUBJECT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Send to colleague form variables. -
SEND_FRIEND_FORM_EMAIL_SUBJECT - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Send to colleague form variables. -
SEND_FRIEND_FORM_SUBMIT - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SEND_FRIEND_FORM_SUBMIT - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
SEPARATOR - -Static variable in interface com.arsdigita.cms.docmgr.Resource -
The path-separator character, represented as a string for convenience. -
SEPARATOR - -Static variable in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
The separator used in URL query strings; should be either "&" - or ";". -
SEPARATOR - -Static variable in interface com.arsdigita.docmgr.Resource -
The path-separator character, represented as a string for convenience. -
SEPARATOR_CHAR - -Static variable in interface com.arsdigita.cms.docmgr.Resource -
The path-separator character. -
SEPARATOR_CHAR - -Static variable in interface com.arsdigita.docmgr.Resource -
The path-separator character. -
SIGN_OUT_LABEL - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SIGN_OUT_LABEL - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
SIZE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SIZE - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
SIZE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
START_DATE_PARAM_NAME - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
SearchForm - interface com.arsdigita.cms.docmgr.ui.SearchForm.
 
SearchList - class com.arsdigita.cms.docmgr.ui.SearchList.
 
SearchList(ListModelBuilder) - -Constructor for class com.arsdigita.cms.docmgr.ui.SearchList -
  -
SearchList.SearchResultDisplay - class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay.
A component that displays a simple search result
SearchList.SearchResultDisplay(SearchResult) - -Constructor for class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay -
  -
SearchList.SearchResultRenderer - class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer.
 
SearchList.SearchResultRenderer() - -Constructor for class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer -
  -
SearchListModelBuilder - class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder.
 
SearchListModelBuilder(SearchForm) - -Constructor for class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder -
  -
SearchResult - class com.arsdigita.cms.docmgr.search.SearchResult.
Encapsulates a DataQuery returned from SearchSpecification - and provides convenience methods for retrieving results.
SearchResult() - -Constructor for class com.arsdigita.cms.docmgr.search.SearchResult -
  -
SearchResult(BigDecimal, String, String, String, BigDecimal) - -Constructor for class com.arsdigita.cms.docmgr.search.SearchResult -
  -
SearchResults - interface com.arsdigita.cms.docmgr.search.SearchResults.
 
SearchStringValidationListener - class com.arsdigita.cms.docmgr.ui.SearchStringValidationListener.
Performs IntermediaSearcher.cleanSearchString() on search string - and adds an error if the cleaned search string is null
SearchStringValidationListener() - -Constructor for class com.arsdigita.cms.docmgr.ui.SearchStringValidationListener -
  -
SearchUtils - class com.arsdigita.cms.docmgr.search.SearchUtils.
 
SearchUtils() - -Constructor for class com.arsdigita.cms.docmgr.search.SearchUtils -
  -
Searcher - interface com.arsdigita.cms.docmgr.search.Searcher.
 
s_log - -Static variable in class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
  -
s_log - -Static variable in class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder -
  -
s_log - -Static variable in class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -
  -
s_log - -Static variable in class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -
  -
s_log - -Static variable in class com.arsdigita.docmgr.ResourceImpl -
  -
s_tableHeaders - -Static variable in class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
  -
s_validPathErrorMessages - -Static variable in class com.arsdigita.docmgr.InvalidNameException -
  -
save() - -Method in interface com.arsdigita.cms.docmgr.Resource -
The usual save operation -
saveNewRevision(File, String, String, HttpServletRequest) - -Method in class com.arsdigita.docmgr.File -
Saves a new revision of this file. -
setAuthor(String) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setCategories(String[]) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setCategories(String[]) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setContent(byte[]) - -Method in class com.arsdigita.docmgr.DocBlobject -
  -
setContent(File, String, String) - -Method in class com.arsdigita.docmgr.File -
Sets the content of this resource to a file with a given name and - description. -
setContentType(String) - -Method in class com.arsdigita.docmgr.File -
Sets the MIME type of this file. -
setContext(String) - -Method in class com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser -
  -
setCreationDate(Date) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setCreationIP() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setCreationUser(User) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setCreator(User) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setDataHandler(DataHandler) - -Method in class com.arsdigita.docmgr.File -
Provides the mechanism to set this file's content. -
setDescription(String) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
setDescription(String) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setDescription(String) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setDescription(String) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setDocID(PageState, BigDecimal) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileInfoPropertiesPane -
  -
setDocID(PageState, BigDecimal) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFileRevisionsTable -
  -
setExternalURL(String) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setFile(FileAsset) - -Method in class com.arsdigita.cms.docmgr.Document -
Mutator. -
setFileAsset(FileAsset) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay -
  -
setID(BigDecimal) - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
setLastModifiedDate(Date) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setLastModifiedIP() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setLastModifiedLocal(Date) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setLastModifiedLocal(Date) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setLastModifiedUser(User) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setLegacyRoot() - -Method in class com.arsdigita.cms.docmgr.Repository -
  -
setLink(String) - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
setName(String) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay -
  -
setName(String) - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
setParent(Resource) - -Method in class com.arsdigita.docmgr.ResourceImpl -
Set the parent of this resource. -
setParentResource(Resource) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
setParentResource(Resource) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setParentResource(Resource) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setParentResource(Resource) - -Method in interface com.arsdigita.cms.docmgr.Resource -
Set parent object -
setRange(Integer, Integer) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearchResults -
  -
setRange(Integer, Integer) - -Method in class com.arsdigita.cms.docmgr.search.LuceneSearchResults -
  -
setRange(Integer, Integer) - -Method in interface com.arsdigita.cms.docmgr.search.SearchResults -
Sets the indexes of the first and last results returned. -
setRepository(Repository) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setRepository(Repository) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setRepositoryRoot(String) - -Static method in class com.arsdigita.cms.docmgr.Repository -
Special case, only called by import script, so we can specify - where the root folders of repositories belong. -
setRequiredPrivilege(String) - -Method in class com.arsdigita.docmgr.ApplicationAuthenticationListener -
  -
setRoot(PageState, DocFolder) - -Static method in class com.arsdigita.cms.docmgr.ui.DMUtils -
Change global state parameter of root folder. -
setRoot(PageState, Folder) - -Static method in class com.arsdigita.docmgr.ui.DMUtils -
Change global state parameter of root folder. -
setScore(BigDecimal) - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
setSearcher(Searcher) - -Static method in class com.arsdigita.cms.docmgr.search.SearchUtils -
  -
setSummary(String) - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
setTarget(Document) - -Method in class com.arsdigita.cms.docmgr.DocLink -
Set Target Document of this Link.Also set's the name of the Link. -
setText(String) - -Method in class com.arsdigita.docmgr.File -
Convenience method for use with plain text files. -
setTitle(String) - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
setTitle(String) - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
setTitle(String) - -Method in class com.arsdigita.cms.docmgr.Document -
  -
setUrlStub(String) - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
shutdown() - -Method in class com.arsdigita.cms.docmgr.installer.Initializer -
Shutdown the document manager. -
shutdown() - -Method in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
Shutdown the document manager. -
simpleSearch(String, User) - -Method in class com.arsdigita.cms.docmgr.search.IntermediaSearcher -
  -
simpleSearch(String, User) - -Method in class com.arsdigita.cms.docmgr.search.LuceneSearcher -
  -
simpleSearch(String, User) - -Method in interface com.arsdigita.cms.docmgr.search.Searcher -
  -
startup() - -Method in class com.arsdigita.cms.docmgr.installer.Initializer -
Called on startup. -
startup() - -Method in class com.arsdigita.cms.docmgr.installer.MimeIconInitializer -
Called on startup. -
-
-

-T

-
-
TARGET_DOC_ID - -Static variable in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
  -
TARGET_REQUIRED - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
TEXT_HTML - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
TEXT_PLAIN - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
TITLE_REQUIRED - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
TRAILING_FILE_SEPARATOR_ERROR - -Static variable in class com.arsdigita.docmgr.InvalidNameException -
  -
TYPE - -Static variable in class com.arsdigita.cms.docmgr.DocFolder -
Data object type for this domain object (for CMS compatibility) -
TYPE - -Static variable in class com.arsdigita.cms.docmgr.DocLink -
Data object type for this domain object (for CMS compatibility) -
TYPE - -Static variable in class com.arsdigita.cms.docmgr.Document -
Data object type for this domain object (for CMS compatibility) -
TYPE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
TYPE - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
TYPE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
TypeChangeException - exception com.arsdigita.docmgr.TypeChangeException.
Exception thrown to indicate that a resource name (or path) contains - invalid characters.
TypeChangeException(String) - -Constructor for class com.arsdigita.docmgr.TypeChangeException -
Creates a new exception with a given error message. -
toString() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Returns the pathname string of this resource. -
toString() - -Method in class com.arsdigita.cms.docmgr.search.SearchResult -
  -
toString() - -Method in interface com.arsdigita.docmgr.Resource -
Returns the pathname string of this resource. -
toURL() - -Method in class com.arsdigita.cms.docmgr.DocFolder -
  -
toURL() - -Method in class com.arsdigita.cms.docmgr.DocLink -
  -
toURL() - -Method in class com.arsdigita.cms.docmgr.Document -
  -
toURL() - -Method in interface com.arsdigita.cms.docmgr.Resource -
Returns the URL corresponding to this resource. -
toURL() - -Method in interface com.arsdigita.docmgr.Resource -
Returns the URL corresponding to this resource. -
toURL() - -Method in class com.arsdigita.docmgr.ResourceImpl -
  -
-
-

-U

-
-
USER_ID - -Static variable in interface com.arsdigita.docmgr.Constants -
  -
Util - class com.arsdigita.cms.docmgr.Util.
 
Util() - -Constructor for class com.arsdigita.cms.docmgr.Util -
  -
Util - class com.arsdigita.docmgr.Util.
 
Util() - -Constructor for class com.arsdigita.docmgr.Util -
  -
unlock(Party) - -Method in interface com.arsdigita.docmgr.Lockable -
Party who previously locked - object, unlocks it now. -
-
-

-V

-
-
validate(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit -
Validate the folder. -
validate(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.FileUploadForm -
Verify that the parent folder exists and does not contain any - other files or sub folders with the same name as the file being - uploaded. -
validate(ParameterEvent) - -Method in class com.arsdigita.cms.docmgr.ui.SearchStringValidationListener -
  -
validate(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm -
Form validation hook. -
validate(FormSectionEvent) - -Method in class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm -
  -
validate(FormSectionEvent) - -Method in class com.arsdigita.docmgr.ui.FileUploadForm -
Verify that the parent folder exists and does not contain any - other files or sub folders with the same name as the file being - uploaded. -
versionId - -Static variable in class com.arsdigita.cms.docmgr.DocMgrConfig -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.dispatcher.MultilingualDocumentResolver -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.CategoryDocsNavigatorPortlet -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.CategoryItemsBrowser -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.DCNDispatcher -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.DMDispatcher -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.DMUtils -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.FileUploadForm -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.LegacyCategoryDocsNavigatorPortlet -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.RecentUpdatedDocsPortlet -
  -
versionId - -Static variable in class com.arsdigita.cms.docmgr.ui.content.DocIndexPage -
  -
versionId - -Static variable in class com.arsdigita.docmgr.ApplicationAuthenticationListener -
  -
versionId - -Static variable in class com.arsdigita.docmgr.ResourceImpl -
  -
versionId - -Static variable in class com.arsdigita.docmgr.ui.DMDispatcher -
  -
versionId - -Static variable in class com.arsdigita.docmgr.ui.DMUtils -
  -
versionId - -Static variable in class com.arsdigita.docmgr.ui.FileUploadForm -
  -
versionId - -Static variable in class com.arsdigita.docmgr.ui.RecentUpdatedDocsPortlet -
  -
-
-

-W

-
-
WS_BROWSE_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
Page navigational tabs -
WS_BROWSE_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
Page navigational tabs -
WS_REPOSITORIES_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
WS_REPOSITORIES_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
WS_SEARCH_TITLE - -Static variable in interface com.arsdigita.cms.docmgr.ui.DMConstants -
  -
WS_SEARCH_TITLE - -Static variable in interface com.arsdigita.docmgr.ui.DMConstants -
  -
-
-

-Z

-
-
ZERO_CHARACTERS_ERROR - -Static variable in class com.arsdigita.docmgr.InvalidNameException -
Error messages for path validation methods -
-
-A B C D E F G H I L M N O P R S T U V W Z - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/index.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/index.html deleted file mode 100755 index 08848e729..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/index.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - -Document Manager API Documentation - - - - - - - - - -<H2> -Frame Alert</H2> - -<P> -This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. -<BR> -Link to<A HREF="overview-summary.html">Non-frame version.</A> - - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-frame.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-frame.html deleted file mode 100755 index 4739daa0a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-frame.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - -Overview (Document Manager API Documentation) - - - - - - - - - - - - - - - -
-
- - - - - -
All Classes -

- -Packages -
-com.arsdigita.cms.docmgr -
-com.arsdigita.cms.docmgr.dispatcher -
-com.arsdigita.cms.docmgr.installer -
-com.arsdigita.cms.docmgr.search -
-com.arsdigita.cms.docmgr.ui -
-com.arsdigita.cms.docmgr.ui.authoring -
-com.arsdigita.cms.docmgr.ui.content -
-com.arsdigita.cms.docmgr.ui.tree -
-com.arsdigita.cms.docmgr.util -
-com.arsdigita.docmgr -
-com.arsdigita.docmgr.installer -
-com.arsdigita.docmgr.ui -
-com.arsdigita.docmgr.util -
-

- -

-  - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-summary.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-summary.html deleted file mode 100755 index ac84f15d8..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-summary.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -Overview (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -


-
-

-

Document Manager API Documentation

- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages
com.arsdigita.cms.docmgr 
com.arsdigita.cms.docmgr.dispatcher 
com.arsdigita.cms.docmgr.installer 
com.arsdigita.cms.docmgr.search 
com.arsdigita.cms.docmgr.ui 
com.arsdigita.cms.docmgr.ui.authoring 
com.arsdigita.cms.docmgr.ui.content 
com.arsdigita.cms.docmgr.ui.tree 
com.arsdigita.cms.docmgr.util 
com.arsdigita.docmgr 
com.arsdigita.docmgr.installer 
com.arsdigita.docmgr.ui 
com.arsdigita.docmgr.util 
- -


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-tree.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-tree.html deleted file mode 100755 index 8b280ca4a..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/overview-tree.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - -Class Hierarchy (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For All Packages

-
-
-
Package Hierarchies:
com.arsdigita.cms.docmgr, com.arsdigita.cms.docmgr.dispatcher, com.arsdigita.cms.docmgr.installer, com.arsdigita.cms.docmgr.search, com.arsdigita.cms.docmgr.ui, com.arsdigita.cms.docmgr.ui.authoring, com.arsdigita.cms.docmgr.ui.content, com.arsdigita.cms.docmgr.ui.tree, com.arsdigita.cms.docmgr.util, com.arsdigita.docmgr, com.arsdigita.docmgr.installer, com.arsdigita.docmgr.ui, com.arsdigita.docmgr.util
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.cms.dispatcher.AbstractItemResolver (implements com.arsdigita.cms.dispatcher.ItemResolver) - -
    • class com.arsdigita.util.parameter.AbstractParameterContext (implements com.arsdigita.util.parameter.ParameterContext) -
        -
      • class com.arsdigita.runtime.AbstractConfig -
      • class com.arsdigita.runtime.AbstractScript (implements com.arsdigita.runtime.Script) -
          -
        • class com.arsdigita.loader.PackageLoader -
        -
      -
    • class com.arsdigita.cms.docmgr.ui.CategoriesPrintListener (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.CategoryDocModelBuilder (implements com.arsdigita.toolbox.ui.DataQueryBuilder, com.arsdigita.cms.docmgr.ui.DMConstants) -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.cms.docmgr.ui.content.DocFolderNavbar
        • class com.arsdigita.cms.docmgr.ui.authoring.FileDisplay
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.cms.ui.authoring.BasicItemForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
              -
            • class com.arsdigita.cms.ui.authoring.BasicPageForm
                -
              • class com.arsdigita.cms.docmgr.ui.authoring.DocLinkPropertyForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
              • class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertyForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener) -
              -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) -
              -
            • class com.arsdigita.cms.docmgr.ui.BrowseFolderEdit (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            • class com.arsdigita.cms.docmgr.ui.FileUploadForm (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            • class com.arsdigita.docmgr.ui.FileUploadForm (implements com.arsdigita.docmgr.ui.DMConstants, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            -
          -
        • class com.arsdigita.bebop.List (implements com.arsdigita.bebop.util.BebopConstants) - -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.cms.dispatcher.CMSPage (implements com.arsdigita.cms.dispatcher.ResourceHandler) -
                  -
                • class com.arsdigita.cms.docmgr.ui.content.DocIndexPage (implements com.arsdigita.bebop.event.RequestListener) -
                • class com.arsdigita.cms.docmgr.dispatcher.DocumentAssetPage
                -
              • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage (implements com.arsdigita.cms.docmgr.ui.DMConstants) -
              • class com.arsdigita.docmgr.ui.DocmgrBasePage
              -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.bebop.BoxPanel (implements com.arsdigita.bebop.util.BebopConstants) - -
              • class com.arsdigita.cms.docmgr.ui.CreateDocLinkPane (implements com.arsdigita.cms.docmgr.ui.DMConstants) -
              • class com.arsdigita.bebop.DimensionalNavbar -
              • class com.arsdigita.bebop.ModalContainer (implements com.arsdigita.bebop.Resettable) - -
              • class com.arsdigita.bebop.PropertyEditor
                  -
                • class com.arsdigita.cms.ui.SecurityPropertyEditor
                    -
                  • class com.arsdigita.cms.ui.authoring.SimpleEditStep (implements com.arsdigita.cms.ui.authoring.AuthoringStepComponent, com.arsdigita.bebop.event.RequestListener) - -
                  -
                -
              • class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultDisplay
              -
            • class com.arsdigita.bebop.Table (implements com.arsdigita.bebop.util.BebopConstants) - -
            -
          -
        • class com.arsdigita.bebop.Tree (implements com.arsdigita.bebop.Resettable) - -
        -
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    • class com.arsdigita.cms.docmgr.ui.DMUtils (implements com.arsdigita.cms.docmgr.ui.DMConstants) -
    • class com.arsdigita.docmgr.ui.DMUtils (implements com.arsdigita.docmgr.ui.DMConstants) -
    • class com.arsdigita.cms.docmgr.ui.DMUtils.DateFormat
    • class com.arsdigita.docmgr.ui.DMUtils.DateFormat
    • class com.arsdigita.cms.docmgr.ui.DMUtils.FileSize
    • class com.arsdigita.docmgr.ui.DMUtils.FileSize
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderAppCellRenderer (implements com.arsdigita.bebop.tree.TreeCellRenderer) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderContentTreeRenderer (implements com.arsdigita.bebop.tree.TreeCellRenderer) -
    • class com.arsdigita.cms.docmgr.installer.DocFolderInitializer
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderIterator (implements java.util.Iterator) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFoldersContentTreeModel (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.tree.TreeModel) -
    • class com.arsdigita.cms.docmgr.ui.tree.DocFolderTreeNode (implements com.arsdigita.bebop.tree.TreeNode) -
    • class com.arsdigita.cms.docmgr.DocMgr
    • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.docmgr.ui.DocmgrBasePage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.docmgr.ui.DocmgrBasePage.ParentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.docmgr.ui.authoring.DocumentPropertiesStep.FileFormatter (implements com.arsdigita.toolbox.ui.DomainObjectPropertySheet.AttributeFormatter) -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.docmgr.DocBlobject
      • class com.arsdigita.domain.ObservableDomainObject -
      -
    • class com.arsdigita.domain.DomainQuery (implements com.arsdigita.persistence.DataQuery) - -
    • class com.arsdigita.cms.docmgr.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    • class com.arsdigita.docmgr.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    • class com.arsdigita.cms.docmgr.search.IntermediaSearcher (implements com.arsdigita.cms.docmgr.search.Searcher) -
    • class com.arsdigita.cms.docmgr.search.IntermediaSearchResults (implements com.arsdigita.cms.docmgr.search.SearchResults) -
    • class com.arsdigita.util.LockableImpl (implements com.arsdigita.util.Lockable) -
        -
      • class com.arsdigita.bebop.list.AbstractListModelBuilder (implements com.arsdigita.bebop.list.ListModelBuilder) -
          -
        • class com.arsdigita.cms.docmgr.ui.SearchListModelBuilder (implements com.arsdigita.bebop.PaginationModelBuilder) -
        -
      -
    • class com.arsdigita.cms.docmgr.search.LuceneSearcher (implements com.arsdigita.cms.docmgr.search.Searcher) -
    • class com.arsdigita.cms.docmgr.search.LuceneSearchResults (implements com.arsdigita.cms.docmgr.search.SearchResults) -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher
          -
        • class com.arsdigita.bebop.BebopMapDispatcher -
        -
      -
    • class com.arsdigita.cms.docmgr.installer.MimeIconInitializer (implements com.arsdigita.initializer.Initializer) -
    • class com.arsdigita.docmgr.MimeTypeXMLLoader
    • class com.arsdigita.cms.docmgr.ui.tree.RepositoryTreeModel (implements com.arsdigita.cms.docmgr.ui.DMConstants, com.arsdigita.bebop.tree.TreeModel) -
    • class com.arsdigita.cms.docmgr.ui.SearchList.SearchResultRenderer (implements com.arsdigita.bebop.list.ListCellRenderer) -
    • class com.arsdigita.cms.docmgr.search.SearchResult (implements java.lang.Comparable) -
    • class com.arsdigita.cms.docmgr.ui.SearchStringValidationListener (implements com.arsdigita.bebop.event.ParameterListener) -
    • class com.arsdigita.cms.docmgr.search.SearchUtils
    • class java.lang.Throwable (implements java.io.Serializable) - -
    • class com.arsdigita.ui.login.UserAuthenticationListener (implements com.arsdigita.bebop.event.RequestListener) - -
    • class com.arsdigita.cms.docmgr.Util
    • class com.arsdigita.docmgr.Util
    -
-

-Interface Hierarchy -

-
    -
  • interface com.arsdigita.docmgr.Constants
  • interface com.arsdigita.cms.docmgr.ui.DMConstants
  • interface com.arsdigita.docmgr.ui.DMConstants
  • interface com.arsdigita.util.Lockable
      -
    • interface com.arsdigita.bebop.Component
        -
      • interface com.arsdigita.bebop.Container
          -
        • interface com.arsdigita.cms.docmgr.ui.SearchForm
        -
      • interface com.arsdigita.cms.docmgr.ui.SearchForm
      -
    • interface com.arsdigita.bebop.Container
        -
      • interface com.arsdigita.cms.docmgr.ui.SearchForm
      -
    • interface com.arsdigita.cms.docmgr.ui.SearchForm
    -
  • interface com.arsdigita.docmgr.Lockable
  • interface com.arsdigita.cms.docmgr.Resource
  • interface com.arsdigita.docmgr.Resource
  • interface com.arsdigita.cms.docmgr.search.Searcher
  • interface com.arsdigita.cms.docmgr.search.SearchResults
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/package-list b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/package-list deleted file mode 100755 index acbee8027..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/package-list +++ /dev/null @@ -1,13 +0,0 @@ -com.arsdigita.cms.docmgr -com.arsdigita.cms.docmgr.dispatcher -com.arsdigita.cms.docmgr.installer -com.arsdigita.cms.docmgr.search -com.arsdigita.cms.docmgr.ui -com.arsdigita.cms.docmgr.ui.authoring -com.arsdigita.cms.docmgr.ui.content -com.arsdigita.cms.docmgr.ui.tree -com.arsdigita.cms.docmgr.util -com.arsdigita.docmgr -com.arsdigita.docmgr.installer -com.arsdigita.docmgr.ui -com.arsdigita.docmgr.util diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/packages.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/packages.html deleted file mode 100755 index e95b15cb4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/packages.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - (Document Manager API Documentation) - - - - - - - - - - - -
- -
- -
-
-The front page has been relocated.Please see: -
-          Frame version -
-          Non-frame version.
- - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/resources/inherit.gif b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/resources/inherit.gif deleted file mode 100755 index c814867a1..000000000 Binary files a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/resources/inherit.gif and /dev/null differ diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/serialized-form.html b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/serialized-form.html deleted file mode 100755 index ce60b4b0f..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/serialized-form.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - -Serialized Form (Document Manager API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Serialized Form

-
-
- - - - - -
-Package com.arsdigita.cms.docmgr
- -

- - - - - -
-Class com.arsdigita.cms.docmgr.ResourceExistsException extends RuntimeException implements Serializable
- -

- -

-


- - - - - -
-Package com.arsdigita.docmgr
- -

- - - - - -
-Class com.arsdigita.docmgr.ContentTypeException extends Exception implements Serializable
- -

- -

- - - - - -
-Class com.arsdigita.docmgr.InvalidMimeTypeFormatException extends Exception implements Serializable
- -

- -

- - - - - -
-Class com.arsdigita.docmgr.InvalidNameException extends Exception implements Serializable
- -

- -

- - - - - -
-Class com.arsdigita.docmgr.ResourceException extends RuntimeException implements Serializable
- -

- -

- - - - - -
-Class com.arsdigita.docmgr.ResourceExistsException extends RuntimeException implements Serializable
- -

- -

- - - - - -
-Class com.arsdigita.docmgr.ResourceNotEmptyException extends com.arsdigita.persistence.PersistenceException implements Serializable
- -

- -

- - - - - -
-Class com.arsdigita.docmgr.TypeChangeException extends ResourceException implements Serializable
- -

- -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1113 UTC - - diff --git a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/stylesheet.css b/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/stylesheet.css deleted file mode 100755 index 6d31fdbc7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr-doc/var/www/html/ccm-docmgr-6.3.0/api/stylesheet.css +++ /dev/null @@ -1,29 +0,0 @@ -/* Javadoc style sheet */ - -/* Define colors, fonts and other style attributes here to override the defaults */ - -/* Page background color */ -body { background-color: #FFFFFF } - -/* Headings */ -h1 { font-size: 145% } - -/* Table colors */ -.TableHeadingColor { background: #CCCCFF } /* Dark mauve */ -.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */ -.TableRowColor { background: #FFFFFF } /* White */ - -/* Font used in left-hand frame lists */ -.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif } -.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } -.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } - -/* Navigation bar fonts and colors */ -.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */ -.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */ -.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;} -.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;} - -.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} -.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} - diff --git a/ccm-docmgr/debian/ccm-docmgr.dirs b/ccm-docmgr/debian/ccm-docmgr.dirs deleted file mode 100755 index 95c7630a1..000000000 --- a/ccm-docmgr/debian/ccm-docmgr.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-docmgr-6.3.0 diff --git a/ccm-docmgr/debian/ccm-docmgr.install b/ccm-docmgr/debian/ccm-docmgr.install deleted file mode 100755 index 70a7852e7..000000000 --- a/ccm-docmgr/debian/ccm-docmgr.install +++ /dev/null @@ -1,11 +0,0 @@ -usr/share/java/ccm-docmgr-6.3.0.jar -usr/share/java/ccm-docmgr-6.3.0-pdl.jar -usr/share/java/ccm-docmgr-6.3.0-sql.jar -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/packages/docmgr/xsl/docmgr-portlet.xsl -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/packages/docmgr/xsl/docs_en.xsl -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/packages/docmgr/xsl/docs.xsl -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/assets/cw/applications/document-16.gif -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/assets/cw/applications/document-32.gif -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/static/content-types/com/arsdigita/cms/docmgr/DocLink.xsl -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/static/content-types/com/arsdigita/cms/docmgr/Document.xsl -usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/__ccm__/apps/cmsdocs/xsl/index.xsl diff --git a/ccm-docmgr/debian/ccm-docmgr.postrm.debhelper b/ccm-docmgr/debian/ccm-docmgr.postrm.debhelper deleted file mode 100755 index bc035b98c..000000000 --- a/ccm-docmgr/debian/ccm-docmgr.postrm.debhelper +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically added by dh_installdebconf -if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_purge -fi -# End automatically added section diff --git a/ccm-docmgr/debian/ccm-docmgr.substvars b/ccm-docmgr/debian/ccm-docmgr.substvars deleted file mode 100755 index a8fe3cff5..000000000 --- a/ccm-docmgr/debian/ccm-docmgr.substvars +++ /dev/null @@ -1 +0,0 @@ -misc:Depends=debconf (>= 0.5) | debconf-2.0 diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/config b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/control b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/control deleted file mode 100755 index 958813d88..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-docmgr -Version: 6.3.0-20 -Section: contrib/web -Priority: optional -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-core, ccm-cms, ccm-ldn-navigation, ccm-cms-types-article, ccm-cms-types-mparticle -Installed-Size: 756 -Maintainer: Runtime Packaging -Description: APLAWS: Document Manager application. - . - FIXME: We need a longer and more meaningful description here. diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/md5sums b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/md5sums deleted file mode 100755 index dafa089b4..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/md5sums +++ /dev/null @@ -1,13 +0,0 @@ -87bedac17af1190a5659be8361630b35 usr/share/java/ccm-docmgr-6.3.0.jar -baa71c5941872e5d9367f0e8c3235e12 usr/share/java/ccm-docmgr-6.3.0-pdl.jar -62741ddaea711fe0ad95478f789280bd usr/share/java/ccm-docmgr-6.3.0-sql.jar -b908536c7471c3265c663169b3a981f3 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/packages/docmgr/xsl/docmgr-portlet.xsl -1561b9979eaaa215b618462e1fb63d3e usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/packages/docmgr/xsl/docs_en.xsl -733115783c332898bcfa3d231b04af54 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/packages/docmgr/xsl/docs.xsl -ecea9cdedcb1da0cd6f0e7507bfc6bc1 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/assets/cw/applications/document-16.gif -19a1c21303242eb70ef204e8787336f0 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/assets/cw/applications/document-32.gif -e899859517f1c6e1dc561d7f4122dc11 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/static/content-types/com/arsdigita/cms/docmgr/DocLink.xsl -e899859517f1c6e1dc561d7f4122dc11 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/static/content-types/com/arsdigita/cms/docmgr/Document.xsl -6a68c27993b245f2e812c7577a5860a6 usr/share/java/webapps/ccm-docmgr-6.3.0/ROOT/__ccm__/apps/cmsdocs/xsl/index.xsl -ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-docmgr/copyright -340c7e25bd0ba854bab58733251d572c usr/share/doc/ccm-docmgr/changelog.Debian.gz diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/postinst b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/postinst deleted file mode 100755 index d7e699e4b..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-docmgr -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/postrm b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/postrm deleted file mode 100755 index 518fa8425..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/postrm +++ /dev/null @@ -1,68 +0,0 @@ -#! /bin/sh -# postrm script for ccm-docmgr -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -# Automatically added by dh_installdebconf -if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_purge -fi -# End automatically added section - - -exit 0 - - diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/prerm b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/prerm deleted file mode 100755 index 0f3461233..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-docmgr -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - diff --git a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/templates b/ccm-docmgr/debian/ccm-docmgr/DEBIAN/templates deleted file mode 100755 index 62d0104cf..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/DEBIAN/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-docmgr -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-docmgr". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-docmgr". diff --git a/ccm-docmgr/debian/ccm-docmgr/usr/share/doc/ccm-docmgr/changelog.Debian.gz b/ccm-docmgr/debian/ccm-docmgr/usr/share/doc/ccm-docmgr/changelog.Debian.gz deleted file mode 100755 index 0a90d8060..000000000 Binary files a/ccm-docmgr/debian/ccm-docmgr/usr/share/doc/ccm-docmgr/changelog.Debian.gz and /dev/null differ diff --git a/ccm-docmgr/debian/ccm-docmgr/usr/share/doc/ccm-docmgr/copyright b/ccm-docmgr/debian/ccm-docmgr/usr/share/doc/ccm-docmgr/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-docmgr/debian/ccm-docmgr/usr/share/doc/ccm-docmgr/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-docmgr/debian/ccm-install.sh b/ccm-docmgr/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-docmgr/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-docmgr/debian/ccm-settings-run.sh b/ccm-docmgr/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-docmgr/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-docmgr/debian/ccm-settings.sh b/ccm-docmgr/debian/ccm-settings.sh deleted file mode 100755 index d9c479420..000000000 --- a/ccm-docmgr/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-docmgr -version=6.3.0 -appname=ccm-docmgr -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-docmgr/debian/changelog b/ccm-docmgr/debian/changelog deleted file mode 100755 index 3d06e1862..000000000 --- a/ccm-docmgr/debian/changelog +++ /dev/null @@ -1,119 +0,0 @@ -ccm-docmgr (6.3.0-20) unstable; urgency=low - - * Removing custom search for documents - - -- My Fri, 20 Jan 2006 13:29:36 +0000 - -ccm-docmgr (6.3.0-19) unstable; urgency=low - - * Another try - - -- My Fri, 20 Jan 2006 13:00:45 +0000 - -ccm-docmgr (6.3.0-18) unstable; urgency=low - - * Fixing trav adapt, again - - -- My Fri, 20 Jan 2006 12:02:42 +0000 - -ccm-docmgr (6.3.0-17) unstable; urgency=low - - * Fixing trav adapt - - -- My Thu, 19 Jan 2006 16:45:52 +0000 - -ccm-docmgr (6.3.0-16) unstable; urgency=low - - * Minor fixes - - -- My Thu, 19 Jan 2006 15:27:34 +0000 - -ccm-docmgr (6.3.0-15) unstable; urgency=low - - * Minor style fix - - -- My Wed, 18 Jan 2006 15:24:06 +0000 - -ccm-docmgr (6.3.0-14) unstable; urgency=low - - * Fix doc display - - -- My Fri, 13 Jan 2006 08:44:41 +0000 - -ccm-docmgr (6.3.0-13) unstable; urgency=low - - * Fixing properly deps on portal and portalserver - - -- My Thu, 12 Jan 2006 19:33:59 +0000 - -ccm-docmgr (6.3.0-12) unstable; urgency=low - - * Same - - -- My Thu, 12 Jan 2006 17:16:42 +0000 - -ccm-docmgr (6.3.0-11) unstable; urgency=low - - * Fixing doc creation, maybe - - -- My Thu, 12 Jan 2006 16:49:02 +0000 - -ccm-docmgr (6.3.0-10) unstable; urgency=low - - * Fixing pdl query names - - -- My Thu, 12 Jan 2006 15:43:53 +0000 - -ccm-docmgr (6.3.0-9) unstable; urgency=low - - * Sorting out PDL mf files - - -- My Thu, 12 Jan 2006 12:44:00 +0000 - -ccm-docmgr (6.3.0-8) unstable; urgency=low - - * Using cms initializer - - -- My Thu, 12 Jan 2006 11:46:24 +0000 - -ccm-docmgr (6.3.0-7) unstable; urgency=low - - * Adding type initializer - - -- My Thu, 12 Jan 2006 10:24:28 +0000 - -ccm-docmgr (6.3.0-6) unstable; urgency=low - - * Removing ddl files - - -- My Wed, 11 Jan 2006 08:49:44 +0000 - -ccm-docmgr (6.3.0-5) unstable; urgency=low - - * Matt adding missing pdl files, #20676 - - -- My Wed, 4 Jan 2006 15:27:13 +0000 - -ccm-docmgr (6.3.0-4) unstable; urgency=low - - * Matt adding 3 missing loader classes, #20676 - - -- My Tue, 3 Jan 2006 16:11:58 +0000 - -ccm-docmgr (6.3.0-3) unstable; urgency=low - - * Now have content types succesfully loading - - -- Fri, 30 Dec 2005 17:12:59 +0000 - -ccm-docmgr (6.3.0-2) unstable; urgency=low - - * Got the debian package to work, adding dependencies - - -- My Fri, 30 Dec 2005 15:21:30 +0000 - -ccm-docmgr (6.3.0-1) unstable; urgency=low - - * Initial import - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 diff --git a/ccm-docmgr/debian/compat b/ccm-docmgr/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-docmgr/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-docmgr/debian/config b/ccm-docmgr/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-docmgr/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-docmgr/debian/control b/ccm-docmgr/debian/control deleted file mode 100755 index 8c1cb03c4..000000000 --- a/ccm-docmgr/debian/control +++ /dev/null @@ -1,20 +0,0 @@ -Source: ccm-docmgr -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-navigation, ccm-cms-types-article, ccm-cms-types-mparticle -Standards-Version: 3.6.1 - -Package: ccm-docmgr -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-navigation, ccm-cms-types-article, ccm-cms-types-mparticle -Description: APLAWS: Document Manager application. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-docmgr-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-docmgr - Documentation for ccm-docmgr. Provides the JavaDoc API documentation. diff --git a/ccm-docmgr/debian/copyright b/ccm-docmgr/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-docmgr/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-docmgr/debian/files b/ccm-docmgr/debian/files deleted file mode 100755 index 496c3bd82..000000000 --- a/ccm-docmgr/debian/files +++ /dev/null @@ -1,2 +0,0 @@ -ccm-docmgr_6.3.0-20_all.deb contrib/web optional -ccm-docmgr-doc_6.3.0-20_all.deb contrib/web optional diff --git a/ccm-docmgr/debian/postinst b/ccm-docmgr/debian/postinst deleted file mode 100755 index df289bec8..000000000 --- a/ccm-docmgr/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-docmgr -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-docmgr/debian/postrm b/ccm-docmgr/debian/postrm deleted file mode 100755 index 2915530f9..000000000 --- a/ccm-docmgr/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-docmgr -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-docmgr/debian/prerm b/ccm-docmgr/debian/prerm deleted file mode 100755 index 149586289..000000000 --- a/ccm-docmgr/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-docmgr -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-docmgr/debian/rules b/ccm-docmgr/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-docmgr/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-docmgr/debian/templates b/ccm-docmgr/debian/templates deleted file mode 100755 index 62d0104cf..000000000 --- a/ccm-docmgr/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-docmgr -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-docmgr". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-docmgr". diff --git a/ccm-forum/debian/ccm-build.sh b/ccm-forum/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-forum/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-forum/debian/ccm-clean.sh b/ccm-forum/debian/ccm-clean.sh deleted file mode 100755 index 1c890a5e9..000000000 --- a/ccm-forum/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:11 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-forum/debian/ccm-config.sh b/ccm-forum/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-forum/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-forum/debian/ccm-disperse.sh b/ccm-forum/debian/ccm-disperse.sh deleted file mode 100755 index ebef1978f..000000000 --- a/ccm-forum/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:11 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-forum/debian/ccm-forum.dirs b/ccm-forum/debian/ccm-forum.dirs deleted file mode 100755 index c8382b13a..000000000 --- a/ccm-forum/debian/ccm-forum.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-forum-6.3.0 diff --git a/ccm-forum/debian/ccm-install.sh b/ccm-forum/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-forum/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-forum/debian/ccm-settings-run.sh b/ccm-forum/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-forum/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-forum/debian/ccm-settings.sh b/ccm-forum/debian/ccm-settings.sh deleted file mode 100755 index a7e9435a9..000000000 --- a/ccm-forum/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-forum -version=6.3.0 -appname=ccm-forum -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-forum/debian/changelog b/ccm-forum/debian/changelog deleted file mode 100755 index 8031b9376..000000000 --- a/ccm-forum/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-forum (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:59 +0000 - -ccm-forum (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.4 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:10 +0000 - -ccm-forum (1.4.4-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 1.4.4 - - -- Runtime Collective Ltd. Mon, 05 Sep 2005 15:48:12 +0000 - -ccm-forum (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:54 +0000 - -ccm-forum (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 10:35:29 +0000 - -ccm-forum (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-forum (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-forum (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-forum (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-forum/debian/compat b/ccm-forum/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-forum/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-forum/debian/config b/ccm-forum/debian/config deleted file mode 100755 index da490fef1..000000000 --- a/ccm-forum/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-forum/debian/control b/ccm-forum/debian/control deleted file mode 100755 index 15becdb45..000000000 --- a/ccm-forum/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-forum -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.0 - -Package: ccm-forum -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core -Description: APLAWS: Online bulletin board. - This package contains the Forum application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-forum-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-forum - Documentation for ccm-forum. Provides the JavaDoc API documentation. diff --git a/ccm-forum/debian/copyright b/ccm-forum/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-forum/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-forum/debian/postinst b/ccm-forum/debian/postinst deleted file mode 100755 index 363732e86..000000000 --- a/ccm-forum/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-forum -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-forum/debian/postrm b/ccm-forum/debian/postrm deleted file mode 100755 index f14317511..000000000 --- a/ccm-forum/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-forum -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-forum/debian/prerm b/ccm-forum/debian/prerm deleted file mode 100755 index e997e2ac8..000000000 --- a/ccm-forum/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-forum -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-forum/debian/rules b/ccm-forum/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-forum/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-forum/debian/templates b/ccm-forum/debian/templates deleted file mode 100755 index a5dd6c957..000000000 --- a/ccm-forum/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-forum -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-forum". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-forum". diff --git a/ccm-forum/web/WEB-INF/web.xml-forum.in b/ccm-forum/doc/web.xml-forum.in similarity index 100% rename from ccm-forum/web/WEB-INF/web.xml-forum.in rename to ccm-forum/doc/web.xml-forum.in diff --git a/ccm-ldn-aplaws/debian/ccm-build-bundles.sh b/ccm-ldn-aplaws/debian/ccm-build-bundles.sh deleted file mode 100755 index 4da6f1f97..000000000 --- a/ccm-ldn-aplaws/debian/ccm-build-bundles.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# Author: Fabrice Retkowsky , 2005 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -# make a jar with the bundle cfg files -echo "Building bundle jar" - -# get the version number -cd build -VER_NUM=`ls *-sql.jar | sort -r | xargs echo | cut -d ' ' -f 1` -VER_NUM=${VER_NUM:15} -VER_NUM=${VER_NUM%-sql.jar} -echo "Version number: $VER_NUM" -cd .. - -# make the bundles jar -find * | grep -v "svn" | grep "cfg/" | xargs jar cvf bundles.jar -mv bundles.jar debian/tmp/usr/share/java/ccm-ldn-aplaws-${VER_NUM}-bundles.jar diff --git a/ccm-ldn-aplaws/debian/ccm-build.sh b/ccm-ldn-aplaws/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-aplaws/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-aplaws/debian/ccm-clean.sh b/ccm-ldn-aplaws/debian/ccm-clean.sh deleted file mode 100755 index 3c10238d3..000000000 --- a/ccm-ldn-aplaws/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-aplaws/debian/ccm-config.sh b/ccm-ldn-aplaws/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-aplaws/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-aplaws/debian/ccm-disperse.sh b/ccm-ldn-aplaws/debian/ccm-disperse.sh deleted file mode 100755 index 0c075d070..000000000 --- a/ccm-ldn-aplaws/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-aplaws/debian/ccm-install.sh b/ccm-ldn-aplaws/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-aplaws/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-aplaws/debian/ccm-ldn-aplaws.dirs b/ccm-ldn-aplaws/debian/ccm-ldn-aplaws.dirs deleted file mode 100755 index 429485175..000000000 --- a/ccm-ldn-aplaws/debian/ccm-ldn-aplaws.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-aplaws-6.3.0 diff --git a/ccm-ldn-aplaws/debian/ccm-settings-run.sh b/ccm-ldn-aplaws/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-aplaws/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-aplaws/debian/ccm-settings.sh b/ccm-ldn-aplaws/debian/ccm-settings.sh deleted file mode 100755 index 6735cc148..000000000 --- a/ccm-ldn-aplaws/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-aplaws -version=6.3.0 -appname=ccm-ldn-aplaws -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-aplaws/debian/changelog b/ccm-ldn-aplaws/debian/changelog deleted file mode 100755 index eb57ca074..000000000 --- a/ccm-ldn-aplaws/debian/changelog +++ /dev/null @@ -1,87 +0,0 @@ -ccm-ldn-aplaws (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:59 +0000 - -ccm-ldn-aplaws (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.9.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:10 +0000 - -ccm-ldn-aplaws (1.9.2-5) unstable; urgency=low - - * Added back missing import in lib.xsl - - -- My Tue, 20 Sep 2005 14:15:06 +0000 - -ccm-ldn-aplaws (1.9.2-4) unstable; urgency=low - - * New component to display assignedTerms on category index items - - -- My Fri, 8 Jul 2005 17:22:49 +0000 - -ccm-ldn-aplaws (1.9.2-3) unstable; urgency=low - - * SiteProxy as index items - - -- My Fri, 24 Jun 2005 09:21:54 +0000 - -ccm-ldn-aplaws (1.9.2-2) unstable; urgency=low - - * MPAs as index items - - -- My Thu, 23 Jun 2005 15:38:00 +0000 - -ccm-ldn-aplaws (1.9.2-1) unstable; urgency=low - - * New release - - -- David Pashley Mon, 14 Feb 2005 15:07:58 +0000 - -ccm-ldn-aplaws (1.9.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 15:07:58 +0000 - -ccm-ldn-aplaws (1.9.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-aplaws (1.9.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-aplaws (1.9.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-aplaws (1.9.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-aplaws/debian/compat b/ccm-ldn-aplaws/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-aplaws/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-aplaws/debian/config b/ccm-ldn-aplaws/debian/config deleted file mode 100755 index da490fef1..000000000 --- a/ccm-ldn-aplaws/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-aplaws/debian/control b/ccm-ldn-aplaws/debian/control deleted file mode 100755 index 4605bba6f..000000000 --- a/ccm-ldn-aplaws/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-aplaws -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-cms, ccm-core, ccm-ldn-navigation, ccm-ldn-portal, ccm-ldn-subsite, ccm-ldn-terms -Standards-Version: 3.6.1 - -Package: ccm-ldn-aplaws -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-subsite, ccm-ldn-portal, ccm-ldn-terms, ccm-ldn-navigation, ccm-cms-types-article -Description: APLAWS: APLAWS integration application. - This package contains the APLAWS application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-aplaws-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-aplaws - Documentation for ccm-ldn-aplaws. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-aplaws/debian/copyright b/ccm-ldn-aplaws/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-aplaws/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-aplaws/debian/postinst b/ccm-ldn-aplaws/debian/postinst deleted file mode 100755 index 3f58d8ea3..000000000 --- a/ccm-ldn-aplaws/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-aplaws -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-aplaws/debian/postrm b/ccm-ldn-aplaws/debian/postrm deleted file mode 100755 index 6acca2ed7..000000000 --- a/ccm-ldn-aplaws/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-aplaws -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-aplaws/debian/prerm b/ccm-ldn-aplaws/debian/prerm deleted file mode 100755 index 50dff3f91..000000000 --- a/ccm-ldn-aplaws/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-aplaws -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-aplaws/debian/rules b/ccm-ldn-aplaws/debian/rules deleted file mode 100755 index 00c691011..000000000 --- a/ccm-ldn-aplaws/debian/rules +++ /dev/null @@ -1,85 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - @sh debian/ccm-build-bundles.sh - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-aplaws/debian/templates b/ccm-ldn-aplaws/debian/templates deleted file mode 100755 index 52a13e843..000000000 --- a/ccm-ldn-aplaws/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-aplaws -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-aplaws". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-aplaws". diff --git a/ccm-ldn-atoz/debian/ccm-build.sh b/ccm-ldn-atoz/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-atoz/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-atoz/debian/ccm-clean.sh b/ccm-ldn-atoz/debian/ccm-clean.sh deleted file mode 100755 index 3c10238d3..000000000 --- a/ccm-ldn-atoz/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-atoz/debian/ccm-config.sh b/ccm-ldn-atoz/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-atoz/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-atoz/debian/ccm-disperse.sh b/ccm-ldn-atoz/debian/ccm-disperse.sh deleted file mode 100755 index 0c075d070..000000000 --- a/ccm-ldn-atoz/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-atoz/debian/ccm-install.sh b/ccm-ldn-atoz/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-atoz/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-atoz/debian/ccm-ldn-atoz.dirs b/ccm-ldn-atoz/debian/ccm-ldn-atoz.dirs deleted file mode 100755 index 6bb605a17..000000000 --- a/ccm-ldn-atoz/debian/ccm-ldn-atoz.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-atoz-6.3.1 diff --git a/ccm-ldn-atoz/debian/ccm-settings-run.sh b/ccm-ldn-atoz/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-atoz/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-atoz/debian/ccm-settings.sh b/ccm-ldn-atoz/debian/ccm-settings.sh deleted file mode 100755 index f1819907a..000000000 --- a/ccm-ldn-atoz/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-atoz -version=6.3.1 -appname=ccm-ldn-atoz -appversion=6.3.1 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-atoz/debian/changelog b/ccm-ldn-atoz/debian/changelog deleted file mode 100755 index c09cfd512..000000000 --- a/ccm-ldn-atoz/debian/changelog +++ /dev/null @@ -1,68 +0,0 @@ -ccm-ldn-atoz (6.3.1-1) unstable; urgency=low - - * Automatic update of version number from 6.3.0 to 6.3.1 - - -- Runtime Collective Ltd. Fri, 30 Dec 2005 08:49:30 +0000 - -ccm-ldn-atoz (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:51:59 +0000 - -ccm-ldn-atoz (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.0.3 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:10 +0000 - -ccm-ldn-atoz (1.0.3-3) unstable; urgency=low - - * added missing ref to upgrade script - - -- My Tue, 4 Oct 2005 10:56:05 +0000 - -ccm-ldn-atoz (1.0.3-2) unstable; urgency=low - - * #17792 fix for item query - - -- Fabrice Retkowsky Mon, 25 Apr 2005 16:26:16 +0100 - -ccm-ldn-atoz (1.0.3-1) unstable; urgency=low - - * Automatic update of version number from 1.0.2 to 1.0.3 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:54 +0000 - -ccm-ldn-atoz (1.0.2-1) unstable; urgency=low - - * for release qa - - -- Watford Project Fri, 4 Mar 2005 13:54:10 +0000 - -ccm-ldn-atoz (1.0.1-4) unstable; urgency=low - - * New class to support multiple aliases for each item - - -- Watford Project Fri, 4 Mar 2005 13:54:10 +0000 - -ccm-ldn-atoz (1.0.1-3) unstable; urgency=low - - * AtoZItemProvider now supports Aliases, db change - - -- Fabrice Retkowsky Tue, 1 Mar 2005 15:31:46 +0000 - -ccm-ldn-atoz (1.0.1-2) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - * Build-depend on ccm-ldn-subsite and ccm-ldn-navigation - - -- David Pashley Tue, 15 Feb 2005 10:19:21 +0000 - -ccm-ldn-atoz (1.0.1-1) unstable; urgency=low - - * Initial release of 1.0.1. - - -- Berkan Eskikaya Fri, 12 Nov 2004 09:09:56 +0100 diff --git a/ccm-ldn-atoz/debian/compat b/ccm-ldn-atoz/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-atoz/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-atoz/debian/config b/ccm-ldn-atoz/debian/config deleted file mode 100755 index da490fef1..000000000 --- a/ccm-ldn-atoz/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-atoz/debian/control b/ccm-ldn-atoz/debian/control deleted file mode 100755 index 4e163658d..000000000 --- a/ccm-ldn-atoz/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-atoz -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-ldn-util, ccm-ldn-subsite, ccm-ldn-navigation, ccm-cms (>= 6.1.0-8), ccm-cms-types-siteproxy, ccm-ldn-terms -Standards-Version: 3.6.1 - -Package: ccm-ldn-atoz -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-ldn-util, ccm-cms (>= 6.1.0-8), ccm-ldn-terms -Description: APLAWS: A to Z listing of all categories. - This package contains the A-Z application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-atoz-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-atoz - Documentation for ccm-ldn-atoz. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-atoz/debian/copyright b/ccm-ldn-atoz/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-atoz/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-atoz/debian/postinst b/ccm-ldn-atoz/debian/postinst deleted file mode 100755 index 8a842c64d..000000000 --- a/ccm-ldn-atoz/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-atoz -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-atoz/debian/postrm b/ccm-ldn-atoz/debian/postrm deleted file mode 100755 index e7f3a3aa5..000000000 --- a/ccm-ldn-atoz/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-atoz -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-atoz/debian/prerm b/ccm-ldn-atoz/debian/prerm deleted file mode 100755 index 8f5318e72..000000000 --- a/ccm-ldn-atoz/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-atoz -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-atoz/debian/rules b/ccm-ldn-atoz/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-atoz/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-atoz/debian/templates b/ccm-ldn-atoz/debian/templates deleted file mode 100755 index eee9e683e..000000000 --- a/ccm-ldn-atoz/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:12 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-atoz -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.1 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-atoz". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-atoz". diff --git a/ccm-ldn-dublin/debian/ccm-build.sh b/ccm-ldn-dublin/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-dublin/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-dublin/debian/ccm-clean.sh b/ccm-ldn-dublin/debian/ccm-clean.sh deleted file mode 100755 index 6fdf6f69b..000000000 --- a/ccm-ldn-dublin/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-dublin/debian/ccm-config.sh b/ccm-ldn-dublin/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-dublin/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-dublin/debian/ccm-disperse.sh b/ccm-ldn-dublin/debian/ccm-disperse.sh deleted file mode 100755 index fae6d3168..000000000 --- a/ccm-ldn-dublin/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-dublin/debian/ccm-install.sh b/ccm-ldn-dublin/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-dublin/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-dublin/debian/ccm-ldn-dublin.dirs b/ccm-ldn-dublin/debian/ccm-ldn-dublin.dirs deleted file mode 100755 index 2150a2928..000000000 --- a/ccm-ldn-dublin/debian/ccm-ldn-dublin.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-dublin-6.3.1 diff --git a/ccm-ldn-dublin/debian/ccm-settings-run.sh b/ccm-ldn-dublin/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-dublin/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-dublin/debian/ccm-settings.sh b/ccm-ldn-dublin/debian/ccm-settings.sh deleted file mode 100755 index cfacae06b..000000000 --- a/ccm-ldn-dublin/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-dublin -version=6.3.1 -appname=ccm-ldn-dublin -appversion=6.3.1 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-dublin/debian/changelog b/ccm-ldn-dublin/debian/changelog deleted file mode 100755 index 3991df2cc..000000000 --- a/ccm-ldn-dublin/debian/changelog +++ /dev/null @@ -1,87 +0,0 @@ -ccm-ldn-dublin (6.3.1-1) unstable; urgency=low - - * Automatic update of version number from 6.3.0 to 6.3.1 - - -- Runtime Collective Ltd. Thu, 01 Jun 2006 12:19:05 +0000 - -ccm-ldn-dublin (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:00 +0000 - -ccm-ldn-dublin (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.3 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:11 +0000 - -ccm-ldn-dublin (1.4.3-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 1.4.3 - - -- Runtime Collective Ltd. Mon, 05 Sep 2005 15:48:16 +0000 - -ccm-ldn-dublin (1.4.2-3) unstable; urgency=low - - * Removing the previous, 17509 - - -- My Mon, 9 May 2005 09:46:34 +0000 - -ccm-ldn-dublin (1.4.2-2) unstable; urgency=low - - * Putting back in the full date formatters, for 17509 - - -- My Wed, 4 May 2005 10:10:52 +0000 - -ccm-ldn-dublin (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:54 +0000 - -ccm-ldn-dublin (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 17:16:27 +0000 - -ccm-ldn-dublin (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-dublin (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-dublin (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-dublin (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-dublin/debian/compat b/ccm-ldn-dublin/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-dublin/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-dublin/debian/config b/ccm-ldn-dublin/debian/config deleted file mode 100755 index 0890d5a57..000000000 --- a/ccm-ldn-dublin/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-dublin/debian/control b/ccm-ldn-dublin/debian/control deleted file mode 100755 index 7cdc0676f..000000000 --- a/ccm-ldn-dublin/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-dublin -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-terms, ccm-ldn-navigation -Standards-Version: 3.6.1 - -Package: ccm-ldn-dublin -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-terms, ccm-ldn-navigation -Description: APLAWS: The Dublin Core application for compliance with the Dublin Core Meta-data standard. - This package contains the Dublin Core application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-dublin-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-dublin - Documentation for ccm-ldn-dublin. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-dublin/debian/copyright b/ccm-ldn-dublin/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-dublin/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-dublin/debian/postinst b/ccm-ldn-dublin/debian/postinst deleted file mode 100755 index e445ca8a4..000000000 --- a/ccm-ldn-dublin/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-dublin -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-dublin/debian/postrm b/ccm-ldn-dublin/debian/postrm deleted file mode 100755 index 4f9f9b6fc..000000000 --- a/ccm-ldn-dublin/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-dublin -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-dublin/debian/prerm b/ccm-ldn-dublin/debian/prerm deleted file mode 100755 index f4f58f542..000000000 --- a/ccm-ldn-dublin/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-dublin -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-dublin/debian/rules b/ccm-ldn-dublin/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-dublin/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-dublin/debian/templates b/ccm-ldn-dublin/debian/templates deleted file mode 100755 index 0e653ce86..000000000 --- a/ccm-ldn-dublin/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-dublin -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.1 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-dublin". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-dublin". diff --git a/ccm-ldn-exporter/debian/ccm-build.sh b/ccm-ldn-exporter/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-exporter/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-exporter/debian/ccm-clean.sh b/ccm-ldn-exporter/debian/ccm-clean.sh deleted file mode 100755 index 6fdf6f69b..000000000 --- a/ccm-ldn-exporter/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-exporter/debian/ccm-config.sh b/ccm-ldn-exporter/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-exporter/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-exporter/debian/ccm-disperse.sh b/ccm-ldn-exporter/debian/ccm-disperse.sh deleted file mode 100755 index fae6d3168..000000000 --- a/ccm-ldn-exporter/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-exporter/debian/ccm-install.sh b/ccm-ldn-exporter/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-exporter/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-exporter/debian/ccm-ldn-exporter.dirs b/ccm-ldn-exporter/debian/ccm-ldn-exporter.dirs deleted file mode 100755 index 6b5874289..000000000 --- a/ccm-ldn-exporter/debian/ccm-ldn-exporter.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-exporter-6.3.0 diff --git a/ccm-ldn-exporter/debian/ccm-settings-run.sh b/ccm-ldn-exporter/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-exporter/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-exporter/debian/ccm-settings.sh b/ccm-ldn-exporter/debian/ccm-settings.sh deleted file mode 100755 index e7676225d..000000000 --- a/ccm-ldn-exporter/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-exporter -version=6.3.0 -appname=ccm-ldn-exporter -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-exporter/debian/changelog b/ccm-ldn-exporter/debian/changelog deleted file mode 100755 index 27bdd7257..000000000 --- a/ccm-ldn-exporter/debian/changelog +++ /dev/null @@ -1,31 +0,0 @@ -ccm-ldn-exporter (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:00 +0000 - -ccm-ldn-exporter (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.0.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:12 +0000 - -ccm-ldn-exporter (1.0.1-1) unstable; urgency=low - - * Automatic update of version number from 1.0.0 to 1.0.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:55 +0000 - -ccm-ldn-exporter (1.0.0-2) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 11:37:08 +0000 - -ccm-ldn-exporter (1.0.0-1) unstable; urgency=low - - * Initial release of 1.0.0. - - -- Berkan Eskikaya Fri, 12 Nov 2004 09:09:56 +0100 diff --git a/ccm-ldn-exporter/debian/compat b/ccm-ldn-exporter/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-exporter/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-exporter/debian/config b/ccm-ldn-exporter/debian/config deleted file mode 100755 index 0890d5a57..000000000 --- a/ccm-ldn-exporter/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-exporter/debian/control b/ccm-ldn-exporter/debian/control deleted file mode 100755 index 2fb9a3451..000000000 --- a/ccm-ldn-exporter/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-exporter -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-util -Standards-Version: 3.6.1 - -Package: ccm-ldn-exporter -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: - This package contains the Image step application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-exporter-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-exporter - Documentation for ccm-ldn-exporter. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-exporter/debian/copyright b/ccm-ldn-exporter/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-exporter/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-exporter/debian/postinst b/ccm-ldn-exporter/debian/postinst deleted file mode 100755 index 42b775e08..000000000 --- a/ccm-ldn-exporter/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-exporter -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-exporter/debian/postrm b/ccm-ldn-exporter/debian/postrm deleted file mode 100755 index 26d1a5c33..000000000 --- a/ccm-ldn-exporter/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-exporter -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-exporter/debian/prerm b/ccm-ldn-exporter/debian/prerm deleted file mode 100755 index 9ea851ad2..000000000 --- a/ccm-ldn-exporter/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-exporter -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-exporter/debian/rules b/ccm-ldn-exporter/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-exporter/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-exporter/debian/templates b/ccm-ldn-exporter/debian/templates deleted file mode 100755 index 38a62664d..000000000 --- a/ccm-ldn-exporter/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-exporter -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-exporter". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-exporter". diff --git a/ccm-ldn-freeform/debian/ccm-auth-http.dirs b/ccm-ldn-freeform/debian/ccm-auth-http.dirs deleted file mode 100755 index 8faf1fbd4..000000000 --- a/ccm-ldn-freeform/debian/ccm-auth-http.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-freeform-1.4.1 diff --git a/ccm-ldn-freeform/debian/ccm-build.sh b/ccm-ldn-freeform/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-freeform/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-freeform/debian/ccm-clean.sh b/ccm-ldn-freeform/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-ldn-freeform/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-freeform/debian/ccm-config.sh b/ccm-ldn-freeform/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-freeform/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-freeform/debian/ccm-disperse.sh b/ccm-ldn-freeform/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-ldn-freeform/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-freeform/debian/ccm-install.sh b/ccm-ldn-freeform/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-freeform/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-freeform/debian/ccm-ldn-freeform.dirs b/ccm-ldn-freeform/debian/ccm-ldn-freeform.dirs deleted file mode 100755 index 1953c7e11..000000000 --- a/ccm-ldn-freeform/debian/ccm-ldn-freeform.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-freeform-6.3.0 diff --git a/ccm-ldn-freeform/debian/ccm-settings-run.sh b/ccm-ldn-freeform/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-freeform/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-freeform/debian/ccm-settings.sh b/ccm-ldn-freeform/debian/ccm-settings.sh deleted file mode 100755 index fe2656b75..000000000 --- a/ccm-ldn-freeform/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-freeform -version=6.3.0 -appname=ccm-ldn-freeform -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-freeform/debian/changelog b/ccm-ldn-freeform/debian/changelog deleted file mode 100755 index abc10afb2..000000000 --- a/ccm-ldn-freeform/debian/changelog +++ /dev/null @@ -1,23 +0,0 @@ -ccm-ldn-freeform (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:00 +0000 - -ccm-ldn-freeform (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:12 +0000 - -ccm-ldn-freeform (1.4.2-2) unstable; urgency=low - - * Add ccm-devel and ccm-scripts to the build-dependancies. - - -- David Pashley Thu, 28 Apr 2005 11:51:32 +0100 - -ccm-ldn-freeform (1.4.2-1) unstable; urgency=low - - * Initial release. - - -- Fabrice Retkowsky Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-freeform/debian/compat b/ccm-ldn-freeform/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-freeform/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-freeform/debian/config b/ccm-ldn-freeform/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-ldn-freeform/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-freeform/debian/control b/ccm-ldn-freeform/debian/control deleted file mode 100755 index 0760bf673..000000000 --- a/ccm-ldn-freeform/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-freeform -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-core, ccm-devel, ccm-scripts, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-ldn-freeform -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-core -Description: APLAWS: NTLM authentication module. - This package contains the Auth HTTP application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-freeform-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-freeform - Documentation for ccm-ldn-freeform. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-freeform/debian/copyright b/ccm-ldn-freeform/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-freeform/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-freeform/debian/postinst b/ccm-ldn-freeform/debian/postinst deleted file mode 100755 index 961fa4874..000000000 --- a/ccm-ldn-freeform/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-freeform -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-freeform/debian/postrm b/ccm-ldn-freeform/debian/postrm deleted file mode 100755 index 63639862d..000000000 --- a/ccm-ldn-freeform/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-freeform -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-freeform/debian/prerm b/ccm-ldn-freeform/debian/prerm deleted file mode 100755 index 37ba83115..000000000 --- a/ccm-ldn-freeform/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-freeform -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-freeform/debian/rules b/ccm-ldn-freeform/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-freeform/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-freeform/debian/templates b/ccm-ldn-freeform/debian/templates deleted file mode 100755 index 72e4b41e5..000000000 --- a/ccm-ldn-freeform/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-freeform -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-freeform". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-freeform". diff --git a/ccm-ldn-image-step/debian/ccm-build.sh b/ccm-ldn-image-step/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-image-step/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-image-step/debian/ccm-clean.sh b/ccm-ldn-image-step/debian/ccm-clean.sh deleted file mode 100755 index 6fdf6f69b..000000000 --- a/ccm-ldn-image-step/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-image-step/debian/ccm-config.sh b/ccm-ldn-image-step/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-image-step/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-image-step/debian/ccm-disperse.sh b/ccm-ldn-image-step/debian/ccm-disperse.sh deleted file mode 100755 index fae6d3168..000000000 --- a/ccm-ldn-image-step/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:13 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-image-step/debian/ccm-install.sh b/ccm-ldn-image-step/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-image-step/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-image-step/debian/ccm-ldn-image-step.dirs b/ccm-ldn-image-step/debian/ccm-ldn-image-step.dirs deleted file mode 100755 index 74eb43185..000000000 --- a/ccm-ldn-image-step/debian/ccm-ldn-image-step.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-image-step-6.3.0 diff --git a/ccm-ldn-image-step/debian/ccm-settings-run.sh b/ccm-ldn-image-step/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-image-step/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-image-step/debian/ccm-settings.sh b/ccm-ldn-image-step/debian/ccm-settings.sh deleted file mode 100755 index 98699b5c4..000000000 --- a/ccm-ldn-image-step/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-image-step -version=6.3.0 -appname=ccm-ldn-image-step -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-image-step/debian/changelog b/ccm-ldn-image-step/debian/changelog deleted file mode 100755 index 632908778..000000000 --- a/ccm-ldn-image-step/debian/changelog +++ /dev/null @@ -1,61 +0,0 @@ -ccm-ldn-image-step (6.3.0-7) unstable; urgency=low - - * Fixing logger class, maybe leading to classloader pb - - -- My Fri, 24 Feb 2006 14:37:59 +0000 - -ccm-ldn-image-step (6.3.0-6) unstable; urgency=low - - * Fixing weird classloading issue for UNDP - - -- My Thu, 23 Feb 2006 16:13:46 +0000 - -ccm-ldn-image-step (6.3.0-5) unstable; urgency=low - - * Fixing oracle upgrade script - - -- My Wed, 22 Feb 2006 15:14:28 +0000 - -ccm-ldn-image-step (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:00 +0000 - -ccm-ldn-image-step (6.2.1-1) unstable; urgency=low - - * Adding missing sql upgrade script - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:00 +0000 - -ccm-ldn-image-step (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 2.0.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:12 +0000 - -ccm-ldn-image-step (2.0.1-2) unstable; urgency=low - - * Added optional title and description for images - - -- James Burt Thu, 6 Oct 2005 15:31:20 +0100 - -ccm-ldn-image-step (2.0.1-1) unstable; urgency=low - - * Automatic update of version number from 2.0.0 to 2.0.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:55 +0000 - -ccm-ldn-image-step (2.0.0-2) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 11:38:30 +0000 - -ccm-ldn-image-step (2.0.0-1) unstable; urgency=low - - * Initial release of 2.0.0. - - -- Berkan Eskikaya Fri, 12 Nov 2004 09:09:56 +0100 diff --git a/ccm-ldn-image-step/debian/compat b/ccm-ldn-image-step/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-image-step/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-image-step/debian/config b/ccm-ldn-image-step/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-ldn-image-step/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-image-step/debian/control b/ccm-ldn-image-step/debian/control deleted file mode 100755 index 848ead4ef..000000000 --- a/ccm-ldn-image-step/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-image-step -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-navigation -Standards-Version: 3.6.1 - -Package: ccm-ldn-image-step -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-navigation -Description: APLAWS: - This package contains the Image step application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-image-step-doc -Architecture: all -Depends: ccm-tools, ccm-core, ccm-cms, ccm-ldn-navigation -Description: Documentation for ccm-ldn-image-step - Documentation for ccm-ldn-image-step. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-image-step/debian/copyright b/ccm-ldn-image-step/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-image-step/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-image-step/debian/postinst b/ccm-ldn-image-step/debian/postinst deleted file mode 100755 index ccc24ba0f..000000000 --- a/ccm-ldn-image-step/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-image-step -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-image-step/debian/postrm b/ccm-ldn-image-step/debian/postrm deleted file mode 100755 index 3ffe3a47d..000000000 --- a/ccm-ldn-image-step/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-image-step -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-image-step/debian/prerm b/ccm-ldn-image-step/debian/prerm deleted file mode 100755 index 24b532e54..000000000 --- a/ccm-ldn-image-step/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-image-step -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-image-step/debian/rules b/ccm-ldn-image-step/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-image-step/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-image-step/debian/templates b/ccm-ldn-image-step/debian/templates deleted file mode 100755 index cdd676d69..000000000 --- a/ccm-ldn-image-step/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-image-step -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-image-step". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-image-step". diff --git a/ccm-ldn-importer/debian/ccm-build.sh b/ccm-ldn-importer/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-importer/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-importer/debian/ccm-clean.sh b/ccm-ldn-importer/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-ldn-importer/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-importer/debian/ccm-config.sh b/ccm-ldn-importer/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-importer/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-importer/debian/ccm-disperse.sh b/ccm-ldn-importer/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-ldn-importer/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-importer/debian/ccm-install.sh b/ccm-ldn-importer/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-importer/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-importer/debian/ccm-ldn-importer.dirs b/ccm-ldn-importer/debian/ccm-ldn-importer.dirs deleted file mode 100755 index 00b8977a5..000000000 --- a/ccm-ldn-importer/debian/ccm-ldn-importer.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-importer-6.3.0 diff --git a/ccm-ldn-importer/debian/ccm-settings-run.sh b/ccm-ldn-importer/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-importer/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-importer/debian/ccm-settings.sh b/ccm-ldn-importer/debian/ccm-settings.sh deleted file mode 100755 index 49044eddf..000000000 --- a/ccm-ldn-importer/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-importer -version=6.3.0 -appname=ccm-ldn-importer -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-importer/debian/changelog b/ccm-ldn-importer/debian/changelog deleted file mode 100755 index 5a0591647..000000000 --- a/ccm-ldn-importer/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-ldn-importer (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 - -ccm-ldn-importer (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.0.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:12 +0000 - -ccm-ldn-importer (1.0.1-1) unstable; urgency=low - - * Automatic update of version number from 1.0.0 to 1.0.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:55 +0000 - -ccm-ldn-importer (1.0.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 11:53:56 +0000 - -ccm-ldn-importer (1.0.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-importer (1.0.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-importer (1.0.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-importer (1.0.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-importer/debian/compat b/ccm-ldn-importer/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-importer/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-importer/debian/config b/ccm-ldn-importer/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-ldn-importer/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-importer/debian/control b/ccm-ldn-importer/debian/control deleted file mode 100755 index 1f41e3670..000000000 --- a/ccm-ldn-importer/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-importer -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-util -Standards-Version: 3.6.1 - -Package: ccm-ldn-importer -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util -Description: APLAWS: Application for importing content data from XML files. - This package contains the Importer application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-importer-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-importer - Documentation for ccm-ldn-importer. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-importer/debian/copyright b/ccm-ldn-importer/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-importer/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-importer/debian/postinst b/ccm-ldn-importer/debian/postinst deleted file mode 100755 index abd409192..000000000 --- a/ccm-ldn-importer/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-importer -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-importer/debian/postrm b/ccm-ldn-importer/debian/postrm deleted file mode 100755 index dafe734e3..000000000 --- a/ccm-ldn-importer/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-importer -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-importer/debian/prerm b/ccm-ldn-importer/debian/prerm deleted file mode 100755 index 4c0dd3032..000000000 --- a/ccm-ldn-importer/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-importer -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-importer/debian/rules b/ccm-ldn-importer/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-importer/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-importer/debian/templates b/ccm-ldn-importer/debian/templates deleted file mode 100755 index 354f23cc0..000000000 --- a/ccm-ldn-importer/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-importer -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-importer". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-importer". diff --git a/ccm-ldn-navigation/debian/ccm-build.sh b/ccm-ldn-navigation/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-navigation/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-navigation/debian/ccm-clean.sh b/ccm-ldn-navigation/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-ldn-navigation/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-navigation/debian/ccm-config.sh b/ccm-ldn-navigation/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-navigation/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-navigation/debian/ccm-disperse.sh b/ccm-ldn-navigation/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-ldn-navigation/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-navigation/debian/ccm-install.sh b/ccm-ldn-navigation/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-navigation/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-navigation/debian/ccm-ldn-navigation.dirs b/ccm-ldn-navigation/debian/ccm-ldn-navigation.dirs deleted file mode 100755 index b3d8e19c8..000000000 --- a/ccm-ldn-navigation/debian/ccm-ldn-navigation.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-navigation-6.3.0 diff --git a/ccm-ldn-navigation/debian/ccm-settings-run.sh b/ccm-ldn-navigation/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-navigation/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-navigation/debian/ccm-settings.sh b/ccm-ldn-navigation/debian/ccm-settings.sh deleted file mode 100755 index 4d337735d..000000000 --- a/ccm-ldn-navigation/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-navigation -version=6.3.0 -appname=ccm-ldn-navigation -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-navigation/debian/changelog b/ccm-ldn-navigation/debian/changelog deleted file mode 100755 index 558b3c2f1..000000000 --- a/ccm-ldn-navigation/debian/changelog +++ /dev/null @@ -1,169 +0,0 @@ -ccm-ldn-navigation (6.3.0-7) unstable; urgency=low - - * #21362 give a 404 for category.jsp?categoryID=XXX where XXX is a disabled - category - - -- My Wed, 14 Jun 2006 09:58:01 +0000 - -ccm-ldn-navigation (6.3.0-6) unstable; urgency=low - - * Fix 21135 - where a category has more than one parent, only show - isSelected="true" for the correct branch - - -- Erik Erskine Mon, 13 Mar 2006 16:52:10 +0000 - -ccm-ldn-navigation (6.3.0-5) unstable; urgency=low - - * Cancelling previous - - -- My Fri, 3 Mar 2006 13:47:39 +0000 - -ccm-ldn-navigation (6.3.0-4) unstable; urgency=low - - * New nav classes from UNDP - - -- My Fri, 3 Mar 2006 12:22:28 +0000 - -ccm-ldn-navigation (6.3.0-3) unstable; urgency=low - - * Added page and new class to create XML category summary - - -- James Burt Fri, 27 Jan 2006 12:34:27 +0000 - -ccm-ldn-navigation (6.3.0-2) unstable; urgency=low - - * RedHat patches - - -- My Fri, 30 Dec 2005 08:53:09 +0000 - -ccm-ldn-navigation (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 - -ccm-ldn-navigation (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.5 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:12 +0000 - -ccm-ldn-navigation (1.4.5-8) unstable; urgency=low - - * Filter for catID first in DataCollDef to speed up joins - - -- My Wed, 5 Oct 2005 11:11:48 +0000 - -ccm-ldn-navigation (1.4.5-7) unstable; urgency=low - - * Refactoring MPA/SiteProxy as index item patch, adding 404s for invalid - category hits - - -- My Thu, 28 Jul 2005 12:27:06 +0000 - -ccm-ldn-navigation (1.4.5-6) unstable; urgency=low - - * Scan all content types in ExtraXML component - - -- My Mon, 4 Jul 2005 14:21:51 +0000 - -ccm-ldn-navigation (1.4.5-5) unstable; urgency=low - - * SiteProxy as index items - - -- My Fri, 24 Jun 2005 09:21:11 +0000 - -ccm-ldn-navigation (1.4.5-4) unstable; urgency=low - - * MPAs as index items - - -- My Thu, 23 Jun 2005 15:37:36 +0000 - -ccm-ldn-navigation (1.4.5-3) unstable; urgency=low - - * Investigating #17703 - - -- My Thu, 12 May 2005 15:59:16 +0000 - -ccm-ldn-navigation (1.4.5-2) unstable; urgency=low - - * Integrated one fix from official Aplaws - - -- Fabrice Retkowsky Wed, 20 Apr 2005 10:42:46 +0100 - -ccm-ldn-navigation (1.4.5-1) unstable; urgency=low - - * Automatic update of version number from 1.4.4 to 1.4.5 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:55 +0000 - -ccm-ldn-navigation (1.4.4-1) unstable; urgency=low - - * For qa - - -- Fabrice Retkowsky Fri, 4 Mar 2005 17:12:10 -0800 - -ccm-ldn-navigation (1.4.3-8) unstable; urgency=low - - * OPtion for CategoryMenu to display grand-children categories, ticket 16648 - - -- Fabrice Retkowsky Fri, 4 Mar 2005 17:12:10 -0800 - -ccm-ldn-navigation (1.4.3-7) unstable; urgency=low - - * Fixed the previous fix, 16648 - - -- Watford Project Thu, 3 Mar 2005 17:38:02 +0000 - -ccm-ldn-navigation (1.4.3-6) unstable; urgency=low - - * Option for CategoryMenu to display nephew categories of the current one, - ticket 16648 - - -- Watford Project Wed, 23 Feb 2005 18:31:19 +0000 - -ccm-ldn-navigation (1.4.3-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 14 Feb 2005 15:26:22 +0000 - -ccm-ldn-navigation (1.4.3-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-navigation (1.4.3-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-navigation (1.4.3-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-navigation (1.4.3-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-navigation/debian/compat b/ccm-ldn-navigation/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-navigation/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-navigation/debian/config b/ccm-ldn-navigation/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-ldn-navigation/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-navigation/debian/control b/ccm-ldn-navigation/debian/control deleted file mode 100755 index 0c4d89c62..000000000 --- a/ccm-ldn-navigation/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-navigation -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-cms, ccm-core, ccm-ldn-terms, ccm-ldn-util -Standards-Version: 3.6.1 - -Package: ccm-ldn-navigation -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util -Description: APLAWS: Navigation application for building the navigation structure through published items. - This package contains the Navigation application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-navigation-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-navigation - Documentation for ccm-ldn-navigation. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-navigation/debian/copyright b/ccm-ldn-navigation/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-navigation/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-navigation/debian/postinst b/ccm-ldn-navigation/debian/postinst deleted file mode 100755 index a73bc1cb6..000000000 --- a/ccm-ldn-navigation/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-navigation -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-navigation/debian/postrm b/ccm-ldn-navigation/debian/postrm deleted file mode 100755 index 28e70bec1..000000000 --- a/ccm-ldn-navigation/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-navigation -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-navigation/debian/prerm b/ccm-ldn-navigation/debian/prerm deleted file mode 100755 index 75e56e9e1..000000000 --- a/ccm-ldn-navigation/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-navigation -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-navigation/debian/rules b/ccm-ldn-navigation/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-navigation/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-navigation/debian/templates b/ccm-ldn-navigation/debian/templates deleted file mode 100755 index d92927a8e..000000000 --- a/ccm-ldn-navigation/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-navigation -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-navigation". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-navigation". diff --git a/ccm-ldn-portal/debian/ccm-build.sh b/ccm-ldn-portal/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-portal/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-portal/debian/ccm-clean.sh b/ccm-ldn-portal/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-ldn-portal/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-portal/debian/ccm-config.sh b/ccm-ldn-portal/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-portal/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-portal/debian/ccm-disperse.sh b/ccm-ldn-portal/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-ldn-portal/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-portal/debian/ccm-install.sh b/ccm-ldn-portal/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-portal/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-portal/debian/ccm-ldn-portal.dirs b/ccm-ldn-portal/debian/ccm-ldn-portal.dirs deleted file mode 100755 index 23a7f91ed..000000000 --- a/ccm-ldn-portal/debian/ccm-ldn-portal.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-portal-6.3.2 diff --git a/ccm-ldn-portal/debian/ccm-settings-run.sh b/ccm-ldn-portal/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-portal/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-portal/debian/ccm-settings.sh b/ccm-ldn-portal/debian/ccm-settings.sh deleted file mode 100755 index dbdd9baae..000000000 --- a/ccm-ldn-portal/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-portal -version=6.3.2 -appname=ccm-ldn-portal -appversion=6.3.2 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-portal/debian/changelog b/ccm-ldn-portal/debian/changelog deleted file mode 100755 index 21cfeee8d..000000000 --- a/ccm-ldn-portal/debian/changelog +++ /dev/null @@ -1,145 +0,0 @@ -ccm-ldn-portal (6.3.2-1) unstable; urgency=low - - * Automatic update of version number from 6.3.1 to 6.3.2 - - -- Runtime Collective Ltd. Wed, 31 May 2006 15:07:31 +0000 - -ccm-ldn-portal (6.3.1-11) unstable; urgency=low - - * Refactored PersonalPortalPage so that it no longer tries to retrieve the - base personal portal before the users portal. Should be more efficient. - - -- Matt Roberts Wed, 12 Apr 2006 15:38:21 +0100 - -ccm-ldn-portal (6.3.1-10) unstable; urgency=low - - * Fix the debian version numbering of the jar files - - -- Brett Parker Thu, 30 Mar 2006 16:07:51 +0100 - -ccm-ldn-portal (6.3.1-9) unstable; urgency=low - - * Fixed the 3 new portlets for UNDP - - -- My Tue, 7 Mar 2006 14:21:36 +0000 - -ccm-ldn-portal (6.3.1-8) unstable; urgency=low - - * 3 new portlets for UNDP - - -- My Mon, 6 Mar 2006 16:03:46 +0000 - -ccm-ldn-portal (6.3.1-7) unstable; urgency=low - - * Added ability to delete a portal - * Added automatic creation of personal portals for all users - - -- Matt Roberts Mon, 6 Mar 2006 11:33:13 +0000 - -ccm-ldn-portal (6.3.1-6) unstable; urgency=low - - * Adding style attribute to portal:portal - - -- My Sat, 4 Mar 2006 10:07:35 +0000 - -ccm-ldn-portal (6.3.1-5) unstable; urgency=low - - * Fixing previous - - -- My Thu, 2 Mar 2006 16:06:26 +0000 - -ccm-ldn-portal (6.3.1-4) unstable; urgency=low - - * Adding owner to workspaces, and fixing previous upgrade scripts - - -- My Tue, 28 Feb 2006 10:20:52 +0000 - -ccm-ldn-portal (6.3.1-3) unstable; urgency=low - - * Use valid oracle syntax in upgrade script - - -- My Mon, 20 Feb 2006 14:53:57 +0000 - -ccm-ldn-portal (6.3.1-2) unstable; urgency=low - - * Added workspace basic properties - - -- Matt Roberts Tue, 14 Feb 2006 16:13:35 +0000 - -ccm-ldn-portal (6.3.1-1) unstable; urgency=low - - * Non-maintainer upload. - * Added workspace themes. - - -- Matt Roberts Thu, 2 Feb 2006 13:07:56 +0000 - -ccm-ldn-portal (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 - -ccm-ldn-portal (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.3 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-portal (1.4.3-2) unstable; urgency=low - - * Output sortKey for ContentDirectoryPortlet, #17553 - - -- My Thu, 21 Apr 2005 09:44:53 +0000 - -ccm-ldn-portal (1.4.3-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 1.4.3 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:55 +0000 - -ccm-ldn-portal (1.4.2-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - * build-depend on ccm-ldn-navigation - - -- David Pashley Tue, 15 Feb 2005 11:56:29 +0000 - -ccm-ldn-portal (1.4.2-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-portal (1.4.2-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-portal (1.4.2-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-portal (1.4.2-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-portal/debian/compat b/ccm-ldn-portal/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-portal/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-portal/debian/config b/ccm-ldn-portal/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-ldn-portal/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-portal/debian/control b/ccm-ldn-portal/debian/control deleted file mode 100755 index 6110e2027..000000000 --- a/ccm-ldn-portal/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-portal -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-navigation, ccm-ldn-rss, ccm-ldn-subsite, ccm-ldn-util, ccm-forum -Standards-Version: 3.6.1 - -Package: ccm-ldn-portal -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util, ccm-ldn-rss -Description: APLAWS: Portal application for creating complex customisable front pages and user workspaces. - This package contains the Portal application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-portal-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-portal - Documentation for ccm-ldn-portal. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-portal/debian/copyright b/ccm-ldn-portal/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-portal/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-portal/debian/postinst b/ccm-ldn-portal/debian/postinst deleted file mode 100755 index 6e44d389e..000000000 --- a/ccm-ldn-portal/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-portal -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-portal/debian/postrm b/ccm-ldn-portal/debian/postrm deleted file mode 100755 index c8ba79e31..000000000 --- a/ccm-ldn-portal/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-portal -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-portal/debian/prerm b/ccm-ldn-portal/debian/prerm deleted file mode 100755 index fe8d5ecdd..000000000 --- a/ccm-ldn-portal/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-portal -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-portal/debian/rules b/ccm-ldn-portal/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-portal/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-portal/debian/templates b/ccm-ldn-portal/debian/templates deleted file mode 100755 index 413468170..000000000 --- a/ccm-ldn-portal/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-portal -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.2 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-portal". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-portal". diff --git a/ccm-ldn-portal/web/WEB-INF/web.xml-portal.in b/ccm-ldn-portal/doc/web.xml-portal.in similarity index 100% rename from ccm-ldn-portal/web/WEB-INF/web.xml-portal.in rename to ccm-ldn-portal/doc/web.xml-portal.in diff --git a/ccm-ldn-rss/debian/ccm-build.sh b/ccm-ldn-rss/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-rss/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-rss/debian/ccm-clean.sh b/ccm-ldn-rss/debian/ccm-clean.sh deleted file mode 100755 index 48f553a66..000000000 --- a/ccm-ldn-rss/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-rss/debian/ccm-config.sh b/ccm-ldn-rss/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-rss/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-rss/debian/ccm-disperse.sh b/ccm-ldn-rss/debian/ccm-disperse.sh deleted file mode 100755 index 977a50498..000000000 --- a/ccm-ldn-rss/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-rss/debian/ccm-install.sh b/ccm-ldn-rss/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-rss/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-rss/debian/ccm-ldn-rss.dirs b/ccm-ldn-rss/debian/ccm-ldn-rss.dirs deleted file mode 100755 index ba28f9b01..000000000 --- a/ccm-ldn-rss/debian/ccm-ldn-rss.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-rss-6.3.0 diff --git a/ccm-ldn-rss/debian/ccm-settings-run.sh b/ccm-ldn-rss/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-rss/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-rss/debian/ccm-settings.sh b/ccm-ldn-rss/debian/ccm-settings.sh deleted file mode 100755 index 0465ebd80..000000000 --- a/ccm-ldn-rss/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-rss -version=6.3.0 -appname=ccm-ldn-rss -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-rss/debian/changelog b/ccm-ldn-rss/debian/changelog deleted file mode 100755 index 6b54d3f87..000000000 --- a/ccm-ldn-rss/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-ldn-rss (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 - -ccm-ldn-rss (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-rss (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:55 +0000 - -ccm-ldn-rss (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 12:02:39 +0000 - -ccm-ldn-rss (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-rss (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-rss (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-rss (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-rss/debian/compat b/ccm-ldn-rss/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-rss/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-rss/debian/config b/ccm-ldn-rss/debian/config deleted file mode 100755 index 2257ea7ba..000000000 --- a/ccm-ldn-rss/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-rss/debian/control b/ccm-ldn-rss/debian/control deleted file mode 100755 index e68e5f19c..000000000 --- a/ccm-ldn-rss/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-rss -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-util, ccm-ldn-terms -Standards-Version: 3.6.1 - -Package: ccm-ldn-rss -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util, ccm-ldn-terms -Description: APLAWS: RSS feed application. - This package contains the RSS application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-rss-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-rss - Documentation for ccm-ldn-rss. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-rss/debian/copyright b/ccm-ldn-rss/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-rss/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-rss/debian/postinst b/ccm-ldn-rss/debian/postinst deleted file mode 100755 index 54eed8b81..000000000 --- a/ccm-ldn-rss/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-rss -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-rss/debian/postrm b/ccm-ldn-rss/debian/postrm deleted file mode 100755 index 7c0ae2e3b..000000000 --- a/ccm-ldn-rss/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-rss -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-rss/debian/prerm b/ccm-ldn-rss/debian/prerm deleted file mode 100755 index 6dab4cab3..000000000 --- a/ccm-ldn-rss/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-rss -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-rss/debian/rules b/ccm-ldn-rss/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-rss/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-rss/debian/templates b/ccm-ldn-rss/debian/templates deleted file mode 100755 index 54dfbac3f..000000000 --- a/ccm-ldn-rss/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-rss -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-rss". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-rss". diff --git a/ccm-ldn-rss/web/WEB-INF/web.xml-rss.in b/ccm-ldn-rss/doc/web.xml-rss.in similarity index 100% rename from ccm-ldn-rss/web/WEB-INF/web.xml-rss.in rename to ccm-ldn-rss/doc/web.xml-rss.in diff --git a/ccm-ldn-search/debian/ccm-build.sh b/ccm-ldn-search/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-search/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-search/debian/ccm-clean.sh b/ccm-ldn-search/debian/ccm-clean.sh deleted file mode 100755 index 48f553a66..000000000 --- a/ccm-ldn-search/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-search/debian/ccm-config.sh b/ccm-ldn-search/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-search/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-search/debian/ccm-disperse.sh b/ccm-ldn-search/debian/ccm-disperse.sh deleted file mode 100755 index 977a50498..000000000 --- a/ccm-ldn-search/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-search/debian/ccm-install.sh b/ccm-ldn-search/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-search/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-search/debian/ccm-ldn-search.dirs b/ccm-ldn-search/debian/ccm-ldn-search.dirs deleted file mode 100755 index c40d9cc86..000000000 --- a/ccm-ldn-search/debian/ccm-ldn-search.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-search-6.3.0 diff --git a/ccm-ldn-search/debian/ccm-settings-run.sh b/ccm-ldn-search/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-search/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-search/debian/ccm-settings.sh b/ccm-ldn-search/debian/ccm-settings.sh deleted file mode 100755 index 603c5363a..000000000 --- a/ccm-ldn-search/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-search -version=6.3.0 -appname=ccm-ldn-search -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-search/debian/changelog b/ccm-ldn-search/debian/changelog deleted file mode 100755 index 7cf63a151..000000000 --- a/ccm-ldn-search/debian/changelog +++ /dev/null @@ -1,76 +0,0 @@ -ccm-ldn-search (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 - -ccm-ldn-search (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.3 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-search (1.4.3-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 1.4.3 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:56 +0000 - -ccm-ldn-search (1.4.2-1) unstable; urgency=low - - * for release qa - - -- David Pashley Tue, 15 Feb 2005 12:06:05 +0000 - -ccm-ldn-search (1.4.1-6) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 12:06:05 +0000 - -ccm-ldn-search (1.4.1-5) unstable; urgency=low - - * debian/control: Updated the build dependency list with ccm-cms- - types-article and ccm-cms-types-newsitem. - - -- Berkan Eskikaya Wed, 23 Jun 2004 11:06:29 +0000 - -ccm-ldn-search (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-search (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-search (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-search (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-search/debian/compat b/ccm-ldn-search/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-search/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-search/debian/config b/ccm-ldn-search/debian/config deleted file mode 100755 index 2257ea7ba..000000000 --- a/ccm-ldn-search/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-search/debian/control b/ccm-ldn-search/debian/control deleted file mode 100755 index 18dcf74fe..000000000 --- a/ccm-ldn-search/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-search -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-util -Standards-Version: 3.6.1 - -Package: ccm-ldn-search -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util -Description: APLAWS: Search application for enabling site wide search through the published content items. - This package contains the Search application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-search-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-search - Documentation for ccm-ldn-search. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-search/debian/copyright b/ccm-ldn-search/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-search/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-search/debian/postinst b/ccm-ldn-search/debian/postinst deleted file mode 100755 index 46ea1e36c..000000000 --- a/ccm-ldn-search/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-search -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-search/debian/postrm b/ccm-ldn-search/debian/postrm deleted file mode 100755 index 2157606b7..000000000 --- a/ccm-ldn-search/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-search -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-search/debian/prerm b/ccm-ldn-search/debian/prerm deleted file mode 100755 index 676db73e8..000000000 --- a/ccm-ldn-search/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-search -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-search/debian/rules b/ccm-ldn-search/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-search/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-search/debian/templates b/ccm-ldn-search/debian/templates deleted file mode 100755 index 95fa52059..000000000 --- a/ccm-ldn-search/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-search -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-search". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-search". diff --git a/ccm-ldn-search/web/WEB-INF/web.xml-search.in b/ccm-ldn-search/doc/web.xml-search.in similarity index 100% rename from ccm-ldn-search/web/WEB-INF/web.xml-search.in rename to ccm-ldn-search/doc/web.xml-search.in diff --git a/ccm-ldn-shortcuts/debian/ccm-build.sh b/ccm-ldn-shortcuts/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-shortcuts/debian/ccm-clean.sh b/ccm-ldn-shortcuts/debian/ccm-clean.sh deleted file mode 100755 index 48f553a66..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-shortcuts/debian/ccm-config.sh b/ccm-ldn-shortcuts/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-shortcuts/debian/ccm-disperse.sh b/ccm-ldn-shortcuts/debian/ccm-disperse.sh deleted file mode 100755 index 977a50498..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:15 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-shortcuts/debian/ccm-install.sh b/ccm-ldn-shortcuts/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-shortcuts/debian/ccm-ldn-shortcuts.dirs b/ccm-ldn-shortcuts/debian/ccm-ldn-shortcuts.dirs deleted file mode 100755 index 9dc6da622..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-ldn-shortcuts.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-shortcuts-6.3.0 diff --git a/ccm-ldn-shortcuts/debian/ccm-settings-run.sh b/ccm-ldn-shortcuts/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-shortcuts/debian/ccm-settings.sh b/ccm-ldn-shortcuts/debian/ccm-settings.sh deleted file mode 100755 index 9b07d4348..000000000 --- a/ccm-ldn-shortcuts/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-shortcuts -version=6.3.0 -appname=ccm-ldn-shortcuts -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-shortcuts/debian/changelog b/ccm-ldn-shortcuts/debian/changelog deleted file mode 100755 index ab2cf984d..000000000 --- a/ccm-ldn-shortcuts/debian/changelog +++ /dev/null @@ -1,75 +0,0 @@ -ccm-ldn-shortcuts (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 - -ccm-ldn-shortcuts (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-shortcuts (1.4.2-3) unstable; urgency=low - - * Parameter to set the shortcuts cache size - - -- My Tue, 10 May 2005 10:27:59 +0000 - -ccm-ldn-shortcuts (1.4.2-2) unstable; urgency=low - - * Possible fix for 17603: shortcututil was closing transactions it didn't open - - -- My Fri, 6 May 2005 10:47:02 +0000 - -ccm-ldn-shortcuts (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:56 +0000 - -ccm-ldn-shortcuts (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 12:13:44 +0000 - -ccm-ldn-shortcuts (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-shortcuts (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-shortcuts (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-shortcuts (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-shortcuts/debian/compat b/ccm-ldn-shortcuts/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-shortcuts/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-shortcuts/debian/config b/ccm-ldn-shortcuts/debian/config deleted file mode 100755 index 45e961cb7..000000000 --- a/ccm-ldn-shortcuts/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-shortcuts/debian/control b/ccm-ldn-shortcuts/debian/control deleted file mode 100755 index fcdf83d68..000000000 --- a/ccm-ldn-shortcuts/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-shortcuts -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core -Standards-Version: 3.6.1 - -Package: ccm-ldn-shortcuts -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core -Description: APLAWS: The shortcuts applications allows the creation of shortcut links to more complicated URLs. - This package contains the Shortcuts application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-shortcuts-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-shortcuts - Documentation for ccm-ldn-shortcuts. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-shortcuts/debian/copyright b/ccm-ldn-shortcuts/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-shortcuts/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-shortcuts/debian/postinst b/ccm-ldn-shortcuts/debian/postinst deleted file mode 100755 index 7a110d0f5..000000000 --- a/ccm-ldn-shortcuts/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-shortcuts -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-shortcuts/debian/postrm b/ccm-ldn-shortcuts/debian/postrm deleted file mode 100755 index 306f66085..000000000 --- a/ccm-ldn-shortcuts/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-shortcuts -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-shortcuts/debian/prerm b/ccm-ldn-shortcuts/debian/prerm deleted file mode 100755 index a73bcf217..000000000 --- a/ccm-ldn-shortcuts/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-shortcuts -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-shortcuts/debian/rules b/ccm-ldn-shortcuts/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-shortcuts/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-shortcuts/debian/templates b/ccm-ldn-shortcuts/debian/templates deleted file mode 100755 index 1783ffa85..000000000 --- a/ccm-ldn-shortcuts/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-shortcuts -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-shortcuts". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-shortcuts". diff --git a/ccm-ldn-shortcuts/web/WEB-INF/web.xml-shortcuts.in b/ccm-ldn-shortcuts/doc/web.xml-shortcuts.in similarity index 100% rename from ccm-ldn-shortcuts/web/WEB-INF/web.xml-shortcuts.in rename to ccm-ldn-shortcuts/doc/web.xml-shortcuts.in diff --git a/ccm-ldn-subsite/debian/ccm-build.sh b/ccm-ldn-subsite/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-subsite/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-subsite/debian/ccm-clean.sh b/ccm-ldn-subsite/debian/ccm-clean.sh deleted file mode 100755 index 516512327..000000000 --- a/ccm-ldn-subsite/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-subsite/debian/ccm-config.sh b/ccm-ldn-subsite/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-subsite/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-subsite/debian/ccm-disperse.sh b/ccm-ldn-subsite/debian/ccm-disperse.sh deleted file mode 100755 index f460d00c6..000000000 --- a/ccm-ldn-subsite/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-subsite/debian/ccm-install.sh b/ccm-ldn-subsite/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-subsite/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-subsite/debian/ccm-ldn-subsite.dirs b/ccm-ldn-subsite/debian/ccm-ldn-subsite.dirs deleted file mode 100755 index 84623d984..000000000 --- a/ccm-ldn-subsite/debian/ccm-ldn-subsite.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-subsite-6.3.0 diff --git a/ccm-ldn-subsite/debian/ccm-settings-run.sh b/ccm-ldn-subsite/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-subsite/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-subsite/debian/ccm-settings.sh b/ccm-ldn-subsite/debian/ccm-settings.sh deleted file mode 100755 index e57b74bc2..000000000 --- a/ccm-ldn-subsite/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-subsite -version=6.3.0 -appname=ccm-ldn-subsite -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-subsite/debian/changelog b/ccm-ldn-subsite/debian/changelog deleted file mode 100755 index acf036a87..000000000 --- a/ccm-ldn-subsite/debian/changelog +++ /dev/null @@ -1,69 +0,0 @@ -ccm-ldn-subsite (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-ldn-subsite (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-subsite (1.4.2-2) unstable; urgency=low - - * #17876 dynamichostprovider to use subsite server name for email reminder - - -- My Fri, 29 Apr 2005 07:51:45 +0000 - -ccm-ldn-subsite (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:56 +0000 - -ccm-ldn-subsite (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 12:23:29 +0000 - -ccm-ldn-subsite (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-subsite (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-subsite (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-subsite (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-subsite/debian/compat b/ccm-ldn-subsite/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-subsite/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-subsite/debian/config b/ccm-ldn-subsite/debian/config deleted file mode 100755 index 45e961cb7..000000000 --- a/ccm-ldn-subsite/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-subsite/debian/control b/ccm-ldn-subsite/debian/control deleted file mode 100755 index 75f72a3da..000000000 --- a/ccm-ldn-subsite/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-subsite -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-navigation, ccm-ldn-util -Standards-Version: 3.6.1 - -Package: ccm-ldn-subsite -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util, ccm-ldn-navigation -Description: APLAWS: Subsite application is for running multiple websites from one APLAWS server. - This package contains the Subsite application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-subsite-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-subsite - Documentation for ccm-ldn-subsite. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-subsite/debian/copyright b/ccm-ldn-subsite/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-subsite/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-subsite/debian/postinst b/ccm-ldn-subsite/debian/postinst deleted file mode 100755 index f1ed89eed..000000000 --- a/ccm-ldn-subsite/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-subsite -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-subsite/debian/postrm b/ccm-ldn-subsite/debian/postrm deleted file mode 100755 index dc8dc0eba..000000000 --- a/ccm-ldn-subsite/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-subsite -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-subsite/debian/prerm b/ccm-ldn-subsite/debian/prerm deleted file mode 100755 index b3da0396d..000000000 --- a/ccm-ldn-subsite/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-subsite -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-subsite/debian/rules b/ccm-ldn-subsite/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-subsite/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-subsite/debian/templates b/ccm-ldn-subsite/debian/templates deleted file mode 100755 index e6f198341..000000000 --- a/ccm-ldn-subsite/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-subsite -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-subsite". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-subsite". diff --git a/ccm-ldn-subsite/web/WEB-INF/web.xml-subsite.in b/ccm-ldn-subsite/doc/web.xml-subsite.in similarity index 100% rename from ccm-ldn-subsite/web/WEB-INF/web.xml-subsite.in rename to ccm-ldn-subsite/doc/web.xml-subsite.in diff --git a/ccm-ldn-terms/debian/ccm-build.sh b/ccm-ldn-terms/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-terms/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-terms/debian/ccm-clean.sh b/ccm-ldn-terms/debian/ccm-clean.sh deleted file mode 100755 index 516512327..000000000 --- a/ccm-ldn-terms/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-terms/debian/ccm-config.sh b/ccm-ldn-terms/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-terms/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-terms/debian/ccm-disperse.sh b/ccm-ldn-terms/debian/ccm-disperse.sh deleted file mode 100755 index f460d00c6..000000000 --- a/ccm-ldn-terms/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-terms/debian/ccm-install.sh b/ccm-ldn-terms/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-terms/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-terms/debian/ccm-ldn-terms.dirs b/ccm-ldn-terms/debian/ccm-ldn-terms.dirs deleted file mode 100755 index 7e3afd5a4..000000000 --- a/ccm-ldn-terms/debian/ccm-ldn-terms.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-terms-6.3.0 diff --git a/ccm-ldn-terms/debian/ccm-settings-run.sh b/ccm-ldn-terms/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-terms/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-terms/debian/ccm-settings.sh b/ccm-ldn-terms/debian/ccm-settings.sh deleted file mode 100755 index c651bed39..000000000 --- a/ccm-ldn-terms/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-terms -version=6.3.0 -appname=ccm-ldn-terms -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-terms/debian/changelog b/ccm-ldn-terms/debian/changelog deleted file mode 100755 index 9da3e9562..000000000 --- a/ccm-ldn-terms/debian/changelog +++ /dev/null @@ -1,118 +0,0 @@ -ccm-ldn-terms (6.3.0-4) unstable; urgency=low - - * Fixing previous - - -- Fabrice Retkowsky Tue, 8 Nov 2005 15:02:20 +0000 - -ccm-ldn-terms (6.3.0-3) unstable; urgency=low - - * Added domain option for DefaultAncestorsFixer - - -- Fabrice Retkowsky Tue, 8 Nov 2005 11:18:05 +0000 - -ccm-ldn-terms (6.3.0-2) unstable; urgency=low - - * Fixing upgrade script - - -- My Mon, 10 Oct 2005 14:52:52 +0000 - -ccm-ldn-terms (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-ldn-terms (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.0.3 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-terms (1.0.3-6) unstable; urgency=low - - * AbstractAssignedTerms: reordering joins to speed up query (from eg 1.5s to - 0.05s) - - -- My Tue, 27 Sep 2005 13:19:17 +0000 - -ccm-ldn-terms (1.0.3-5) unstable; urgency=low - - * 17170 - extra stuff for DAF - - -- My Thu, 11 Aug 2005 09:21:57 +0000 - -ccm-ldn-terms (1.0.3-4) unstable; urgency=low - - * 17170 - DefaultAncestorsFixer tools - - -- My Fri, 29 Jul 2005 13:34:50 +0000 - -ccm-ldn-terms (1.0.3-3) unstable; urgency=low - - * Patching RedHat's upgrade script, duh - - -- My Mon, 11 Jul 2005 07:39:10 +0000 - -ccm-ldn-terms (1.0.3-2) unstable; urgency=low - - * RedHat patch to add missing terms during upgrade - - -- My Fri, 8 Jul 2005 09:03:29 +0000 - -ccm-ldn-terms (1.0.3-1) unstable; urgency=low - - * Automatic update of version number from 1.0.2 to 1.0.3 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:56 +0000 - -ccm-ldn-terms (1.0.2-1) unstable; urgency=low - - * for release qa - - -- David Pashley Tue, 15 Feb 2005 12:31:27 +0000 - -ccm-ldn-terms (1.0.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 12:31:27 +0000 - -ccm-ldn-terms (1.0.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-terms (1.0.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-terms (1.0.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-terms (1.0.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-terms/debian/compat b/ccm-ldn-terms/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-terms/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-terms/debian/config b/ccm-ldn-terms/debian/config deleted file mode 100755 index 45e961cb7..000000000 --- a/ccm-ldn-terms/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-terms/debian/control b/ccm-ldn-terms/debian/control deleted file mode 100755 index 34ee595e2..000000000 --- a/ccm-ldn-terms/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-terms -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-util -Standards-Version: 3.6.1 - -Package: ccm-ldn-terms -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms, ccm-ldn-util -Description: APLAWS: The terms application is for loading categories. - This package contains the Terms application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-terms-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-terms - Documentation for ccm-ldn-terms. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-terms/debian/copyright b/ccm-ldn-terms/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-terms/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-terms/debian/postinst b/ccm-ldn-terms/debian/postinst deleted file mode 100755 index 52be91266..000000000 --- a/ccm-ldn-terms/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-terms -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-terms/debian/postrm b/ccm-ldn-terms/debian/postrm deleted file mode 100755 index 6f9066a05..000000000 --- a/ccm-ldn-terms/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-terms -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-terms/debian/prerm b/ccm-ldn-terms/debian/prerm deleted file mode 100755 index 8907eefa2..000000000 --- a/ccm-ldn-terms/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-terms -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-terms/debian/rules b/ccm-ldn-terms/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-terms/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-terms/debian/templates b/ccm-ldn-terms/debian/templates deleted file mode 100755 index b286e21ce..000000000 --- a/ccm-ldn-terms/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-terms -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-terms". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-terms". diff --git a/ccm-ldn-terms/web/WEB-INF/web.xml-terms.in b/ccm-ldn-terms/doc/web.xml-terms.in similarity index 100% rename from ccm-ldn-terms/web/WEB-INF/web.xml-terms.in rename to ccm-ldn-terms/doc/web.xml-terms.in diff --git a/ccm-ldn-theme/debian/ccm-build.sh b/ccm-ldn-theme/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-theme/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-theme/debian/ccm-clean.sh b/ccm-ldn-theme/debian/ccm-clean.sh deleted file mode 100755 index 516512327..000000000 --- a/ccm-ldn-theme/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-theme/debian/ccm-config.sh b/ccm-ldn-theme/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-theme/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-theme/debian/ccm-disperse.sh b/ccm-ldn-theme/debian/ccm-disperse.sh deleted file mode 100755 index f460d00c6..000000000 --- a/ccm-ldn-theme/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:16 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-theme/debian/ccm-install.sh b/ccm-ldn-theme/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-theme/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-theme/debian/ccm-ldn-theme.dirs b/ccm-ldn-theme/debian/ccm-ldn-theme.dirs deleted file mode 100755 index 7af148a8d..000000000 --- a/ccm-ldn-theme/debian/ccm-ldn-theme.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-theme-6.3.1 diff --git a/ccm-ldn-theme/debian/ccm-settings-run.sh b/ccm-ldn-theme/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-theme/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-theme/debian/ccm-settings.sh b/ccm-ldn-theme/debian/ccm-settings.sh deleted file mode 100755 index bb0918ab2..000000000 --- a/ccm-ldn-theme/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-theme -version=6.3.1 -appname=ccm-ldn-theme -appversion=6.3.1 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-theme/debian/changelog b/ccm-ldn-theme/debian/changelog deleted file mode 100755 index 62fda8798..000000000 --- a/ccm-ldn-theme/debian/changelog +++ /dev/null @@ -1,77 +0,0 @@ -ccm-ldn-theme (6.3.1-1) unstable; urgency=low - - * Automatic update of version number from 6.3.0 to 6.3.1 - - -- Runtime Collective Ltd. Fri, 30 Dec 2005 08:49:33 +0000 - -ccm-ldn-theme (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-ldn-theme (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.0.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:13 +0000 - -ccm-ldn-theme (1.0.2-1) unstable; urgency=low - - * Automatic update of version number from 1.0.1 to 1.0.2 - - -- Runtime Collective Ltd. Mon, 05 Sep 2005 15:48:22 +0000 - -ccm-ldn-theme (1.0.1-1) unstable; urgency=low - - * Automatic update of version number from 1.0.0 to 1.0.1 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:56 +0000 - -ccm-ldn-theme (1.0.0-5) unstable; urgency=low - - * Remove the build-dependancy on ccm-ldn-aplaws as it isn't required and - removes circular build dependancies. - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Mon, 31 Jan 2005 17:41:35 +0000 - -ccm-ldn-theme (1.0.0-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-theme (1.0.0-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-theme (1.0.0-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-theme (1.0.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-theme/debian/compat b/ccm-ldn-theme/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-theme/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-theme/debian/config b/ccm-ldn-theme/debian/config deleted file mode 100755 index f0f5cae91..000000000 --- a/ccm-ldn-theme/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-theme/debian/control b/ccm-ldn-theme/debian/control deleted file mode 100755 index 166b72445..000000000 --- a/ccm-ldn-theme/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-theme -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms, ccm-ldn-subsite -Standards-Version: 3.6.1 - -Package: ccm-ldn-theme -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-ldn-subsite -Description: APLAWS: Facilitates management of the look and feel of the website. Allows webdesigners to upload XSL stylesheets. - This package contains the Theme application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-theme-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-theme - Documentation for ccm-ldn-theme. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-theme/debian/copyright b/ccm-ldn-theme/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-theme/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-theme/debian/postinst b/ccm-ldn-theme/debian/postinst deleted file mode 100755 index 3265f34ea..000000000 --- a/ccm-ldn-theme/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-theme -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-theme/debian/postrm b/ccm-ldn-theme/debian/postrm deleted file mode 100755 index 02b4f2a79..000000000 --- a/ccm-ldn-theme/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-theme -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-theme/debian/prerm b/ccm-ldn-theme/debian/prerm deleted file mode 100755 index 3baf223b9..000000000 --- a/ccm-ldn-theme/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-theme -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-theme/debian/rules b/ccm-ldn-theme/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-theme/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-theme/debian/templates b/ccm-ldn-theme/debian/templates deleted file mode 100755 index 76298fc45..000000000 --- a/ccm-ldn-theme/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-theme -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.1 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-theme". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-theme". diff --git a/ccm-ldn-theme/web/WEB-INF/web.xml-theme.in b/ccm-ldn-theme/doc/web.xml-theme.in similarity index 100% rename from ccm-ldn-theme/web/WEB-INF/web.xml-theme.in rename to ccm-ldn-theme/doc/web.xml-theme.in diff --git a/ccm-ldn-util/debian/ccm-build.sh b/ccm-ldn-util/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-ldn-util/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-ldn-util/debian/ccm-clean.sh b/ccm-ldn-util/debian/ccm-clean.sh deleted file mode 100755 index 5913fc6be..000000000 --- a/ccm-ldn-util/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-ldn-util/debian/ccm-config.sh b/ccm-ldn-util/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-ldn-util/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-ldn-util/debian/ccm-disperse.sh b/ccm-ldn-util/debian/ccm-disperse.sh deleted file mode 100755 index aa4fb68b3..000000000 --- a/ccm-ldn-util/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-ldn-util/debian/ccm-install.sh b/ccm-ldn-util/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-ldn-util/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-ldn-util/debian/ccm-ldn-util.dirs b/ccm-ldn-util/debian/ccm-ldn-util.dirs deleted file mode 100755 index b1e6766b3..000000000 --- a/ccm-ldn-util/debian/ccm-ldn-util.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-ldn-util-6.3.0 diff --git a/ccm-ldn-util/debian/ccm-settings-run.sh b/ccm-ldn-util/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-ldn-util/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-ldn-util/debian/ccm-settings.sh b/ccm-ldn-util/debian/ccm-settings.sh deleted file mode 100755 index 0aa019fff..000000000 --- a/ccm-ldn-util/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-ldn-util -version=6.3.0 -appname=ccm-ldn-util -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-ldn-util/debian/changelog b/ccm-ldn-util/debian/changelog deleted file mode 100755 index 2fc73ea40..000000000 --- a/ccm-ldn-util/debian/changelog +++ /dev/null @@ -1,75 +0,0 @@ -ccm-ldn-util (6.3.0-5) unstable; urgency=low - - * Added UrlUtil.java from undp - - -- Matt Roberts Wed, 12 Apr 2006 09:52:21 +0100 - -ccm-ldn-util (6.3.0-4) unstable; urgency=low - - * New helper class from UNDP - - -- My Fri, 3 Mar 2006 11:02:12 +0000 - -ccm-ldn-util (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-ldn-util (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:14 +0000 - -ccm-ldn-util (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:56 +0000 - -ccm-ldn-util (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 09:20:53 +0000 - -ccm-ldn-util (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-ldn-util (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-ldn-util (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-ldn-util (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-ldn-util/debian/compat b/ccm-ldn-util/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-ldn-util/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-ldn-util/debian/config b/ccm-ldn-util/debian/config deleted file mode 100755 index f0f5cae91..000000000 --- a/ccm-ldn-util/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-ldn-util/debian/control b/ccm-ldn-util/debian/control deleted file mode 100755 index 2082a4abf..000000000 --- a/ccm-ldn-util/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-ldn-util -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-ldn-util -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Utilities application for various utilities. - This package contains the Util application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-ldn-util-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-ldn-util - Documentation for ccm-ldn-util. Provides the JavaDoc API documentation. diff --git a/ccm-ldn-util/debian/copyright b/ccm-ldn-util/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-ldn-util/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-ldn-util/debian/postinst b/ccm-ldn-util/debian/postinst deleted file mode 100755 index d1af834d7..000000000 --- a/ccm-ldn-util/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-ldn-util -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-util/debian/postrm b/ccm-ldn-util/debian/postrm deleted file mode 100755 index c2086e468..000000000 --- a/ccm-ldn-util/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-ldn-util -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-ldn-util/debian/prerm b/ccm-ldn-util/debian/prerm deleted file mode 100755 index 5e1c4a104..000000000 --- a/ccm-ldn-util/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-ldn-util -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-ldn-util/debian/rules b/ccm-ldn-util/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-ldn-util/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-ldn-util/debian/templates b/ccm-ldn-util/debian/templates deleted file mode 100755 index b459fef54..000000000 --- a/ccm-ldn-util/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:17 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-ldn-util -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-ldn-util". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-ldn-util". diff --git a/ccm-simplesurvey/debian/ccm-build.sh b/ccm-simplesurvey/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-simplesurvey/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-simplesurvey/debian/ccm-clean.sh b/ccm-simplesurvey/debian/ccm-clean.sh deleted file mode 100755 index efe5912f0..000000000 --- a/ccm-simplesurvey/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-simplesurvey/debian/ccm-config.sh b/ccm-simplesurvey/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-simplesurvey/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-simplesurvey/debian/ccm-disperse.sh b/ccm-simplesurvey/debian/ccm-disperse.sh deleted file mode 100755 index d9345e991..000000000 --- a/ccm-simplesurvey/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-simplesurvey/debian/ccm-install.sh b/ccm-simplesurvey/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-simplesurvey/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-simplesurvey/debian/ccm-settings-run.sh b/ccm-simplesurvey/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-simplesurvey/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-simplesurvey/debian/ccm-settings.sh b/ccm-simplesurvey/debian/ccm-settings.sh deleted file mode 100755 index ef3f6c50b..000000000 --- a/ccm-simplesurvey/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-simplesurvey -version=6.3.0 -appname=ccm-simplesurvey -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-simplesurvey/debian/ccm-simplesurvey.dirs b/ccm-simplesurvey/debian/ccm-simplesurvey.dirs deleted file mode 100755 index ebf4ba166..000000000 --- a/ccm-simplesurvey/debian/ccm-simplesurvey.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-simplesurvey-6.3.0 diff --git a/ccm-simplesurvey/debian/changelog b/ccm-simplesurvey/debian/changelog deleted file mode 100755 index e42c5c8a8..000000000 --- a/ccm-simplesurvey/debian/changelog +++ /dev/null @@ -1,63 +0,0 @@ -ccm-simplesurvey (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-simplesurvey (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.4.2 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:14 +0000 - -ccm-simplesurvey (1.4.2-1) unstable; urgency=low - - * Automatic update of version number from 1.4.1 to 1.4.2 - - -- Runtime Collective Ltd. Thu, 31 Mar 2005 11:59:57 +0000 - -ccm-simplesurvey (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 13:56:46 +0000 - -ccm-simplesurvey (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-simplesurvey (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-simplesurvey (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-simplesurvey (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-simplesurvey/debian/changelog.0 b/ccm-simplesurvey/debian/changelog.0 deleted file mode 100755 index e80178a2e..000000000 --- a/ccm-simplesurvey/debian/changelog.0 +++ /dev/null @@ -1,45 +0,0 @@ -ccm-simplesurvey (1.4.1-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Update to policy 3.6.1 - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Tue, 15 Feb 2005 13:56:46 +0000 - -ccm-simplesurvey (1.4.1-4) unstable; urgency=low - - * debian/postrm: disabled the purge operations [had some weird problems]. - * updated the debian control scripts to get the package name and version from their invocation. - - -- Berkan Eskikaya Mon, 10 May 2004 12:33:33 +0100 - -ccm-simplesurvey (1.4.1-3) unstable; urgency=low - - * debian/templates: made load-at-install and setup-database-at-install the default behaviour. - * debian/postinst: ccm_hostinit will try to use web.xml-aplaws from ccm-ldn-aplaws. - * debian/ccm-settings.sh: correct checking/setting of ORACLE_JDBC_LIB [Chris]. - * debian/templates: changed the default postgresql database and user names to "ccm01.db" and "ccm". - * debian/config: added detection of the hostname of the machine and possibly the user's email. - * major restructuring of the debian scripts: moved all utility functions to ccm-tools and made postinst, postrm, prerm and ccm-settings.sh source and use that file. - - -- Berkan Eskikaya Fri, 7 May 2004 13:04:43 +0100 - -ccm-simplesurvey (1.4.1-2) unstable; urgency=low - - * The build process now tries to automatically detect JAVA_HOME and the location of Oracle's java library. - * debian/ccm-clean.sh: only calls the ant process if build.xml exists. - * debian/{postinst,prerm,config,templates}: added debconf support - * debian/postinst: accepts 'reconfigure' and treats it as 'configure'. - * debian/postinst: added postgresql.jar to CLASSPATH; added libpgjava to the dependencies. - * debian/postinst: removed some bashisms upon recommendation from lintian. - * debian/rules: enabled dh_installdebconf. - * debian/control: made the package depend on debconf. - - -- Berkan Eskikaya Fri, 1 May 2004 15:41:43 +0100 - - -ccm-simplesurvey (1.4.1-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-simplesurvey/debian/compat b/ccm-simplesurvey/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-simplesurvey/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-simplesurvey/debian/config b/ccm-simplesurvey/debian/config deleted file mode 100755 index 0c5312931..000000000 --- a/ccm-simplesurvey/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-simplesurvey/debian/control b/ccm-simplesurvey/debian/control deleted file mode 100755 index 629c14d0b..000000000 --- a/ccm-simplesurvey/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-simplesurvey -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core, ccm-cms -Standards-Version: 3.6.1 - -Package: ccm-simplesurvey -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core, ccm-cms -Description: APLAWS: Application for creating online surveys. - This package contains the Core application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-simplesurvey-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-simplesurvey - Documentation for ccm-simplesurvey. Provides the JavaDoc API documentation. diff --git a/ccm-simplesurvey/debian/copyright b/ccm-simplesurvey/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-simplesurvey/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-simplesurvey/debian/postinst b/ccm-simplesurvey/debian/postinst deleted file mode 100755 index 1806835d9..000000000 --- a/ccm-simplesurvey/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-simplesurvey -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-simplesurvey/debian/postrm b/ccm-simplesurvey/debian/postrm deleted file mode 100755 index 40fa655ea..000000000 --- a/ccm-simplesurvey/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-simplesurvey -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-simplesurvey/debian/prerm b/ccm-simplesurvey/debian/prerm deleted file mode 100755 index 9ee2e2b1e..000000000 --- a/ccm-simplesurvey/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-simplesurvey -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-simplesurvey/debian/rules b/ccm-simplesurvey/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-simplesurvey/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-simplesurvey/debian/templates b/ccm-simplesurvey/debian/templates deleted file mode 100755 index 4d5c4e760..000000000 --- a/ccm-simplesurvey/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:18 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-simplesurvey -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-simplesurvey". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-simplesurvey". diff --git a/ccm-simplesurvey/web/WEB-INF/web.xml-simplesurvey.in b/ccm-simplesurvey/doc/web.xml-simplesurvey.in similarity index 100% rename from ccm-simplesurvey/web/WEB-INF/web.xml-simplesurvey.in rename to ccm-simplesurvey/doc/web.xml-simplesurvey.in diff --git a/ccm-user-preferences/debian/ccm-auth-http.dirs b/ccm-user-preferences/debian/ccm-auth-http.dirs deleted file mode 100755 index d57021361..000000000 --- a/ccm-user-preferences/debian/ccm-auth-http.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-user-preferences-1.4.1 diff --git a/ccm-user-preferences/debian/ccm-build.sh b/ccm-user-preferences/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-user-preferences/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-user-preferences/debian/ccm-clean.sh b/ccm-user-preferences/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-user-preferences/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-user-preferences/debian/ccm-config.sh b/ccm-user-preferences/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-user-preferences/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-user-preferences/debian/ccm-disperse.sh b/ccm-user-preferences/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-user-preferences/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-user-preferences/debian/ccm-install.sh b/ccm-user-preferences/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-user-preferences/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-user-preferences/debian/ccm-settings-run.sh b/ccm-user-preferences/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-user-preferences/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-user-preferences/debian/ccm-settings.sh b/ccm-user-preferences/debian/ccm-settings.sh deleted file mode 100755 index f1e8069c1..000000000 --- a/ccm-user-preferences/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-user-preferences -version=6.3.0 -appname=ccm-user-preferences -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-user-preferences/debian/ccm-user-preferences.dirs b/ccm-user-preferences/debian/ccm-user-preferences.dirs deleted file mode 100755 index 00d4b8565..000000000 --- a/ccm-user-preferences/debian/ccm-user-preferences.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-user-preferences-6.3.0 diff --git a/ccm-user-preferences/debian/changelog b/ccm-user-preferences/debian/changelog deleted file mode 100755 index b8e991fc9..000000000 --- a/ccm-user-preferences/debian/changelog +++ /dev/null @@ -1,24 +0,0 @@ -ccm-user-preferences (6.3.0-1) unstable; urgency=low - - * Automatic update of version number from 6.2.0 to 6.3.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:02 +0000 - -ccm-user-preferences (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 1.0.1 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:14 +0000 - -ccm-user-preferences (1.0.1-2) unstable; urgency=low - - * Add ccm-devel to the build-dependancies - * Add ccm-scripts to the build-dependancies - - -- David Pashley Thu, 28 Apr 2005 11:19:30 +0100 - -ccm-user-preferences (1.0.1-1) unstable; urgency=low - - * Initial release. - - -- Fabrice Retkowsky Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-user-preferences/debian/compat b/ccm-user-preferences/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-user-preferences/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-user-preferences/debian/config b/ccm-user-preferences/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-user-preferences/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-user-preferences/debian/control b/ccm-user-preferences/debian/control deleted file mode 100755 index aa32257af..000000000 --- a/ccm-user-preferences/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-user-preferences -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-core, ccm-devel, ccm-scripts -Standards-Version: 3.6.1 - -Package: ccm-user-preferences -Architecture: all -Depends: debconf, java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-core -Description: APLAWS: NTLM authentication module. - This package contains the Auth HTTP application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-user-preferences-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-user-preferences - Documentation for ccm-user-preferences. Provides the JavaDoc API documentation. diff --git a/ccm-user-preferences/debian/copyright b/ccm-user-preferences/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-user-preferences/debian/copyright +++ /dev/null @@ -1,15 +0,0 @@ -This package was debianized by Berkan Eskikaya on -Tue, 13 Apr 2004 19:03:14 +0100. - -It was downloaded from http://aplaws.sourceforge.net/ - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-user-preferences/debian/postinst b/ccm-user-preferences/debian/postinst deleted file mode 100755 index cbcb23916..000000000 --- a/ccm-user-preferences/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-user-preferences -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-user-preferences/debian/postrm b/ccm-user-preferences/debian/postrm deleted file mode 100755 index 6ea2b3e78..000000000 --- a/ccm-user-preferences/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-user-preferences -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-user-preferences/debian/prerm b/ccm-user-preferences/debian/prerm deleted file mode 100755 index fb6ad9997..000000000 --- a/ccm-user-preferences/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-user-preferences -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-user-preferences/debian/rules b/ccm-user-preferences/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-user-preferences/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-user-preferences/debian/templates b/ccm-user-preferences/debian/templates deleted file mode 100755 index a2d30a642..000000000 --- a/ccm-user-preferences/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-user-preferences -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-user-preferences". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-user-preferences". diff --git a/ccm-weblog/debian/ccm-build.sh b/ccm-weblog/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-weblog/debian/ccm-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-build.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -# for eg Oracle jar -CLASSPATH=./lib/:$CLASSPATH -$ANT build-${name} diff --git a/ccm-weblog/debian/ccm-clean.sh b/ccm-weblog/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-weblog/debian/ccm-clean.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-clean.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -[ -f build.xml ] && $ANT clean-${appname} - -rm -rf build build.xml ccm.classpath - -# ccm-disperse.sh creates the .install files automatically, so let's clean them too. - -rm -f ${appname}.install ${appname}-doc.install diff --git a/ccm-weblog/debian/ccm-config.sh b/ccm-weblog/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-weblog/debian/ccm-config.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-config.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -if [ ! -L $name ]; then - ln -s . $name -fi -ccm-create-projectxml.pl > project.xml -ccm-configure.sh diff --git a/ccm-weblog/debian/ccm-disperse.sh b/ccm-weblog/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-weblog/debian/ccm-disperse.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-disperse.sh,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -. debian/ccm-settings.sh - -SRCDIR="$1" -[ "x$SRCDIR" != "x" ] || exit 1 - -# automatically generate the .install file lists for dh_install: - -(cd $SRCDIR && find . -type f \ - | grep -v DEBIAN \ - | grep -v var/www/html \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}.install - -(cd $SRCDIR && find . -type f -path './var/www/html/*' \ - | sed -e 's/^\.\/*\(.*\)/\1/' -e '/./,/^$/!d') > debian/${name}-doc.install - -# for some reason, dh_install doesn't work properly; let's disperse the files ourselves: - -for pkg in ${name} ${name}-doc; do - # skip this package if mentioned in CCM_DEBIAN_NO_PACKAGES - [ `echo $CCM_DEBIAN_NO_PACKAGES | tr ' ' '\n' | grep -c "^${pkg}$"` -eq 1 ] && continue || true - - # this should exist [due to dh_installdocs, dh_installchangelog], but just in case... - mkdir -p debian/$pkg - - [ -e debian/${pkg}.install ] && \ - echo -n "Dispersing files to debian/$pkg/ ... " && \ - for file in `cat debian/${pkg}.install`; do - dir=`dirname $file` - mkdir -p debian/$pkg/$dir - cp $SRCDIR/$file debian/$pkg/$dir/ - done - echo "done." -done diff --git a/ccm-weblog/debian/ccm-install.sh b/ccm-weblog/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-weblog/debian/ccm-install.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-install.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -. debian/ccm-settings.sh - -DESTDIR="$1" -[ "xDESTDIR" != "x" ] || exit 1 - -rm -rf $DESTDIR -mkdir -p $DESTDIR -mkdir -p $DESTDIR${confdir} -mkdir -p $DESTDIR/var/www/html/${name}-${version} - -ANT_OPTS="-Dapps.${name}.version=${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.conf.dir=$DESTDIR${confdir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.lib.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.private.lib.dir=$DESTDIR${sharedjardir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.webapp.dir=$DESTDIR${webappdir}/${name}-${version}" -ANT_OPTS="$ANT_OPTS -Ddeploy.system.jars.dir=$DESTDIR${sharedjardir}" -ANT_OPTS="$ANT_OPTS -Ddeploy.api.dir.${appname}=$DESTDIR/var/www/html/${name}-${version}/api" -ANT_OPTS="$ANT_OPTS -Ddeploy.shared.classes.dir=$DESTDIR/tmp/${name}-${version}" -export ANT_OPTS - -$ANT deploy-jar-classes-${appname} -$ANT deploy-${appname} - -rm -rf "$DESTDIR/tmp" - - -# only generate and deploy javadocs if we didn't specify otherwise in CCM_DEBIAN_NO_JAVADOC - -GENERATE_JAVADOC=true -if [ `echo $CCM_DEBIAN_NO_JAVADOC | tr ' ' '\n' | grep -c "^${name}-doc$"` -eq 1 ]; then - GENERATE_JAVADOC=false -fi - -if [ -d ${appname}/src ]; then - $ANT deploy-jar-classes-${appname} - [ "$GENERATE_JAVADOC" == "true" ] && $ANT deploy-javadoc-${appname} || true -fi diff --git a/ccm-weblog/debian/ccm-settings-run.sh b/ccm-weblog/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-weblog/debian/ccm-settings-run.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# say which app to compile, amongst those specified in the project.xml -export CCM_APP=$name - -# do some checks - -check_JAVA_HOME - -if [ "$name" = "ccm-core" ]; then - check_ORACLE_JDBC_LIB -fi - - -# set the environment - -for file in `echo /etc/profile.d/ccm-{tools,devel,scripts}.sh`; do - . $file -done - -cd .. -. $CCM_SCRIPTS_HOME/bin/env-conf.sh ${appname} > /dev/null -cd - -export CCM_HOME=`pwd` - -if which classic-ant > /dev/null 2>&1; then - ANT=classic-ant -else - ANT=ant -fi - - -# perhaps we don't like to build some packages -- get them from DH_OPTIONS - -export CCM_DEBIAN_NO_PACKAGES=`echo $DH_OPTIONS | tr -s ' ' '\n' | grep -E '(-N|--no-package=)' | xargs | sed -re 's/(-N|--no-package)//g'` - -# for now, assume that if we don't want to build some packages then we don't -# want to generate javadocs for them either - -export CCM_DEBIAN_NO_JAVADOC="$CCM_DEBIAN_NO_JAVADOC $CCM_DEBIAN_NO_PACKAGES" diff --git a/ccm-weblog/debian/ccm-settings.sh b/ccm-weblog/debian/ccm-settings.sh deleted file mode 100755 index 4d143e986..000000000 --- a/ccm-weblog/debian/ccm-settings.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: ccm-settings.sh,v 1.1.1.1 2004/11/12 09:29:59 fabrice Exp $ - -# source the shell library [for the check_* functions] -# FIXME: ugly-looking hack. -orig_DEBIAN_HAS_FRONTEND=$DEBIAN_HAS_FRONTEND -DEBIAN_HAS_FRONTEND=1 -. /usr/share/ccm-tools/lib/shellmodule -DEBIAN_HAS_FRONTEND=$orig_DEBIAN_HAS_FRONTEND - - -# variables we use [especially in ccm-install.sh] - -name=ccm-weblog -version=6.3.0 -appname=ccm-weblog -appversion=6.3.0 -confdir="/etc/ccm/conf" -sharedjardir="/usr/share/java" -webappdir="/usr/share/java/webapps" -ccmclasspathfile="ccm/ccm.classpath" -ccmwebappfile="ccm/ccm.webapps" - -. debian/ccm-settings-run.sh diff --git a/ccm-weblog/debian/ccm-weblog-doc.install b/ccm-weblog/debian/ccm-weblog-doc.install deleted file mode 100755 index dc42dc551..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc.install +++ /dev/null @@ -1,65 +0,0 @@ -var/www/html/ccm-weblog-6.3.0/api/overview-summary.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-frame.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetailPane.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsListTableModel.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-tree.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogEditForm.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortlet.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortletEditor.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsListTableModel.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPage.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsList.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetailPane.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsList.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsListTableModel.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentEditForm.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetail.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogView.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-use.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsList.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogEditForm.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetail.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogView.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsListTableModel.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentEditForm.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsList.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-summary.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortletEditor.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortlet.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPage.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogDispatcher.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogApplication.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogComment.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLog.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/Initializer.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogConstants.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/Initializer.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogConstants.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-frame.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLog.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-use.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogDispatcher.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogApplication.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/class-use/GlobalizationUtil.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/GlobalizationUtil.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-frame.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-tree.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-use.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-summary.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-summary.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogComment.html -var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-tree.html -var/www/html/ccm-weblog-6.3.0/api/resources/inherit.gif -var/www/html/ccm-weblog-6.3.0/api/allclasses-frame.html -var/www/html/ccm-weblog-6.3.0/api/deprecated-list.html -var/www/html/ccm-weblog-6.3.0/api/serialized-form.html -var/www/html/ccm-weblog-6.3.0/api/stylesheet.css -var/www/html/ccm-weblog-6.3.0/api/package-list -var/www/html/ccm-weblog-6.3.0/api/constant-values.html -var/www/html/ccm-weblog-6.3.0/api/allclasses-noframe.html -var/www/html/ccm-weblog-6.3.0/api/overview-tree.html -var/www/html/ccm-weblog-6.3.0/api/index-all.html -var/www/html/ccm-weblog-6.3.0/api/help-doc.html -var/www/html/ccm-weblog-6.3.0/api/overview-frame.html -var/www/html/ccm-weblog-6.3.0/api/index.html -var/www/html/ccm-weblog-6.3.0/api/packages.html diff --git a/ccm-weblog/debian/ccm-weblog-doc/DEBIAN/control b/ccm-weblog/debian/ccm-weblog-doc/DEBIAN/control deleted file mode 100755 index 669bed895..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-weblog-doc -Version: 6.3.0-1 -Section: contrib/web -Priority: optional -Architecture: all -Depends: ccm-tools -Installed-Size: 912 -Maintainer: Runtime Packaging -Source: ccm-weblog -Description: Documentation for ccm-weblog - Documentation for ccm-weblog. Provides the JavaDoc API documentation. diff --git a/ccm-weblog/debian/ccm-weblog-doc/DEBIAN/md5sums b/ccm-weblog/debian/ccm-weblog-doc/DEBIAN/md5sums deleted file mode 100755 index 865cc4d12..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/DEBIAN/md5sums +++ /dev/null @@ -1,67 +0,0 @@ -e946b3ab43afc6c3e8297ff807efacf4 usr/share/doc/ccm-weblog-doc/copyright -6d2c1833d9ca19ff873fd07c8b8f1bfd usr/share/doc/ccm-weblog-doc/changelog.Debian.gz -ca48bfa96eed6a0d4a96d3198519b603 var/www/html/ccm-weblog-6.3.0/api/overview-summary.html -d7238daabe955e711dc82443ac5619d9 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-frame.html -dfcf78551e5a612e3e8d852d06fc6083 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetailPane.html -87691679184626f3eef6371d63d44b47 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsListTableModel.html -f8f7cbb8c2579a9cdfe54f92d1603077 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-tree.html -26fbdfc7134050789c28a92084f8df37 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogEditForm.html -2b3b2267334f0b49c5d9c1a3b0d81674 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortlet.html -27158b583dc3e202cd81832aa1ba998d var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortletEditor.html -69ab4e276e173638949bae6ea38d1c8d var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsListTableModel.html -1e5c77b509fa2940cd2a9f7c7064d12e var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPage.html -f9e69215cca26ab9bf9a7ae547395381 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsList.html -993f1bee661568702f2db398a9b9c1bb var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetailPane.html -d2ddca4d4489e305c96711e7cf2fd86d var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsList.html -6e1a5b060481c03646801757d74b5b4c var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsListTableModel.html -9efd8db7fb303cf0316623d5ec50b6a6 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentEditForm.html -a0b31c0bdbecabfe58fed63bcbdaebfb var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetail.html -916ac65fb6f1927f97a41a82166bc49b var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogView.html -e8656d2516ce16157b1967849c71bad3 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-use.html -afed627f7f9a1d863b9d8a4a4da9066c var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsList.html -467122d8fc797b7371601c2ef263eed7 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogEditForm.html -24359a3b47b584618d54e64c86b6aa86 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetail.html -550eb5900c954436ce7a98eb7e5a34cc var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogView.html -69a5eab5205474ffafbba0a46d4723c6 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsListTableModel.html -5810af56fc4a73ce2190d1044d028ec4 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentEditForm.html -ca8808dfecf475eb8fc70d0003e0e0aa var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsList.html -c540dbfc8031f965b9bfeaf2fd581511 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-summary.html -5b63bffbb6e4050c84ffe8f7d0ca553b var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortletEditor.html -06d05e3b08ff1b800098878096c81743 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortlet.html -f77479902acf5b2f41e664a77b0ec929 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPage.html -bce090a99d69881247358d3cd0400eaf var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogDispatcher.html -eefbedfe48d1f4c08cd4e0b468f8debb var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogApplication.html -db6c3f9052cdedaf062f0c0023fcde69 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogComment.html -9efd137497092638d851553c7ebc4e54 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLog.html -67ad05444152807940557ea5b37d5782 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/Initializer.html -887722e275fac28490a48675f4ba5ef9 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogConstants.html -0170c6702a942db76a738074819d4c22 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/Initializer.html -16a206663c43c38bc04051c2f01b2140 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogConstants.html -2a03fac8f8b99f70a49aff9e337e93f6 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-frame.html -0a3a1e51e3a7d7ad10b3c94100b4ad63 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLog.html -7713a27bc9e497c6e3698ad99946b5f7 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-use.html -9a273bccb04f755fa24216fff5bbac4d var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogDispatcher.html -6273ed956a5b7df4fac9810f394db974 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogApplication.html -7161cfc92acdf38b8ac85f0a7c269a15 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/class-use/GlobalizationUtil.html -117a35654325d01e7dfb2316ca16b912 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/GlobalizationUtil.html -a8d5da11af2a88fe62194333bdc92b53 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-frame.html -cb593eed5621df06e661badd1a252d53 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-tree.html -1abd3fc5ddf2bd32462975b75f804340 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-use.html -c7d68c636da845f9b5db61b2f26dc0a7 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-summary.html -e73f420a973688cea372f5988ba0c60c var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-summary.html -7ebd3a7188ec9a0b6694dc024e9a5782 var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogComment.html -364094dff4d4240f46fd0d93ad9a543c var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-tree.html -220f4eda0bd49915699315f18b8b03cf var/www/html/ccm-weblog-6.3.0/api/resources/inherit.gif -0e58cc485d5446972a1dfee6f8be98ee var/www/html/ccm-weblog-6.3.0/api/allclasses-frame.html -a8f7f42d68f18b4109df2eda0cc5576c var/www/html/ccm-weblog-6.3.0/api/deprecated-list.html -a8c967a70674fe064562b1641c00ca64 var/www/html/ccm-weblog-6.3.0/api/serialized-form.html -8cc88314fce0cc52e57f9ccb2cb8436e var/www/html/ccm-weblog-6.3.0/api/stylesheet.css -6db4b7c41cdb446fce4936eab6d05280 var/www/html/ccm-weblog-6.3.0/api/package-list -e262ca7addb742a4bea0d385479556f1 var/www/html/ccm-weblog-6.3.0/api/constant-values.html -7956fa9706d42a76e64eee312a0492df var/www/html/ccm-weblog-6.3.0/api/allclasses-noframe.html -7d2f7ace6610d252a21ff3b284ef8268 var/www/html/ccm-weblog-6.3.0/api/overview-tree.html -94c185f8467111261e568328772b9af9 var/www/html/ccm-weblog-6.3.0/api/index-all.html -c5f2958aff746474a0b74a388a50c18b var/www/html/ccm-weblog-6.3.0/api/help-doc.html -64f93312bde5242f23821ca39a9d69a4 var/www/html/ccm-weblog-6.3.0/api/overview-frame.html -ce974c312de4a4a75c25b9611e0a1f87 var/www/html/ccm-weblog-6.3.0/api/index.html -d7da8f44fcad1c7897e2a900157a0f06 var/www/html/ccm-weblog-6.3.0/api/packages.html diff --git a/ccm-weblog/debian/ccm-weblog-doc/usr/share/doc/ccm-weblog-doc/changelog.Debian.gz b/ccm-weblog/debian/ccm-weblog-doc/usr/share/doc/ccm-weblog-doc/changelog.Debian.gz deleted file mode 100755 index 41775f26a..000000000 Binary files a/ccm-weblog/debian/ccm-weblog-doc/usr/share/doc/ccm-weblog-doc/changelog.Debian.gz and /dev/null differ diff --git a/ccm-weblog/debian/ccm-weblog-doc/usr/share/doc/ccm-weblog-doc/copyright b/ccm-weblog/debian/ccm-weblog-doc/usr/share/doc/ccm-weblog-doc/copyright deleted file mode 100755 index a6d4b8bf0..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/usr/share/doc/ccm-weblog-doc/copyright +++ /dev/null @@ -1,14 +0,0 @@ -This package was debianized by Matt Roberts on -Wed, 11 Jan 2006 13:32:14 +0100. - - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/allclasses-frame.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/allclasses-frame.html deleted file mode 100755 index 57c126de5..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/allclasses-frame.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - -All Classes (Weblog API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
GlobalizationUtil -
-Initializer -
-WebLog -
-WebLogApplication -
-WebLogComment -
-WebLogCommentEditForm -
-WebLogCommentsList -
-WebLogCommentsListTableModel -
-WebLogConstants -
-WebLogDetail -
-WebLogDetailPane -
-WebLogDispatcher -
-WebLogEditForm -
-WebLogPage -
-WebLogPortlet -
-WebLogPortletEditor -
-WebLogView -
-WebLogsList -
-WebLogsListTableModel -
-
- - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/allclasses-noframe.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/allclasses-noframe.html deleted file mode 100755 index b0dd0ecde..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/allclasses-noframe.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - -All Classes (Weblog API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
GlobalizationUtil -
-Initializer -
-WebLog -
-WebLogApplication -
-WebLogComment -
-WebLogCommentEditForm -
-WebLogCommentsList -
-WebLogCommentsListTableModel -
-WebLogConstants -
-WebLogDetail -
-WebLogDetailPane -
-WebLogDispatcher -
-WebLogEditForm -
-WebLogPage -
-WebLogPortlet -
-WebLogPortletEditor -
-WebLogView -
-WebLogsList -
-WebLogsListTableModel -
-
- - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/constant-values.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/constant-values.html deleted file mode 100755 index 352d13ff8..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/constant-values.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - -Constant Field Values (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Constant Field Values

-
-
-Contents - - - - - - -
-org.undp.*
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
org.undp.weblog.WebLog
-public static final StringPARAM_APPLICATION"webLogApp"
-public static final StringPARAM_BODY"body"
-public static final StringPARAM_LEAD"lead"
-public static final StringPARAM_MODIFIED"modified"
-public static final StringPARAM_OWNER"owner"
-public static final StringPARAM_TITLE"title"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
org.undp.weblog.WebLogComment
-public static final StringPARAM_COMMENT"comment"
-public static final StringPARAM_MODIFIED"modified"
-public static final StringPARAM_OWNER"owner"
-public static final StringPARAM_WEBLOG"webLog"
- -

- -

- - - - - - - - - - - - -
org.undp.weblog.WebLogConstants
-public static final StringPARAM_WEBLOG_DETAIL_ID"wld_id"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
org.undp.weblog.ui.WebLogPage
-public static final StringBODY_ELEMENT"weblog:body"
-public static final StringFOOTER_ELEMENT"weblog:footer"
-public static final StringHEADER_ELEMENT"weblog:header"
-public static final StringXML_NS"http://www.undp.org/weblog/1.0"
- -

- -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/deprecated-list.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/deprecated-list.html deleted file mode 100755 index ea98fa69e..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/deprecated-list.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -Deprecated List (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Deprecated API

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/help-doc.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/help-doc.html deleted file mode 100755 index 293f346c9..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/help-doc.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -API Help (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-How This API Document Is Organized

-
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.

-Overview

-
- -

-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

-

-Package

-
- -

-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:

    -
  • Interfaces (italic)
  • Classes
  • Exceptions
  • Errors
-
-

-Class/Interface

-
- -

-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
  • Class inheritance diagram
  • Direct Subclasses
  • All Known Subinterfaces
  • All Known Implementing Classes
  • Class/interface declaration
  • Class/interface description -

    -

  • Nested Class Summary
  • Field Summary
  • Constructor Summary
  • Method Summary -

    -

  • Field Detail
  • Constructor Detail
  • Method Detail
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-

-Use

-
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-

-Tree (Class Hierarchy)

-
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
    -
  • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
  • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-

-Deprecated API

-
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-

-Index

-
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-

-Prev/Next

-These links take you to the next or previous class, interface, package, or related page.

-Frames/No Frames

-These links show and hide the HTML frames. All pages are available with or without frames. -

-

-Serialized Form

-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. -

- - -This help file applies to API documentation generated using the standard doclet. - -
-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/index-all.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/index-all.html deleted file mode 100755 index ce68873b5..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/index-all.html +++ /dev/null @@ -1,588 +0,0 @@ - - - - - - -Index (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -A B C D F G H I L N O P S V W X
-

-A

-
-
addWidgets() - -Method in class org.undp.weblog.ui.WebLogPortletEditor -
  -
afterSave() - -Method in class org.undp.weblog.WebLog -
  -
afterSave() - -Method in class org.undp.weblog.WebLogApplication -
Overrides the superclass adding some permissions. -
-
-

-B

-
-
BASE_DATA_OBJECT_TYPE - -Static variable in class org.undp.weblog.WebLog -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class org.undp.weblog.WebLogApplication -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class org.undp.weblog.WebLogComment -
  -
BASE_DATA_OBJECT_TYPE - -Static variable in class org.undp.weblog.ui.WebLogPortlet -
  -
BODY_ELEMENT - -Static variable in class org.undp.weblog.ui.WebLogPage -
  -
beforeDelete() - -Method in class org.undp.weblog.WebLog -
  -
beforeSave() - -Method in class org.undp.weblog.WebLog -
  -
beforeSave() - -Method in class org.undp.weblog.WebLogComment -
  -
-
-

-C

-
-
canUserAdminApplication() - -Method in class org.undp.weblog.ui.WebLogView -
  -
canUserEditApplication() - -Method in class org.undp.weblog.ui.WebLogView -
  -
cellSelected(TableActionEvent) - -Method in class org.undp.weblog.ui.WebLogCommentsList -
  -
cellSelected(TableActionEvent) - -Method in class org.undp.weblog.ui.WebLogsList -
  -
create(String, String, Application) - -Static method in class org.undp.weblog.WebLogApplication -
This method should be used to create a new WebLogApplication object - everywhere except in the constructor of a subclass of WebLog. -
-
-

-D

-
-
dateTimeFormat - -Static variable in interface org.undp.weblog.WebLogConstants -
  -
displayWebLogCommentCreateForm(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
displayWebLogCommentEditForm(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
displayWebLogCreateForm(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
displayWebLogDetail(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
displayWebLogEditForm(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
displayWebLogEditForm(PageState, boolean) - -Method in class org.undp.weblog.ui.WebLogView -
  -
displayWebLogsList(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
doGetPortletRenderer() - -Method in class org.undp.weblog.ui.WebLogPortlet -
  -
-
-

-F

-
-
FOOTER_ELEMENT - -Static variable in class org.undp.weblog.ui.WebLogPage -
  -
-
-

-G

-
-
GlobalizationUtil - class org.undp.weblog.util.GlobalizationUtil.
 
GlobalizationUtil() - -Constructor for class org.undp.weblog.util.GlobalizationUtil -
  -
generateXML(PageState, Element) - -Method in class org.undp.weblog.ui.WebLogDetailPane -
  -
generateXML(PageState, Element) - -Method in class org.undp.weblog.ui.WebLogView -
  -
getApplication() - -Method in class org.undp.weblog.WebLog -
  -
getBaseDataObjectType() - -Method in class org.undp.weblog.WebLog -
  -
getBaseDataObjectType() - -Method in class org.undp.weblog.WebLogApplication -
  -
getBaseDataObjectType() - -Method in class org.undp.weblog.WebLogComment -
  -
getBaseDataObjectType() - -Method in class org.undp.weblog.ui.WebLogPortlet -
  -
getBody() - -Method in class org.undp.weblog.WebLog -
  -
getColumnCount() - -Method in class org.undp.weblog.ui.WebLogCommentsListTableModel -
  -
getColumnCount() - -Method in class org.undp.weblog.ui.WebLogsListTableModel -
  -
getComment() - -Method in class org.undp.weblog.WebLogComment -
  -
getComments() - -Method in class org.undp.weblog.WebLog -
  -
getElementAt(int) - -Method in class org.undp.weblog.ui.WebLogCommentsListTableModel -
  -
getElementAt(int) - -Method in class org.undp.weblog.ui.WebLogsListTableModel -
  -
getEntityID(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
getEntityIDParam() - -Method in class org.undp.weblog.ui.WebLogView -
  -
getKeyAt(int) - -Method in class org.undp.weblog.ui.WebLogCommentsListTableModel -
  -
getKeyAt(int) - -Method in class org.undp.weblog.ui.WebLogsListTableModel -
  -
getLead() - -Method in class org.undp.weblog.WebLog -
  -
getModified() - -Method in class org.undp.weblog.WebLog -
  -
getModified() - -Method in class org.undp.weblog.WebLogComment -
  -
getOwner() - -Method in class org.undp.weblog.WebLog -
  -
getOwner() - -Method in class org.undp.weblog.WebLogComment -
  -
getParent() - -Method in class org.undp.weblog.ui.WebLogEditForm -
  -
getParentID(PageState) - -Method in class org.undp.weblog.ui.WebLogView -
  -
getParentIDParam() - -Method in class org.undp.weblog.ui.WebLogView -
  -
getTitle() - -Method in class org.undp.weblog.WebLog -
  -
getWebLog() - -Method in class org.undp.weblog.WebLogComment -
  -
globalize(String) - -Static method in class org.undp.weblog.util.GlobalizationUtil -
  -
globalize(String, Object[]) - -Static method in class org.undp.weblog.util.GlobalizationUtil -
  -
-
-

-H

-
-
HEADERS - -Static variable in class org.undp.weblog.ui.WebLogCommentsList -
  -
HEADERS - -Static variable in class org.undp.weblog.ui.WebLogsList -
  -
HEADERS_ACTION - -Static variable in class org.undp.weblog.ui.WebLogsList -
  -
HEADER_ELEMENT - -Static variable in class org.undp.weblog.ui.WebLogPage -
  -
headSelected(TableActionEvent) - -Method in class org.undp.weblog.ui.WebLogCommentsList -
  -
headSelected(TableActionEvent) - -Method in class org.undp.weblog.ui.WebLogsList -
  -
-
-

-I

-
-
Initializer - class org.undp.weblog.Initializer.
 
Initializer() - -Constructor for class org.undp.weblog.Initializer -
  -
init(DomainInitEvent) - -Method in class org.undp.weblog.Initializer -
  -
init(FormSectionEvent) - -Method in class org.undp.weblog.ui.WebLogCommentEditForm -
  -
init(FormSectionEvent) - -Method in class org.undp.weblog.ui.WebLogEditForm -
  -
initWidgets(PageState, Portlet) - -Method in class org.undp.weblog.ui.WebLogPortletEditor -
  -
-
-

-L

-
-
localize(String) - -Static method in class org.undp.weblog.util.GlobalizationUtil -
  -
localize(String, Object[]) - -Static method in class org.undp.weblog.util.GlobalizationUtil -
  -
-
-

-N

-
-
nextRow() - -Method in class org.undp.weblog.ui.WebLogCommentsListTableModel -
  -
nextRow() - -Method in class org.undp.weblog.ui.WebLogsListTableModel -
  -
-
-

-O

-
-
org.undp.weblog - package org.undp.weblog
 
org.undp.weblog.ui - package org.undp.weblog.ui
 
org.undp.weblog.util - package org.undp.weblog.util
 
-
-

-P

-
-
PARAM_APPLICATION - -Static variable in class org.undp.weblog.WebLog -
  -
PARAM_BODY - -Static variable in class org.undp.weblog.WebLog -
  -
PARAM_COMMENT - -Static variable in class org.undp.weblog.WebLogComment -
  -
PARAM_LEAD - -Static variable in class org.undp.weblog.WebLog -
  -
PARAM_MODIFIED - -Static variable in class org.undp.weblog.WebLog -
  -
PARAM_MODIFIED - -Static variable in class org.undp.weblog.WebLogComment -
  -
PARAM_OWNER - -Static variable in class org.undp.weblog.WebLog -
  -
PARAM_OWNER - -Static variable in class org.undp.weblog.WebLogComment -
  -
PARAM_TITLE - -Static variable in class org.undp.weblog.WebLog -
  -
PARAM_WEBLOG - -Static variable in class org.undp.weblog.WebLogComment -
  -
PARAM_WEBLOG_DETAIL_ID - -Static variable in interface org.undp.weblog.WebLogConstants -
  -
process(FormSectionEvent) - -Method in class org.undp.weblog.ui.WebLogCommentEditForm -
  -
process(FormSectionEvent) - -Method in class org.undp.weblog.ui.WebLogEditForm -
  -
processBack(PageState) - -Method in class org.undp.weblog.ui.WebLogCommentEditForm -
  -
processBack(PageState) - -Method in class org.undp.weblog.ui.WebLogEditForm -
  -
processWidgets(PageState, Portlet) - -Method in class org.undp.weblog.ui.WebLogPortletEditor -
  -
-
-

-S

-
-
setApplication(WebLogApplication) - -Method in class org.undp.weblog.WebLog -
  -
setBody(String) - -Method in class org.undp.weblog.WebLog -
  -
setComment(String) - -Method in class org.undp.weblog.WebLogComment -
  -
setEntityID(PageState, BigDecimal) - -Method in class org.undp.weblog.ui.WebLogView -
  -
setLead(String) - -Method in class org.undp.weblog.WebLog -
  -
setOwner(User) - -Method in class org.undp.weblog.WebLog -
  -
setOwner(User) - -Method in class org.undp.weblog.WebLogComment -
  -
setParentID(PageState, BigDecimal) - -Method in class org.undp.weblog.ui.WebLogView -
  -
setTitle(String) - -Method in class org.undp.weblog.WebLog -
  -
setWebLog(WebLog) - -Method in class org.undp.weblog.WebLogComment -
  -
-
-

-V

-
-
validate(FormSectionEvent) - -Method in class org.undp.weblog.ui.WebLogCommentEditForm -
  -
validate(FormSectionEvent) - -Method in class org.undp.weblog.ui.WebLogEditForm -
  -
validateWidgets(PageState, Portlet) - -Method in class org.undp.weblog.ui.WebLogPortletEditor -
  -
-
-

-W

-
-
WebLog - class org.undp.weblog.WebLog.
 
WebLog() - -Constructor for class org.undp.weblog.WebLog -
  -
WebLog(DataObject) - -Constructor for class org.undp.weblog.WebLog -
  -
WebLog(BigDecimal) - -Constructor for class org.undp.weblog.WebLog -
  -
WebLogApplication - class org.undp.weblog.WebLogApplication.
 
WebLogApplication(DataObject) - -Constructor for class org.undp.weblog.WebLogApplication -
  -
WebLogApplication(OID) - -Constructor for class org.undp.weblog.WebLogApplication -
  -
WebLogApplication(BigDecimal) - -Constructor for class org.undp.weblog.WebLogApplication -
  -
WebLogComment - class org.undp.weblog.WebLogComment.
 
WebLogComment() - -Constructor for class org.undp.weblog.WebLogComment -
  -
WebLogComment(DataObject) - -Constructor for class org.undp.weblog.WebLogComment -
  -
WebLogComment(BigDecimal) - -Constructor for class org.undp.weblog.WebLogComment -
  -
WebLogCommentEditForm - class org.undp.weblog.ui.WebLogCommentEditForm.
 
WebLogCommentEditForm(WebLogView, boolean) - -Constructor for class org.undp.weblog.ui.WebLogCommentEditForm -
  -
WebLogCommentsList - class org.undp.weblog.ui.WebLogCommentsList.
 
WebLogCommentsList(WebLogView, RequestLocal) - -Constructor for class org.undp.weblog.ui.WebLogCommentsList -
  -
WebLogCommentsListTableModel - class org.undp.weblog.ui.WebLogCommentsListTableModel.
 
WebLogCommentsListTableModel(WebLog) - -Constructor for class org.undp.weblog.ui.WebLogCommentsListTableModel -
  -
WebLogConstants - interface org.undp.weblog.WebLogConstants.
 
WebLogDetail - class org.undp.weblog.ui.WebLogDetail.
 
WebLogDetail(RequestLocal) - -Constructor for class org.undp.weblog.ui.WebLogDetail -
  -
WebLogDetailPane - class org.undp.weblog.ui.WebLogDetailPane.
 
WebLogDetailPane(WebLogView) - -Constructor for class org.undp.weblog.ui.WebLogDetailPane -
  -
WebLogDispatcher - class org.undp.weblog.WebLogDispatcher.
 
WebLogDispatcher() - -Constructor for class org.undp.weblog.WebLogDispatcher -
  -
WebLogEditForm - class org.undp.weblog.ui.WebLogEditForm.
 
WebLogEditForm(WebLogView, boolean) - -Constructor for class org.undp.weblog.ui.WebLogEditForm -
  -
WebLogPage - class org.undp.weblog.ui.WebLogPage.
 
WebLogPage() - -Constructor for class org.undp.weblog.ui.WebLogPage -
  -
WebLogPortlet - class org.undp.weblog.ui.WebLogPortlet.
 
WebLogPortlet(DataObject) - -Constructor for class org.undp.weblog.ui.WebLogPortlet -
  -
WebLogPortletEditor - class org.undp.weblog.ui.WebLogPortletEditor.
 
WebLogPortletEditor(ResourceType, RequestLocal) - -Constructor for class org.undp.weblog.ui.WebLogPortletEditor -
  -
WebLogPortletEditor(RequestLocal) - -Constructor for class org.undp.weblog.ui.WebLogPortletEditor -
  -
WebLogView - class org.undp.weblog.ui.WebLogView.
 
WebLogView(BigDecimalParameter, BigDecimalParameter) - -Constructor for class org.undp.weblog.ui.WebLogView -
  -
WebLogsList - class org.undp.weblog.ui.WebLogsList.
 
WebLogsList(WebLogApplication) - -Constructor for class org.undp.weblog.ui.WebLogsList -
  -
WebLogsList(WebLogView) - -Constructor for class org.undp.weblog.ui.WebLogsList -
  -
WebLogsListTableModel - class org.undp.weblog.ui.WebLogsListTableModel.
 
WebLogsListTableModel(WebLogApplication, int) - -Constructor for class org.undp.weblog.ui.WebLogsListTableModel -
  -
-
-

-X

-
-
XML_NS - -Static variable in class org.undp.weblog.ui.WebLogPage -
  -
-
-A B C D F G H I L N O P S V W X - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/index.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/index.html deleted file mode 100755 index 22037e4d4..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/index.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - -Weblog API Documentation - - - - - - - - - -<H2> -Frame Alert</H2> - -<P> -This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. -<BR> -Link to<A HREF="overview-summary.html">Non-frame version.</A> - - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/Initializer.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/Initializer.html deleted file mode 100755 index 0ebd917a8..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/Initializer.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - -Initializer (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog -
-Class Initializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended byorg.undp.weblog.Initializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class Initializer
extends com.arsdigita.runtime.CompoundInitializer
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
Initializer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidinit(com.arsdigita.runtime.DomainInitEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.runtime.CompoundInitializer
add, init, init
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-Initializer

-
-public Initializer()
-            throws com.arsdigita.initializer.InitializationException
-
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init(com.arsdigita.runtime.DomainInitEvent e)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLog.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLog.html deleted file mode 100755 index f8737b5a5..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLog.html +++ /dev/null @@ -1,747 +0,0 @@ - - - - - - -WebLog (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog -
-Class WebLog

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended byorg.undp.weblog.WebLog
-
-
-
-
public class WebLog
extends com.arsdigita.kernel.ACSObject
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringPARAM_APPLICATION - -
-           
-static StringPARAM_BODY - -
-           
-static StringPARAM_LEAD - -
-           
-static StringPARAM_MODIFIED - -
-           
-static StringPARAM_OWNER - -
-           
-static StringPARAM_TITLE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE, versionId
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
WebLog() - -
-           
WebLog(BigDecimal id) - -
-           
WebLog(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-           
-protected  voidbeforeDelete() - -
-           
-protected  voidbeforeSave() - -
-           
- WebLogApplicationgetApplication() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- StringgetBody() - -
-           
- com.arsdigita.persistence.DataCollectiongetComments() - -
-           
- StringgetLead() - -
-           
- DategetModified() - -
-           
- com.arsdigita.kernel.UsergetOwner() - -
-           
- StringgetTitle() - -
-           
- voidsetApplication(WebLogApplication app) - -
-           
- voidsetBody(String body) - -
-           
- voidsetLead(String lead) - -
-           
- voidsetOwner(com.arsdigita.kernel.User owner) - -
-           
- voidsetTitle(String title) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getDisplayName, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
-
-
- -

-PARAM_TITLE

-
-public static final String PARAM_TITLE
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_LEAD

-
-public static final String PARAM_LEAD
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_BODY

-
-public static final String PARAM_BODY
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_MODIFIED

-
-public static final String PARAM_MODIFIED
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_APPLICATION

-
-public static final String PARAM_APPLICATION
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_OWNER

-
-public static final String PARAM_OWNER
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-WebLog

-
-public WebLog()
-
-
-
- -

-WebLog

-
-public WebLog(com.arsdigita.persistence.DataObject dataObject)
-
-
-
- -

-WebLog

-
-public WebLog(BigDecimal id)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-setTitle

-
-public void setTitle(String title)
-
-
-
-
-
-
- -

-setLead

-
-public void setLead(String lead)
-
-
-
-
-
-
- -

-setBody

-
-public void setBody(String body)
-
-
-
-
-
-
- -

-setApplication

-
-public void setApplication(WebLogApplication app)
-
-
-
-
-
-
- -

-setOwner

-
-public void setOwner(com.arsdigita.kernel.User owner)
-
-
-
-
-
-
- -

-getTitle

-
-public String getTitle()
-
-
-
-
-
-
- -

-getLead

-
-public String getLead()
-
-
-
-
-
-
- -

-getBody

-
-public String getBody()
-
-
-
-
-
-
- -

-getModified

-
-public Date getModified()
-
-
-
-
-
-
- -

-getApplication

-
-public WebLogApplication getApplication()
-
-
-
-
-
-
- -

-getOwner

-
-public com.arsdigita.kernel.User getOwner()
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
-
- -

-beforeDelete

-
-protected void beforeDelete()
-
-
-
-
-
-
- -

-getComments

-
-public com.arsdigita.persistence.DataCollection getComments()
-
-
-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogApplication.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogApplication.html deleted file mode 100755 index a9c40e2e9..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogApplication.html +++ /dev/null @@ -1,442 +0,0 @@ - - - - - - -WebLogApplication (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog -
-Class WebLogApplication

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.web.Application
-                      extended byorg.undp.weblog.WebLogApplication
-
-
-
-
public class WebLogApplication
extends com.arsdigita.web.Application
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.web.Application
PRIMARY_URL, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
WebLogApplication(BigDecimal id) - -
-           
WebLogApplication(com.arsdigita.persistence.DataObject data) - -
-           
WebLogApplication(com.arsdigita.persistence.OID oid) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidafterSave() - -
-          Overrides the superclass adding some permissions.
-static WebLogApplicationcreate(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This method should be used to create a new WebLogApplication object - everywhere except in the constructor of a subclass of WebLog.
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.web.Application
afterDelete, beforeDelete, beforeSave, createApplication, createApplication, createRootApplication, getAncestorApplications, getApplicationType, getCanonicalURL, getChildApplications, getChildApplicationsForType, getContainingApplication, getContextPath, getCurrentApplication, getPackageType, getParentApplication, getPath, getPrimaryURL, getRelevantPrivileges, getServletPath, getSiteNode, getStylesheetPath, isInstalled, retrieveAllApplications, retrieveApplication, retrieveApplication, retrieveApplication, retrieveApplicationForPath, retrieveApplicationForSiteNode, setApplicationType, setParentApplication, setPath
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainer, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, isContainerModified, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-WebLogApplication

-
-public WebLogApplication(com.arsdigita.persistence.DataObject data)
-
-
-
- -

-WebLogApplication

-
-public WebLogApplication(com.arsdigita.persistence.OID oid)
-                  throws com.arsdigita.domain.DataObjectNotFoundException
-
-
-
- -

-WebLogApplication

-
-public WebLogApplication(BigDecimal id)
-                  throws com.arsdigita.domain.DataObjectNotFoundException
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-create

-
-public static WebLogApplication create(String urlName,
-                                       String title,
-                                       com.arsdigita.web.Application parent)
-
-
This method should be used to create a new WebLogApplication object - everywhere except in the constructor of a subclass of WebLog. -

-

-
-
-
-
- -

-afterSave

-
-protected void afterSave()
-
-
Overrides the superclass adding some permissions. -

-

-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogComment.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogComment.html deleted file mode 100755 index 08c22a3cc..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogComment.html +++ /dev/null @@ -1,578 +0,0 @@ - - - - - - -WebLogComment (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog -
-Class WebLogComment

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended byorg.undp.weblog.WebLogComment
-
-
-
-
public class WebLogComment
extends com.arsdigita.kernel.ACSObject
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringPARAM_COMMENT - -
-           
-static StringPARAM_MODIFIED - -
-           
-static StringPARAM_OWNER - -
-           
-static StringPARAM_WEBLOG - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE, versionId
-  - - - - - - - - - - - - - - - - -
-Constructor Summary
WebLogComment() - -
-           
WebLogComment(BigDecimal id) - -
-           
WebLogComment(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidbeforeSave() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- StringgetComment() - -
-           
- DategetModified() - -
-           
- com.arsdigita.kernel.UsergetOwner() - -
-           
- WebLoggetWebLog() - -
-           
- voidsetComment(String comment) - -
-           
- voidsetOwner(com.arsdigita.kernel.User owner) - -
-           
- voidsetWebLog(WebLog webLog) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getContainer, getDefaultDomainClass, getDisplayName, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, isContainerModified, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, afterSave, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
-
-
- -

-PARAM_COMMENT

-
-public static final String PARAM_COMMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_MODIFIED

-
-public static final String PARAM_MODIFIED
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_WEBLOG

-
-public static final String PARAM_WEBLOG
-
-
-
See Also:
Constant Field Values
-
-
- -

-PARAM_OWNER

-
-public static final String PARAM_OWNER
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-WebLogComment

-
-public WebLogComment()
-
-
-
- -

-WebLogComment

-
-public WebLogComment(com.arsdigita.persistence.DataObject dataObject)
-
-
-
- -

-WebLogComment

-
-public WebLogComment(BigDecimal id)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-setComment

-
-public void setComment(String comment)
-
-
-
-
-
-
- -

-setWebLog

-
-public void setWebLog(WebLog webLog)
-
-
-
-
-
-
- -

-setOwner

-
-public void setOwner(com.arsdigita.kernel.User owner)
-
-
-
-
-
-
- -

-getComment

-
-public String getComment()
-
-
-
-
-
-
- -

-getModified

-
-public Date getModified()
-
-
-
-
-
-
- -

-getWebLog

-
-public WebLog getWebLog()
-
-
-
-
-
-
- -

-getOwner

-
-public com.arsdigita.kernel.User getOwner()
-
-
-
-
-
-
- -

-beforeSave

-
-protected void beforeSave()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogConstants.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogConstants.html deleted file mode 100755 index d2f2df3f7..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogConstants.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - -WebLogConstants (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog -
-Interface WebLogConstants

-
-
All Known Implementing Classes:
WebLogCommentsListTableModel, WebLogDetail, WebLogDetailPane, WebLogsListTableModel, WebLogView
-
-
-
-
public interface WebLogConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static SimpleDateFormatdateTimeFormat - -
-           
-static StringPARAM_WEBLOG_DETAIL_ID - -
-           
-  - - - - - - -

- - - - - - - - -
-Field Detail
- -

-PARAM_WEBLOG_DETAIL_ID

-
-public static final String PARAM_WEBLOG_DETAIL_ID
-
-
-
See Also:
Constant Field Values
-
-
- -

-dateTimeFormat

-
-public static final SimpleDateFormat dateTimeFormat
-
-
-
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogDispatcher.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogDispatcher.html deleted file mode 100755 index fdb8c8b94..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/WebLogDispatcher.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - -WebLogDispatcher (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog -
-Class WebLogDispatcher

-
-java.lang.Object
-  extended bycom.arsdigita.dispatcher.MapDispatcher
-      extended bycom.arsdigita.bebop.page.BebopMapDispatcher
-          extended byorg.undp.weblog.WebLogDispatcher
-
-
-
All Implemented Interfaces:
com.arsdigita.dispatcher.Dispatcher
-
-
-
-
public class WebLogDispatcher
extends com.arsdigita.bebop.page.BebopMapDispatcher
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.dispatcher.MapDispatcher
com.arsdigita.dispatcher.MapDispatcher.ParseConfigHandler
-  - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
versionId
-  - - - - - - - - - - -
-Constructor Summary
WebLogDispatcher() - -
-           
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.page.BebopMapDispatcher
addPage, getPresentationManager, newParseConfigHandler, setMap, setNotFoundPage, setPresentationManager
- - - - - - - -
Methods inherited from class com.arsdigita.dispatcher.MapDispatcher
addPage, dispatch, getMap, preprocessRequest, readFromFile, requireTrailingSlash, setNotFoundDispatcher
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogDispatcher

-
-public WebLogDispatcher()
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/Initializer.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/Initializer.html deleted file mode 100755 index 17b9dc2a7..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/Initializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.Initializer (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.Initializer

-
-No usage of org.undp.weblog.Initializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLog.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLog.html deleted file mode 100755 index 7075f718b..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLog.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.WebLog (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.WebLog

-
- - - - - - - - - - - - - -
-Packages that use WebLog
org.undp.weblog  
org.undp.weblog.ui  
-  -

- - - - - -
-Uses of WebLog in org.undp.weblog
-  -

- - - - - - - - - -
Methods in org.undp.weblog that return WebLog
- WebLogWebLogComment.getWebLog() - -
-           
-  -

- - - - - - - - - -
Methods in org.undp.weblog with parameters of type WebLog
- voidWebLogComment.setWebLog(WebLog webLog) - -
-           
-  -

- - - - - -
-Uses of WebLog in org.undp.weblog.ui
-  -

- - - - - - - - -
Constructors in org.undp.weblog.ui with parameters of type WebLog
WebLogCommentsListTableModel(WebLog webLog) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogApplication.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogApplication.html deleted file mode 100755 index 878865151..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogApplication.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.WebLogApplication (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.WebLogApplication

-
- - - - - - - - - - - - - -
-Packages that use WebLogApplication
org.undp.weblog  
org.undp.weblog.ui  
-  -

- - - - - -
-Uses of WebLogApplication in org.undp.weblog
-  -

- - - - - - - - - - - - - -
Methods in org.undp.weblog that return WebLogApplication
-static WebLogApplicationWebLogApplication.create(String urlName, - String title, - com.arsdigita.web.Application parent) - -
-          This method should be used to create a new WebLogApplication object - everywhere except in the constructor of a subclass of WebLog.
- WebLogApplicationWebLog.getApplication() - -
-           
-  -

- - - - - - - - - -
Methods in org.undp.weblog with parameters of type WebLogApplication
- voidWebLog.setApplication(WebLogApplication app) - -
-           
-  -

- - - - - -
-Uses of WebLogApplication in org.undp.weblog.ui
-  -

- - - - - - - - - - - -
Constructors in org.undp.weblog.ui with parameters of type WebLogApplication
WebLogsListTableModel(WebLogApplication application, - int columnCount) - -
-           
WebLogsList(WebLogApplication application) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogComment.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogComment.html deleted file mode 100755 index 7ca0aa29e..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogComment.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.WebLogComment (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.WebLogComment

-
-No usage of org.undp.weblog.WebLogComment -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogConstants.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogConstants.html deleted file mode 100755 index 57cd5fc52..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogConstants.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - -Uses of Interface org.undp.weblog.WebLogConstants (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
org.undp.weblog.WebLogConstants

-
- - - - - - - - - -
-Packages that use WebLogConstants
org.undp.weblog.ui  
-  -

- - - - - -
-Uses of WebLogConstants in org.undp.weblog.ui
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Classes in org.undp.weblog.ui that implement WebLogConstants
- classWebLogCommentsListTableModel - -
-           
- classWebLogDetail - -
-           
- classWebLogDetailPane - -
-           
- classWebLogsListTableModel - -
-           
- classWebLogView - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogDispatcher.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogDispatcher.html deleted file mode 100755 index 0a23b2d2a..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/class-use/WebLogDispatcher.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.WebLogDispatcher (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.WebLogDispatcher

-
-No usage of org.undp.weblog.WebLogDispatcher -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-frame.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-frame.html deleted file mode 100755 index a8bde7a43..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-frame.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - -org.undp.weblog (Weblog API Documentation) - - - - - - - - - - - -org.undp.weblog - - - - -
-Interfaces  - -
-WebLogConstants
- - - - - - -
-Classes  - -
-Initializer -
-WebLog -
-WebLogApplication -
-WebLogComment -
-WebLogDispatcher
- - - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-summary.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-summary.html deleted file mode 100755 index 3e60df0aa..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-summary.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - -org.undp.weblog (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package org.undp.weblog -

- - - - - - - - - -
-Interface Summary
WebLogConstants 
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
Initializer 
WebLog 
WebLogApplication 
WebLogComment 
WebLogDispatcher 
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-tree.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-tree.html deleted file mode 100755 index 6b2ad669e..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-tree.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - -org.undp.weblog Class Hierarchy (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package org.undp.weblog -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.kernel.Resource -
          • class org.undp.weblog.WebLog
          • class org.undp.weblog.WebLogComment
          -
        -
      -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher -
      -
    -
-

-Interface Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-use.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-use.html deleted file mode 100755 index 76c6d89a8..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/package-use.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - -Uses of Package org.undp.weblog (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
org.undp.weblog

-
- - - - - - - - - - - - - -
-Packages that use org.undp.weblog
org.undp.weblog  
org.undp.weblog.ui  
-  -

- - - - - - - - - - - -
-Classes in org.undp.weblog used by org.undp.weblog
WebLog - -
-           
WebLogApplication - -
-           
-  -

- - - - - - - - - - - - - - -
-Classes in org.undp.weblog used by org.undp.weblog.ui
WebLog - -
-           
WebLogApplication - -
-           
WebLogConstants - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentEditForm.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentEditForm.html deleted file mode 100755 index 36e023b20..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentEditForm.html +++ /dev/null @@ -1,476 +0,0 @@ - - - - - - -WebLogCommentEditForm (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogCommentEditForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended byorg.undp.weblog.ui.WebLogCommentEditForm
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class WebLogCommentEditForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormProcessListener
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormInitListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormValidationListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogCommentEditForm(WebLogView parent, - boolean createNew) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
-protected  voidprocessBack(com.arsdigita.bebop.PageState ps) - -
-           
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogCommentEditForm

-
-public WebLogCommentEditForm(WebLogView parent,
-                             boolean createNew)
-
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent e)
-          throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent e)
-              throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-             throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-processBack

-
-protected void processBack(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsList.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsList.html deleted file mode 100755 index 0438af387..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsList.html +++ /dev/null @@ -1,437 +0,0 @@ - - - - - - -WebLogCommentsList (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogCommentsList

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Table
-                      extended byorg.undp.weblog.ui.WebLogCommentsList
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, EventListener, com.arsdigita.util.Lockable, com.arsdigita.bebop.event.TableActionListener
-
-
-
-
public class WebLogCommentsList
extends com.arsdigita.bebop.Table
implements com.arsdigita.bebop.event.TableActionListener
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.Table
com.arsdigita.bebop.Table.MatrixTableModelBuilder
-  - - - - - - - - - - - -
-Field Summary
-static String[]HEADERS - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Table
CELL_EVENT, EMPTY_MODEL, SEP, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.TableActionListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogCommentsList(WebLogView parent, - com.arsdigita.bebop.RequestLocal webLogRequestLocal) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- voidcellSelected(com.arsdigita.bebop.event.TableActionEvent e) - -
-           
- voidheadSelected(com.arsdigita.bebop.event.TableActionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Table
addTableActionListener, children, clearSelection, createTableActionListener, fireCellSelected, fireHeadSelected, generateExtraXMLAttributes, generateXML, getBorder, getCellPadding, getCellSpacing, getColumn, getColumnModel, getColumnSelectionModel, getControler, getDefaultCellRenderer, getEmptyView, getHeader, getModelBuilder, getRowSelectionModel, getStriped, getTableModel, getWidth, isSelectedCell, isSelectedColumn, isSelectedRow, lock, register, removeTableActionListener, respond, setBorder, setCellPadding, setCellSpacing, setColumn, setColumnModel, setColumnSelectionModel, setDefaultCellRenderer, setEmptyView, setHeader, setModelBuilder, setRowSelectionModel, setStriped, setWidth
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-HEADERS

-
-public static final String[] HEADERS
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-WebLogCommentsList

-
-public WebLogCommentsList(WebLogView parent,
-                          com.arsdigita.bebop.RequestLocal webLogRequestLocal)
-
-
- - - - - - - - -
-Method Detail
- -

-cellSelected

-
-public void cellSelected(com.arsdigita.bebop.event.TableActionEvent e)
-
-
-
Specified by:
cellSelected in interface com.arsdigita.bebop.event.TableActionListener
-
-
-
-
-
-
- -

-headSelected

-
-public void headSelected(com.arsdigita.bebop.event.TableActionEvent e)
-
-
-
Specified by:
headSelected in interface com.arsdigita.bebop.event.TableActionListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsListTableModel.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsListTableModel.html deleted file mode 100755 index 64484e15c..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogCommentsListTableModel.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - -WebLogCommentsListTableModel (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogCommentsListTableModel

-
-java.lang.Object
-  extended byorg.undp.weblog.ui.WebLogCommentsListTableModel
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.table.TableModel, WebLogConstants
-
-
-
-
public class WebLogCommentsListTableModel
extends Object
implements com.arsdigita.bebop.table.TableModel, WebLogConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.table.TableModel
versionId
- - - - - - - -
Fields inherited from interface org.undp.weblog.WebLogConstants
dateTimeFormat, PARAM_WEBLOG_DETAIL_ID
-  - - - - - - - - - - -
-Constructor Summary
WebLogCommentsListTableModel(WebLog webLog) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- intgetColumnCount() - -
-           
- ObjectgetElementAt(int columnIndex) - -
-           
- ObjectgetKeyAt(int columnIndex) - -
-           
- booleannextRow() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogCommentsListTableModel

-
-public WebLogCommentsListTableModel(WebLog webLog)
-
-
- - - - - - - - -
-Method Detail
- -

-getColumnCount

-
-public int getColumnCount()
-
-
-
Specified by:
getColumnCount in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
-
- -

-getElementAt

-
-public Object getElementAt(int columnIndex)
-
-
-
Specified by:
getElementAt in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
-
- -

-nextRow

-
-public boolean nextRow()
-
-
-
Specified by:
nextRow in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
-
- -

-getKeyAt

-
-public Object getKeyAt(int columnIndex)
-
-
-
Specified by:
getKeyAt in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetail.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetail.html deleted file mode 100755 index c5915c6b3..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetail.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - -WebLogDetail (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogDetail

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.GridPanel
-                          extended byorg.undp.weblog.ui.WebLogDetail
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable, WebLogConstants
-
-
-
-
public class WebLogDetail
extends com.arsdigita.bebop.GridPanel
implements WebLogConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.GridPanel
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface org.undp.weblog.WebLogConstants
dateTimeFormat, PARAM_WEBLOG_DETAIL_ID
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogDetail(com.arsdigita.bebop.RequestLocal entityRequest) - -
-           
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.GridPanel
add, generateXML, isInserted, setInserted
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogDetail

-
-public WebLogDetail(com.arsdigita.bebop.RequestLocal entityRequest)
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetailPane.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetailPane.html deleted file mode 100755 index 0dcb61d73..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogDetailPane.html +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - -WebLogDetailPane (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogDetailPane

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.GridPanel
-                          extended byorg.undp.weblog.ui.WebLogDetailPane
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable, WebLogConstants
-
-
-
-
public class WebLogDetailPane
extends com.arsdigita.bebop.GridPanel
implements WebLogConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.GridPanel
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface org.undp.weblog.WebLogConstants
dateTimeFormat, PARAM_WEBLOG_DETAIL_ID
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogDetailPane(WebLogView parent) - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidgenerateXML(com.arsdigita.bebop.PageState ps, - com.arsdigita.xml.Element p) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.GridPanel
add, isInserted, setInserted
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogDetailPane

-
-public WebLogDetailPane(WebLogView parent)
-
-
- - - - - - - - -
-Method Detail
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState ps,
-                        com.arsdigita.xml.Element p)
-
-
-
Specified by:
generateXML in interface com.arsdigita.bebop.Component
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogEditForm.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogEditForm.html deleted file mode 100755 index 4664f451d..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogEditForm.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - -WebLogEditForm (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogEditForm

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.bebop.Form
-                  extended byorg.undp.weblog.ui.WebLogEditForm
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, EventListener, com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.util.Lockable
-
-
-
-
public class WebLogEditForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormProcessListener
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Form
GET, POST, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormInitListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormValidationListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.FormProcessListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogEditForm(WebLogView parent, - boolean createNew) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  WebLogViewgetParent() - -
-           
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
-protected  voidprocessBack(com.arsdigita.bebop.PageState ps) - -
-           
- voidvalidate(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Form
addMagicTag, excludeParameterFromExport, generateErrors, generateXML, generateXMLSansState, getAction, getFormData, getName, getProcessInvisible, isRedirecting, process, register, respond, setAction, setEncType, setFormData, setMethod, setName, setOnReset, setOnSubmit, setProcessInvisible, setRedirecting, toString, traverse
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, get, getModel, getPanel, indexOf, isEmpty, lock, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogEditForm

-
-public WebLogEditForm(WebLogView parent,
-                      boolean createNew)
-
-
- - - - - - - - -
-Method Detail
- -

-init

-
-public void init(com.arsdigita.bebop.event.FormSectionEvent e)
-          throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
init in interface com.arsdigita.bebop.event.FormInitListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-validate

-
-public void validate(com.arsdigita.bebop.event.FormSectionEvent e)
-              throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
validate in interface com.arsdigita.bebop.event.FormValidationListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-process

-
-public void process(com.arsdigita.bebop.event.FormSectionEvent e)
-             throws com.arsdigita.bebop.FormProcessException
-
-
-
Specified by:
process in interface com.arsdigita.bebop.event.FormProcessListener
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-getParent

-
-protected WebLogView getParent()
-
-
-
-
-
-
-
-
-
- -

-processBack

-
-protected void processBack(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPage.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPage.html deleted file mode 100755 index 0428f7855..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPage.html +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - -WebLogPage (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogPage

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Page
-                      extended byorg.undp.weblog.ui.WebLogPage
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public class WebLogPage
extends com.arsdigita.bebop.Page
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBODY_ELEMENT - -
-           
-static StringFOOTER_ELEMENT - -
-           
-static StringHEADER_ELEMENT - -
-           
-static StringXML_NS - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Page
m_invisible, m_panel, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogPage() - -
-           
-  - - - - - - - - - - -
Methods inherited from class com.arsdigita.bebop.Page
add, add, addActionListener, addClientStylesheet, addComponent, addComponentStateParam, addGlobalStateParam, addRequestListener, buildDocument, children, contains, fireActionEvent, fireRequestEvent, generateXML, generateXML, generateXMLHelper, get, getComponent, getComponentParameters, getErrorDisplay, getPanel, getParameters, getStateModel, getTitle, getTitle, indexOf, isEmpty, isUsingHttpSession, isVisibleDefault, lock, parameterName, parameterName, prepare, process, process, removeActionListener, removeRequestListener, respond, setErrorDisplay, setPanel, setStyleSheet, setTitle, setTitle, setUsingHttpSession, setVisibleDefault, size, stateContains, stateIndex, stateSize
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - -
-Field Detail
- -

-HEADER_ELEMENT

-
-public static final String HEADER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-BODY_ELEMENT

-
-public static final String BODY_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-FOOTER_ELEMENT

-
-public static final String FOOTER_ELEMENT
-
-
-
See Also:
Constant Field Values
-
-
- -

-XML_NS

-
-public static final String XML_NS
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-WebLogPage

-
-public WebLogPage()
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortlet.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortlet.html deleted file mode 100755 index 8805b298a..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortlet.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - -WebLogPortlet (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogPortlet

-
-java.lang.Object
-  extended bycom.arsdigita.domain.DomainObject
-      extended bycom.arsdigita.domain.ObservableDomainObject
-          extended bycom.arsdigita.kernel.ACSObject
-              extended bycom.arsdigita.kernel.Resource
-                  extended bycom.arsdigita.portal.Portlet
-                      extended bycom.arsdigita.portal.apportlet.AppPortlet
-                          extended byorg.undp.weblog.ui.WebLogPortlet
-
-
-
-
public class WebLogPortlet
extends com.arsdigita.portal.apportlet.AppPortlet
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.portal.Portlet
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.Resource
CHILD_RESOURCE, DESCRIPTION, PARENT_RESOURCE, RESOURCE_TYPE, TIMESTAMP, TITLE
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ACSObject
CONTAINER, DEFAULT_DOMAIN_CLASS, DISPLAY_NAME, ID, OBJECT_TYPE
-  - - - - - - - - - - -
-Constructor Summary
WebLogPortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.apportlet.AppPortlet
getAppPortletType, getParentApplication, getPortletRenderer, getZoomURL, setParentApplication
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, setPortal, setPortletType, setSortKey
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.Resource
createResource, createResource, getChildResources, getContainingResource, getDescription, getDisplayName, getParentResource, getResourceType, getTimestamp, getTitle, retrieveAllResources, retrieveResource, retrieveResource, retrieveResource, setDescription, setParentResource, setResourceType, setTitle
- - - - - - - -
Methods inherited from class com.arsdigita.kernel.ACSObject
assertPrivilege, checkPrivilege, doCreateCheck, doWriteCheck, getDefaultDomainClass, getID, getSpecificObjectType, getSpecificOID, gimmeContainer, initialize, setID, setID
- - - - - - - -
Methods inherited from class com.arsdigita.domain.ObservableDomainObject
addObserver, getObservers
- - - - - - - -
Methods inherited from class com.arsdigita.domain.DomainObject
add, add, addToAssociation, afterDelete, beforeDelete, clear, delete, disconnect, equals, get, getObjectType, getOID, getSession, hashCode, isDeleted, isDisconnected, isModified, isNew, isPropertyModified, isValid, remove, remove, remove, removeFromAssociation, save, set, setAssociation, setAssociation, specializeDataObject, specializeDataObject, toString
- - - - - - - -
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-BASE_DATA_OBJECT_TYPE

-
-public static final String BASE_DATA_OBJECT_TYPE
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-WebLogPortlet

-
-public WebLogPortlet(com.arsdigita.persistence.DataObject dataObject)
-
-
- - - - - - - - -
-Method Detail
- -

-getBaseDataObjectType

-
-protected String getBaseDataObjectType()
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortletEditor.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortletEditor.html deleted file mode 100755 index 3c0bcf357..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogPortletEditor.html +++ /dev/null @@ -1,449 +0,0 @@ - - - - - - -WebLogPortletEditor (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogPortletEditor

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.FormSection
-              extended bycom.arsdigita.kernel.ui.ResourceConfigFormSection
-                  extended bycom.arsdigita.bebop.portal.PortletConfigFormSection
-                      extended byorg.undp.weblog.ui.WebLogPortletEditor
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public class WebLogPortletEditor
extends com.arsdigita.bebop.portal.PortletConfigFormSection
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.kernel.ui.ResourceConfigFormSection
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.FormSection
m_formModel, m_panel
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
WebLogPortletEditor(com.arsdigita.bebop.RequestLocal application) - -
-           
WebLogPortletEditor(com.arsdigita.kernel.ResourceType resType, - com.arsdigita.bebop.RequestLocal parentAppRL) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddWidgets() - -
-           
- voidinitWidgets(com.arsdigita.bebop.PageState state, - com.arsdigita.portal.Portlet portlet) - -
-           
- voidprocessWidgets(com.arsdigita.bebop.PageState state, - com.arsdigita.portal.Portlet portlet) - -
-           
- voidvalidateWidgets(com.arsdigita.bebop.PageState state, - com.arsdigita.portal.Portlet portlet) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.portal.PortletConfigFormSection
createResource, modifyResource
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.FormSection
add, add, addCancelListener, addInitListener, addProcessListener, addSubmissionListener, addValidationListener, children, contains, createInitListener, createProcessListener, createSubmissionListener, createValidationListener, fireCancel, fireInit, fireProcess, fireSubmitted, fireValidate, forwardInit, forwardProcess, forwardSubmission, forwardValidation, generateXML, get, getModel, getPanel, indexOf, isEmpty, lock, process, register, removeCancelListener, removeInitListener, removeProcessListener, removeSubmissionListener, removeValidationListener, respond, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogPortletEditor

-
-public WebLogPortletEditor(com.arsdigita.kernel.ResourceType resType,
-                           com.arsdigita.bebop.RequestLocal parentAppRL)
-
-
-
- -

-WebLogPortletEditor

-
-public WebLogPortletEditor(com.arsdigita.bebop.RequestLocal application)
-
-
- - - - - - - - -
-Method Detail
- -

-addWidgets

-
-public void addWidgets()
-
-
-
-
-
-
- -

-initWidgets

-
-public void initWidgets(com.arsdigita.bebop.PageState state,
-                        com.arsdigita.portal.Portlet portlet)
-                 throws com.arsdigita.bebop.FormProcessException
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-validateWidgets

-
-public void validateWidgets(com.arsdigita.bebop.PageState state,
-                            com.arsdigita.portal.Portlet portlet)
-                     throws com.arsdigita.bebop.FormProcessException
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
-
- -

-processWidgets

-
-public void processWidgets(com.arsdigita.bebop.PageState state,
-                           com.arsdigita.portal.Portlet portlet)
-                    throws com.arsdigita.bebop.FormProcessException
-
-
- -
Throws: -
com.arsdigita.bebop.FormProcessException
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogView.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogView.html deleted file mode 100755 index 0e3dfbad4..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogView.html +++ /dev/null @@ -1,732 +0,0 @@ - - - - - - -WebLogView (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogView

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.SimpleContainer
-                      extended bycom.arsdigita.bebop.ModalContainer
-                          extended byorg.undp.weblog.ui.WebLogView
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable, com.arsdigita.bebop.Resettable, WebLogConstants
-
-
-
-
public class WebLogView
extends com.arsdigita.bebop.ModalContainer
implements WebLogConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.ModalContainer
versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface org.undp.weblog.WebLogConstants
dateTimeFormat, PARAM_WEBLOG_DETAIL_ID
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebLogView(com.arsdigita.bebop.parameters.BigDecimalParameter entityIDparam, - com.arsdigita.bebop.parameters.BigDecimalParameter parentIDparam) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  booleancanUserAdminApplication() - -
-           
-protected  booleancanUserEditApplication() - -
-           
- voiddisplayWebLogCommentCreateForm(com.arsdigita.bebop.PageState ps) - -
-           
- voiddisplayWebLogCommentEditForm(com.arsdigita.bebop.PageState ps) - -
-           
- voiddisplayWebLogCreateForm(com.arsdigita.bebop.PageState ps) - -
-           
- voiddisplayWebLogDetail(com.arsdigita.bebop.PageState ps) - -
-           
- voiddisplayWebLogEditForm(com.arsdigita.bebop.PageState ps) - -
-           
- voiddisplayWebLogEditForm(com.arsdigita.bebop.PageState ps, - boolean backToDetail) - -
-           
- voiddisplayWebLogsList(com.arsdigita.bebop.PageState ps) - -
-           
- voidgenerateXML(com.arsdigita.bebop.PageState ps, - com.arsdigita.xml.Element p) - -
-           
-protected  BigDecimalgetEntityID(com.arsdigita.bebop.PageState ps) - -
-           
-protected  com.arsdigita.bebop.parameters.BigDecimalParametergetEntityIDParam() - -
-           
-protected  BigDecimalgetParentID(com.arsdigita.bebop.PageState ps) - -
-           
-protected  com.arsdigita.bebop.parameters.BigDecimalParametergetParentIDParam() - -
-           
-protected  voidsetEntityID(com.arsdigita.bebop.PageState ps, - BigDecimal id) - -
-           
-protected  voidsetParentID(com.arsdigita.bebop.PageState ps, - BigDecimal id) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.ModalContainer
addModeChangeListener, getDefaultComponent, getVisibleComponent, next, previous, register, reset, setDefaultComponent, setVisibleComponent
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleContainer
add, add, children, contains, generateChildrenXML, generateParent, get, getNamespace, getTag, indexOf, isEmpty, setNamespace, setTag, size
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, lock, register, respond, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface com.arsdigita.bebop.Component
getClassAttr, getIdAttr, getKey, getStyleAttr, isVisible, register, respond, setClassAttr, setIdAttr, setKey, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from interface com.arsdigita.util.Lockable
isLocked, lock
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogView

-
-public WebLogView(com.arsdigita.bebop.parameters.BigDecimalParameter entityIDparam,
-                  com.arsdigita.bebop.parameters.BigDecimalParameter parentIDparam)
-
-
- - - - - - - - -
-Method Detail
- -

-displayWebLogsList

-
-public void displayWebLogsList(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-displayWebLogDetail

-
-public void displayWebLogDetail(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-displayWebLogCreateForm

-
-public void displayWebLogCreateForm(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-displayWebLogEditForm

-
-public void displayWebLogEditForm(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-displayWebLogEditForm

-
-public void displayWebLogEditForm(com.arsdigita.bebop.PageState ps,
-                                  boolean backToDetail)
-
-
-
-
-
-
-
-
-
- -

-displayWebLogCommentCreateForm

-
-public void displayWebLogCommentCreateForm(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-displayWebLogCommentEditForm

-
-public void displayWebLogCommentEditForm(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState ps,
-                        com.arsdigita.xml.Element p)
-
-
-
Specified by:
generateXML in interface com.arsdigita.bebop.Component
-
-
-
-
-
-
- -

-getEntityID

-
-protected BigDecimal getEntityID(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-setEntityID

-
-protected void setEntityID(com.arsdigita.bebop.PageState ps,
-                           BigDecimal id)
-
-
-
-
-
-
-
-
-
- -

-getParentID

-
-protected BigDecimal getParentID(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
-
-
-
- -

-setParentID

-
-protected void setParentID(com.arsdigita.bebop.PageState ps,
-                           BigDecimal id)
-
-
-
-
-
-
-
-
-
- -

-getEntityIDParam

-
-protected com.arsdigita.bebop.parameters.BigDecimalParameter getEntityIDParam()
-
-
-
-
-
-
-
-
-
- -

-getParentIDParam

-
-protected com.arsdigita.bebop.parameters.BigDecimalParameter getParentIDParam()
-
-
-
-
-
-
-
-
-
- -

-canUserAdminApplication

-
-protected boolean canUserAdminApplication()
-
-
-
-
-
-
-
-
-
- -

-canUserEditApplication

-
-protected boolean canUserEditApplication()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsList.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsList.html deleted file mode 100755 index 951b29861..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsList.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - -WebLogsList (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogsList

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.bebop.TextStylable
-              extended bycom.arsdigita.bebop.BlockStylable
-                  extended bycom.arsdigita.bebop.Table
-                      extended byorg.undp.weblog.ui.WebLogsList
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.util.BebopConstants, Cloneable, com.arsdigita.bebop.Component, EventListener, com.arsdigita.util.Lockable, com.arsdigita.bebop.event.TableActionListener
-
-
-
-
public class WebLogsList
extends com.arsdigita.bebop.Table
implements com.arsdigita.bebop.event.TableActionListener
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - -
-Nested Class Summary
- - - - - - - -
Nested classes inherited from class com.arsdigita.bebop.Table
com.arsdigita.bebop.Table.MatrixTableModelBuilder
-  - - - - - - - - - - - - - - - -
-Field Summary
-static String[]HEADERS - -
-           
-static String[]HEADERS_ACTION - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.Table
CELL_EVENT, EMPTY_MODEL, SEP, versionId
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.BlockStylable
ABSBOTTOM, ABSMIDDLE, BASELINE, BOTTOM, CENTER, FULL_WIDTH, INSERT, LEFT, MIDDLE, RIGHT, TEXTTOP, TOP
- - - - - - - -
Fields inherited from class com.arsdigita.bebop.SimpleComponent
m_attr
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.TableActionListener
versionId
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.util.BebopConstants
BEBOP_BORDER, BEBOP_BOXPANEL, BEBOP_CELL, BEBOP_CHECKBOX, BEBOP_CHECKBOXGROUP, BEBOP_COLUMNPANEL, BEBOP_DATE, BEBOP_DATETIME, BEBOP_DHTMLEDITOR, BEBOP_FORMERRORS, BEBOP_FORMWIDGET, BEBOP_GRIDPANEL, BEBOP_LIST, BEBOP_MULTISELECT, BEBOP_OPTION, BEBOP_PAD, BEBOP_PADFRAME, BEBOP_PANELROW, BEBOP_PORTAL, BEBOP_PORTLET, BEBOP_RADIO, BEBOP_RADIOGROUP, BEBOP_SEG_BODY, BEBOP_SEG_HEADER, BEBOP_SEG_PANEL, BEBOP_SEGMENT, BEBOP_SELECT, BEBOP_TABLE, BEBOP_TABLEBODY, BEBOP_TABLEROW, BEBOP_TEXTAREA
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - - - - -
-Constructor Summary
WebLogsList(WebLogApplication application) - -
-           
WebLogsList(WebLogView parent) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
- voidcellSelected(com.arsdigita.bebop.event.TableActionEvent e) - -
-           
- voidheadSelected(com.arsdigita.bebop.event.TableActionEvent e) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Table
addTableActionListener, children, clearSelection, createTableActionListener, fireCellSelected, fireHeadSelected, generateExtraXMLAttributes, generateXML, getBorder, getCellPadding, getCellSpacing, getColumn, getColumnModel, getColumnSelectionModel, getControler, getDefaultCellRenderer, getEmptyView, getHeader, getModelBuilder, getRowSelectionModel, getStriped, getTableModel, getWidth, isSelectedCell, isSelectedColumn, isSelectedRow, lock, register, removeTableActionListener, respond, setBorder, setCellPadding, setCellSpacing, setColumn, setColumnModel, setColumnSelectionModel, setDefaultCellRenderer, setEmptyView, setHeader, setModelBuilder, setRowSelectionModel, setStriped, setWidth
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.BlockStylable
setBorder, setBorder, setBorderColor, setHorizontalAlignment, setMargin, setMargin, setPadding, setPadding, setVerticalAlignment
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.TextStylable
setBackgroundColor, setColor
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.SimpleComponent
clone, exportAttributes, getAttribute, getClassAttr, getIdAttr, getKey, getMetaDataAttribute, getStyleAttr, hasAttributes, isLocked, isVisible, register, setAttribute, setClassAttr, setIdAttr, setKey, setMetaDataAttribute, setStyleAttr, setVisible
- - - - - - - -
Methods inherited from class com.arsdigita.bebop.Completable
addCompletionListener, fireCompletionEvent
- - - - - - - -
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-HEADERS

-
-public static final String[] HEADERS
-
-
-
-
-
- -

-HEADERS_ACTION

-
-public static final String[] HEADERS_ACTION
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-WebLogsList

-
-public WebLogsList(WebLogApplication application)
-
-
-
- -

-WebLogsList

-
-public WebLogsList(WebLogView parent)
-
-
- - - - - - - - -
-Method Detail
- -

-cellSelected

-
-public void cellSelected(com.arsdigita.bebop.event.TableActionEvent e)
-
-
-
Specified by:
cellSelected in interface com.arsdigita.bebop.event.TableActionListener
-
-
-
-
-
-
- -

-headSelected

-
-public void headSelected(com.arsdigita.bebop.event.TableActionEvent e)
-
-
-
Specified by:
headSelected in interface com.arsdigita.bebop.event.TableActionListener
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsListTableModel.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsListTableModel.html deleted file mode 100755 index 87bbfd1ce..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/WebLogsListTableModel.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - -WebLogsListTableModel (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.ui -
-Class WebLogsListTableModel

-
-java.lang.Object
-  extended byorg.undp.weblog.ui.WebLogsListTableModel
-
-
-
All Implemented Interfaces:
com.arsdigita.bebop.table.TableModel, WebLogConstants
-
-
-
-
public class WebLogsListTableModel
extends Object
implements com.arsdigita.bebop.table.TableModel, WebLogConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.table.TableModel
versionId
- - - - - - - -
Fields inherited from interface org.undp.weblog.WebLogConstants
dateTimeFormat, PARAM_WEBLOG_DETAIL_ID
-  - - - - - - - - - - -
-Constructor Summary
WebLogsListTableModel(WebLogApplication application, - int columnCount) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- intgetColumnCount() - -
-           
- ObjectgetElementAt(int columnIndex) - -
-           
- ObjectgetKeyAt(int columnIndex) - -
-           
- booleannextRow() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-WebLogsListTableModel

-
-public WebLogsListTableModel(WebLogApplication application,
-                             int columnCount)
-
-
- - - - - - - - -
-Method Detail
- -

-getColumnCount

-
-public int getColumnCount()
-
-
-
Specified by:
getColumnCount in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
-
- -

-getElementAt

-
-public Object getElementAt(int columnIndex)
-
-
-
Specified by:
getElementAt in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
-
- -

-nextRow

-
-public boolean nextRow()
-
-
-
Specified by:
nextRow in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
-
- -

-getKeyAt

-
-public Object getKeyAt(int columnIndex)
-
-
-
Specified by:
getKeyAt in interface com.arsdigita.bebop.table.TableModel
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentEditForm.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentEditForm.html deleted file mode 100755 index 5e7f280b6..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentEditForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogCommentEditForm (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogCommentEditForm

-
-No usage of org.undp.weblog.ui.WebLogCommentEditForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsList.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsList.html deleted file mode 100755 index 4ec6fea83..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsList.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogCommentsList (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogCommentsList

-
-No usage of org.undp.weblog.ui.WebLogCommentsList -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsListTableModel.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsListTableModel.html deleted file mode 100755 index a787948d6..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogCommentsListTableModel.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogCommentsListTableModel (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogCommentsListTableModel

-
-No usage of org.undp.weblog.ui.WebLogCommentsListTableModel -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetail.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetail.html deleted file mode 100755 index 649f0446f..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetail.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogDetail (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogDetail

-
-No usage of org.undp.weblog.ui.WebLogDetail -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetailPane.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetailPane.html deleted file mode 100755 index 1d576b55c..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogDetailPane.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogDetailPane (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogDetailPane

-
-No usage of org.undp.weblog.ui.WebLogDetailPane -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogEditForm.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogEditForm.html deleted file mode 100755 index 7682fcf35..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogEditForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogEditForm (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogEditForm

-
-No usage of org.undp.weblog.ui.WebLogEditForm -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPage.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPage.html deleted file mode 100755 index 16a106a2d..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPage.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogPage (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogPage

-
-No usage of org.undp.weblog.ui.WebLogPage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortlet.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortlet.html deleted file mode 100755 index 78fe26a96..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortlet.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogPortlet (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogPortlet

-
-No usage of org.undp.weblog.ui.WebLogPortlet -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortletEditor.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortletEditor.html deleted file mode 100755 index 179808d4d..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogPortletEditor.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogPortletEditor (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogPortletEditor

-
-No usage of org.undp.weblog.ui.WebLogPortletEditor -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogView.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogView.html deleted file mode 100755 index 0876f9d93..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogView.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogView (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogView

-
- - - - - - - - - -
-Packages that use WebLogView
org.undp.weblog.ui  
-  -

- - - - - -
-Uses of WebLogView in org.undp.weblog.ui
-  -

- - - - - - - - - -
Methods in org.undp.weblog.ui that return WebLogView
-protected  WebLogViewWebLogEditForm.getParent() - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - -
Constructors in org.undp.weblog.ui with parameters of type WebLogView
WebLogsList(WebLogView parent) - -
-           
WebLogCommentsList(WebLogView parent, - com.arsdigita.bebop.RequestLocal webLogRequestLocal) - -
-           
WebLogDetailPane(WebLogView parent) - -
-           
WebLogEditForm(WebLogView parent, - boolean createNew) - -
-           
WebLogCommentEditForm(WebLogView parent, - boolean createNew) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsList.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsList.html deleted file mode 100755 index 49bfcf370..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsList.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogsList (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogsList

-
-No usage of org.undp.weblog.ui.WebLogsList -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsListTableModel.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsListTableModel.html deleted file mode 100755 index 3887f7113..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/class-use/WebLogsListTableModel.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.ui.WebLogsListTableModel (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.ui.WebLogsListTableModel

-
-No usage of org.undp.weblog.ui.WebLogsListTableModel -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-frame.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-frame.html deleted file mode 100755 index d78dbb612..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-frame.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -org.undp.weblog.ui (Weblog API Documentation) - - - - - - - - - - - -org.undp.weblog.ui - - - - -
-Classes  - -
-WebLogCommentEditForm -
-WebLogCommentsList -
-WebLogCommentsListTableModel -
-WebLogDetail -
-WebLogDetailPane -
-WebLogEditForm -
-WebLogPage -
-WebLogPortlet -
-WebLogPortletEditor -
-WebLogsList -
-WebLogsListTableModel -
-WebLogView
- - - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-summary.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-summary.html deleted file mode 100755 index 33f8d771b..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-summary.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - -org.undp.weblog.ui (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package org.undp.weblog.ui -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
WebLogCommentEditForm 
WebLogCommentsList 
WebLogCommentsListTableModel 
WebLogDetail 
WebLogDetailPane 
WebLogEditForm 
WebLogPage 
WebLogPortlet 
WebLogPortletEditor 
WebLogsList 
WebLogsListTableModel 
WebLogView 
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-tree.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-tree.html deleted file mode 100755 index e20ea4f66..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-tree.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - -org.undp.weblog.ui Class Hierarchy (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package org.undp.weblog.ui -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) -
              -
            • class org.undp.weblog.ui.WebLogCommentEditForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            • class org.undp.weblog.ui.WebLogEditForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            -
          • class com.arsdigita.kernel.ui.ResourceConfigFormSection
              -
            • class com.arsdigita.bebop.portal.PortletConfigFormSection -
            -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) - -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.bebop.GridPanel (implements com.arsdigita.bebop.util.BebopConstants) - -
              • class com.arsdigita.bebop.ModalContainer (implements com.arsdigita.bebop.Resettable) - -
              -
            • class com.arsdigita.bebop.Table (implements com.arsdigita.bebop.util.BebopConstants) -
                -
              • class org.undp.weblog.ui.WebLogCommentsList (implements com.arsdigita.bebop.event.TableActionListener) -
              • class org.undp.weblog.ui.WebLogsList (implements com.arsdigita.bebop.event.TableActionListener) -
              -
            -
          -
        -
      -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.kernel.Resource
              -
            • class com.arsdigita.portal.Portlet
                -
              • class com.arsdigita.portal.apportlet.AppPortlet -
              -
            -
          -
        -
      -
    • class org.undp.weblog.ui.WebLogCommentsListTableModel (implements com.arsdigita.bebop.table.TableModel, org.undp.weblog.WebLogConstants) -
    • class org.undp.weblog.ui.WebLogsListTableModel (implements com.arsdigita.bebop.table.TableModel, org.undp.weblog.WebLogConstants) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-use.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-use.html deleted file mode 100755 index d6e99dfda..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/ui/package-use.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -Uses of Package org.undp.weblog.ui (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
org.undp.weblog.ui

-
- - - - - - - - - -
-Packages that use org.undp.weblog.ui
org.undp.weblog.ui  
-  -

- - - - - - - - -
-Classes in org.undp.weblog.ui used by org.undp.weblog.ui
WebLogView - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/GlobalizationUtil.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/GlobalizationUtil.html deleted file mode 100755 index ad6e2ceef..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/GlobalizationUtil.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - -GlobalizationUtil (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -org.undp.weblog.util -
-Class GlobalizationUtil

-
-java.lang.Object
-  extended byorg.undp.weblog.util.GlobalizationUtil
-
-
-
All Implemented Interfaces:
com.arsdigita.globalization.Globalized
-
-
-
-
public class GlobalizationUtil
extends Object
implements com.arsdigita.globalization.Globalized
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.globalization.Globalized
DATE_DISPLAY_FORMAT, TIME_DISPLAY_FORMAT, versionId
-  - - - - - - - - - - -
-Constructor Summary
GlobalizationUtil() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key) - -
-           
-static com.arsdigita.globalization.GlobalizedMessageglobalize(String key, - Object[] args) - -
-           
-static Stringlocalize(String key) - -
-           
-static Stringlocalize(String key, - Object[] args) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-GlobalizationUtil

-
-public GlobalizationUtil()
-
-
- - - - - - - - -
-Method Detail
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key)
-
-
-
-
-
-
-
-
-
- -

-globalize

-
-public static com.arsdigita.globalization.GlobalizedMessage globalize(String key,
-                                                                      Object[] args)
-
-
-
-
-
-
-
-
-
- -

-localize

-
-public static String localize(String key)
-
-
-
-
-
-
-
-
-
- -

-localize

-
-public static String localize(String key,
-                              Object[] args)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/class-use/GlobalizationUtil.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/class-use/GlobalizationUtil.html deleted file mode 100755 index 382d866d8..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/class-use/GlobalizationUtil.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class org.undp.weblog.util.GlobalizationUtil (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
org.undp.weblog.util.GlobalizationUtil

-
-No usage of org.undp.weblog.util.GlobalizationUtil -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-frame.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-frame.html deleted file mode 100755 index 85986043a..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -org.undp.weblog.util (Weblog API Documentation) - - - - - - - - - - - -org.undp.weblog.util - - - - -
-Classes  - -
-GlobalizationUtil
- - - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-summary.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-summary.html deleted file mode 100755 index 4eafa26df..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-summary.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -org.undp.weblog.util (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package org.undp.weblog.util -

- - - - - - - - - -
-Class Summary
GlobalizationUtil 
-  - -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-tree.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-tree.html deleted file mode 100755 index 98c620dd8..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-tree.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -org.undp.weblog.util Class Hierarchy (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package org.undp.weblog.util -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class org.undp.weblog.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-use.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-use.html deleted file mode 100755 index b87c6eaa3..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/org/undp/weblog/util/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package org.undp.weblog.util (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
org.undp.weblog.util

-
-No usage of org.undp.weblog.util -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-frame.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-frame.html deleted file mode 100755 index 1f7c37a28..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-frame.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - -Overview (Weblog API Documentation) - - - - - - - - - - - - - - - -
-
- - - - - -
All Classes -

- -Packages -
-org.undp.weblog -
-org.undp.weblog.ui -
-org.undp.weblog.util -
-

- -

-  - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-summary.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-summary.html deleted file mode 100755 index 5af99d9b1..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-summary.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -Overview (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -


-
-

-

Weblog API Documentation

- -
- - - - - - - - - - - - - - - - - -
-Packages
org.undp.weblog 
org.undp.weblog.ui 
org.undp.weblog.util 
- -


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-tree.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-tree.html deleted file mode 100755 index 583911c5c..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/overview-tree.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - -Class Hierarchy (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For All Packages

-
-
-
Package Hierarchies:
org.undp.weblog, org.undp.weblog.ui, org.undp.weblog.util
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.bebop.Completable (implements com.arsdigita.bebop.Component) -
        -
      • class com.arsdigita.bebop.SimpleComponent (implements java.lang.Cloneable, com.arsdigita.bebop.Component) -
          -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) -
              -
            • class org.undp.weblog.ui.WebLogCommentEditForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            • class org.undp.weblog.ui.WebLogEditForm (implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormProcessListener, com.arsdigita.bebop.event.FormValidationListener) -
            -
          • class com.arsdigita.kernel.ui.ResourceConfigFormSection
              -
            • class com.arsdigita.bebop.portal.PortletConfigFormSection -
            -
          -
        • class com.arsdigita.bebop.TextStylable
            -
          • class com.arsdigita.bebop.BlockStylable
              -
            • class com.arsdigita.bebop.Page (implements com.arsdigita.bebop.Container) - -
            • class com.arsdigita.bebop.SimpleContainer (implements com.arsdigita.bebop.Container) -
                -
              • class com.arsdigita.bebop.GridPanel (implements com.arsdigita.bebop.util.BebopConstants) - -
              • class com.arsdigita.bebop.ModalContainer (implements com.arsdigita.bebop.Resettable) - -
              -
            • class com.arsdigita.bebop.Table (implements com.arsdigita.bebop.util.BebopConstants) -
                -
              • class org.undp.weblog.ui.WebLogCommentsList (implements com.arsdigita.bebop.event.TableActionListener) -
              • class org.undp.weblog.ui.WebLogsList (implements com.arsdigita.bebop.event.TableActionListener) -
              -
            -
          -
        -
      -
    • class com.arsdigita.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) - -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • class com.arsdigita.kernel.Resource
              -
            • class com.arsdigita.web.Application -
            • class com.arsdigita.portal.Portlet
                -
              • class com.arsdigita.portal.apportlet.AppPortlet -
              -
            -
          • class org.undp.weblog.WebLog
          • class org.undp.weblog.WebLogComment
          -
        -
      -
    • class org.undp.weblog.util.GlobalizationUtil (implements com.arsdigita.globalization.Globalized) -
    • class com.arsdigita.dispatcher.MapDispatcher (implements com.arsdigita.dispatcher.Dispatcher) -
        -
      • class com.arsdigita.bebop.page.BebopMapDispatcher -
      -
    • class org.undp.weblog.ui.WebLogCommentsListTableModel (implements com.arsdigita.bebop.table.TableModel, org.undp.weblog.WebLogConstants) -
    • class org.undp.weblog.ui.WebLogsListTableModel (implements com.arsdigita.bebop.table.TableModel, org.undp.weblog.WebLogConstants) -
    -
-

-Interface Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/package-list b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/package-list deleted file mode 100755 index ff7a27343..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/package-list +++ /dev/null @@ -1,3 +0,0 @@ -org.undp.weblog -org.undp.weblog.ui -org.undp.weblog.util diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/packages.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/packages.html deleted file mode 100755 index a76184175..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/packages.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - (Weblog API Documentation) - - - - - - - - - - - -
- -
- -
-
-The front page has been relocated.Please see: -
-          Frame version -
-          Non-frame version.
- - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/resources/inherit.gif b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/resources/inherit.gif deleted file mode 100755 index c814867a1..000000000 Binary files a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/resources/inherit.gif and /dev/null differ diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/serialized-form.html b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/serialized-form.html deleted file mode 100755 index 79146432a..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/serialized-form.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -Serialized Form (Weblog API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Serialized Form

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1153 UTC - - diff --git a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/stylesheet.css b/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/stylesheet.css deleted file mode 100755 index 6d31fdbc7..000000000 --- a/ccm-weblog/debian/ccm-weblog-doc/var/www/html/ccm-weblog-6.3.0/api/stylesheet.css +++ /dev/null @@ -1,29 +0,0 @@ -/* Javadoc style sheet */ - -/* Define colors, fonts and other style attributes here to override the defaults */ - -/* Page background color */ -body { background-color: #FFFFFF } - -/* Headings */ -h1 { font-size: 145% } - -/* Table colors */ -.TableHeadingColor { background: #CCCCFF } /* Dark mauve */ -.TableSubHeadingColor { background: #EEEEFF } /* Light mauve */ -.TableRowColor { background: #FFFFFF } /* White */ - -/* Font used in left-hand frame lists */ -.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif } -.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } -.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } - -/* Navigation bar fonts and colors */ -.NavBarCell1 { background-color:#EEEEFF;} /* Light mauve */ -.NavBarCell1Rev { background-color:#00008B;} /* Dark Blue */ -.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;} -.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;} - -.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} -.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;} - diff --git a/ccm-weblog/debian/ccm-weblog.dirs b/ccm-weblog/debian/ccm-weblog.dirs deleted file mode 100755 index 0abac07ac..000000000 --- a/ccm-weblog/debian/ccm-weblog.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-weblog-6.3.0 diff --git a/ccm-weblog/debian/ccm-weblog.install b/ccm-weblog/debian/ccm-weblog.install deleted file mode 100755 index be44d5746..000000000 --- a/ccm-weblog/debian/ccm-weblog.install +++ /dev/null @@ -1,6 +0,0 @@ -usr/share/java/ccm-weblog-6.3.0.jar -usr/share/java/ccm-weblog-6.3.0-pdl.jar -usr/share/java/ccm-weblog-6.3.0-sql.jar -usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog-portlet.xsl -usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog.xsl -usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/__ccm__/apps/weblog/xsl/index.xsl diff --git a/ccm-weblog/debian/ccm-weblog.postrm.debhelper b/ccm-weblog/debian/ccm-weblog.postrm.debhelper deleted file mode 100755 index bc035b98c..000000000 --- a/ccm-weblog/debian/ccm-weblog.postrm.debhelper +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically added by dh_installdebconf -if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_purge -fi -# End automatically added section diff --git a/ccm-weblog/debian/ccm-weblog.substvars b/ccm-weblog/debian/ccm-weblog.substvars deleted file mode 100755 index a8fe3cff5..000000000 --- a/ccm-weblog/debian/ccm-weblog.substvars +++ /dev/null @@ -1 +0,0 @@ -misc:Depends=debconf (>= 0.5) | debconf-2.0 diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/config b/ccm-weblog/debian/ccm-weblog/DEBIAN/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/control b/ccm-weblog/debian/ccm-weblog/DEBIAN/control deleted file mode 100755 index 481a33ede..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-weblog -Version: 6.3.0-1 -Section: contrib/web -Priority: optional -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java, ccm-core -Installed-Size: 184 -Maintainer: Runtime Packaging -Description: APLAWS: Weblog application. - . - FIXME: We need a longer and more meaningful description here. diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/md5sums b/ccm-weblog/debian/ccm-weblog/DEBIAN/md5sums deleted file mode 100755 index 4e24c79d3..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/md5sums +++ /dev/null @@ -1,8 +0,0 @@ -1b4d404efc97bc732bbb5117c5adf24c usr/share/java/ccm-weblog-6.3.0.jar -59cff4aeadaff0675278f48ebbcde924 usr/share/java/ccm-weblog-6.3.0-pdl.jar -2e8a119b6c391bb16f4f338ce487d36b usr/share/java/ccm-weblog-6.3.0-sql.jar -f4180278665d1b4fa5a58f08ba274e74 usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog-portlet.xsl -8305f726a13c548f80f9bec65a83dd9b usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog.xsl -af7d7e03ff75fb7d4c5860e462bc0b97 usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/__ccm__/apps/weblog/xsl/index.xsl -e946b3ab43afc6c3e8297ff807efacf4 usr/share/doc/ccm-weblog/copyright -6d2c1833d9ca19ff873fd07c8b8f1bfd usr/share/doc/ccm-weblog/changelog.Debian.gz diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/postinst b/ccm-weblog/debian/ccm-weblog/DEBIAN/postinst deleted file mode 100755 index 035547f8c..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-weblog -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/postrm b/ccm-weblog/debian/ccm-weblog/DEBIAN/postrm deleted file mode 100755 index 8551f6e25..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/postrm +++ /dev/null @@ -1,68 +0,0 @@ -#! /bin/sh -# postrm script for ccm-weblog -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -# Automatically added by dh_installdebconf -if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_purge -fi -# End automatically added section - - -exit 0 - - diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/prerm b/ccm-weblog/debian/ccm-weblog/DEBIAN/prerm deleted file mode 100755 index d0620cfba..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-weblog -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - - - -exit 0 - diff --git a/ccm-weblog/debian/ccm-weblog/DEBIAN/templates b/ccm-weblog/debian/ccm-weblog/DEBIAN/templates deleted file mode 100755 index fcf6935fb..000000000 --- a/ccm-weblog/debian/ccm-weblog/DEBIAN/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-weblog -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-weblog". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-"weblog. diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/doc/ccm-weblog/changelog.Debian.gz b/ccm-weblog/debian/ccm-weblog/usr/share/doc/ccm-weblog/changelog.Debian.gz deleted file mode 100755 index 41775f26a..000000000 Binary files a/ccm-weblog/debian/ccm-weblog/usr/share/doc/ccm-weblog/changelog.Debian.gz and /dev/null differ diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/doc/ccm-weblog/copyright b/ccm-weblog/debian/ccm-weblog/usr/share/doc/ccm-weblog/copyright deleted file mode 100755 index a6d4b8bf0..000000000 --- a/ccm-weblog/debian/ccm-weblog/usr/share/doc/ccm-weblog/copyright +++ /dev/null @@ -1,14 +0,0 @@ -This package was debianized by Matt Roberts on -Wed, 11 Jan 2006 13:32:14 +0100. - - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0-pdl.jar b/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0-pdl.jar deleted file mode 100755 index 4bcedee06..000000000 Binary files a/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0-pdl.jar and /dev/null differ diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0-sql.jar b/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0-sql.jar deleted file mode 100755 index bb182fff5..000000000 Binary files a/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0-sql.jar and /dev/null differ diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0.jar b/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0.jar deleted file mode 100755 index 1f70f3e37..000000000 Binary files a/ccm-weblog/debian/ccm-weblog/usr/share/java/ccm-weblog-6.3.0.jar and /dev/null differ diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/__ccm__/apps/weblog/xsl/index.xsl b/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/__ccm__/apps/weblog/xsl/index.xsl deleted file mode 100755 index ffff230e6..000000000 --- a/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/__ccm__/apps/weblog/xsl/index.xsl +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog-portlet.xsl b/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog-portlet.xsl deleted file mode 100755 index 177b4fec9..000000000 --- a/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog-portlet.xsl +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - -
- - - - - - - - - - -
- -
- -
- - - - view all weblogs - -
-
-
-
-
- -
diff --git a/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog.xsl b/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog.xsl deleted file mode 100755 index 6c0dcaead..000000000 --- a/ccm-weblog/debian/ccm-weblog/usr/share/java/webapps/ccm-weblog-6.3.0/ROOT/packages/weblog/xsl/weblog.xsl +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - -
- -
- -
-
- - - - - - - - - - - -
- -
-
- - - - - - - - - - - - - - - - - - -
diff --git a/ccm-weblog/debian/changelog b/ccm-weblog/debian/changelog deleted file mode 100755 index 978b5a8b6..000000000 --- a/ccm-weblog/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -ccm-weblog (6.3.0-1) unstable; urgency=low - - * Initial checkin - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 diff --git a/ccm-weblog/debian/compat b/ccm-weblog/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-weblog/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-weblog/debian/config b/ccm-weblog/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-weblog/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -db_capb backup - -HOSTNAME=`hostname -f` 2>/dev/null || true - -if [ -n "$HOSTNAME" ]; then - db_metaget ccm/shared/waf_web_server default || true - PORTNUM=`echo $RET | cut -d: -f2` - db_set ccm/shared/waf_web_server "$HOSTNAME:$PORTNUM" || true -fi - -if [ -n "$EMAIL" ]; then - db_set ccm/shared/waf_admin_email "$EMAIL" || true -fi - - -STATE=1 -LASTSTATE=5 - -while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do - case "$STATE" in - 1) - # Database questions - db_input high ccm/shared/dbase_type || true - db_input high ccm/shared/dbase_host || true - db_input high ccm/shared/dbase_name || true - db_input high ccm/shared/dbase_user || true - db_input high ccm/shared/dbase_password || true - - ;; - 2) - # Server address - db_input high ccm/shared/waf_web_server || true - ;; - 3) - # Admin questions - db_input high ccm/shared/waf_admin_email || true - db_input high ccm/shared/waf_admin_name_given || true - db_input high ccm/shared/waf_admin_name_family || true - db_input high ccm/shared/waf_admin_password || true - db_input high ccm/shared/waf_admin_password_question || true - db_input high ccm/shared/waf_admin_password_answer || true - ;; - 4) - # When to load the applications - db_input medium ccm/shared/ccm_load_apps_at_install_p || true - ;; - 5) - # Whether to set up the [local] database - db_get ccm/shared/dbase_host || true - if [ "$RET" = "localhost" ]; then - db_input medium ccm/shared/pg_set_up_database_p || true - fi - ;; - - # Add additional states here, making sure to - # increment LASTSTATE. - esac - - if db_go; then - STATE=$(($STATE + 1)) - else - STATE=$(($STATE - 1)) - fi -done - - -db_go || true - -db_stop - diff --git a/ccm-weblog/debian/control b/ccm-weblog/debian/control deleted file mode 100755 index 43306d27c..000000000 --- a/ccm-weblog/debian/control +++ /dev/null @@ -1,20 +0,0 @@ -Source: ccm-weblog -Section: contrib/web -Priority: optional -Maintainer: Runtime Packaging -Uploaders: David Pashley -Build-Depends-Indep: debhelper (>= 4.0.0), j2re1.4 | java2-runtime, j2sdk1.4 | java2-compiler, ant, libservlet2.3-java, libpgjava, debconf, po-debconf, ccm-tools, ccm-devel, ccm-scripts, ccm-core -Standards-Version: 3.6.1 - -Package: ccm-weblog -Architecture: all -Depends: java-virtual-machine-dummy | j2sdk1.4 | java-virtual-machine, ccm-tools, ccm-servlet-container, libservlet2.3-java, libpgjava, liblog4j1.2-java , ccm-core -Description: APLAWS: Weblog application. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-weblog-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-weblog - Documentation for ccm-weblog. Provides the JavaDoc API documentation. diff --git a/ccm-weblog/debian/copyright b/ccm-weblog/debian/copyright deleted file mode 100755 index a6d4b8bf0..000000000 --- a/ccm-weblog/debian/copyright +++ /dev/null @@ -1,14 +0,0 @@ -This package was debianized by Matt Roberts on -Wed, 11 Jan 2006 13:32:14 +0100. - - -Upstream Authors: Redhat UK. - -Copyright: - -You are free to distribute this software under the terms of -the GNU General Public License. -On Debian systems, the complete text of the GNU General Public -License can be found in the file `/usr/share/common-licenses/GPL'. - - diff --git a/ccm-weblog/debian/files b/ccm-weblog/debian/files deleted file mode 100755 index 08ccc8da9..000000000 --- a/ccm-weblog/debian/files +++ /dev/null @@ -1,2 +0,0 @@ -ccm-weblog_6.3.0-1_all.deb contrib/web optional -ccm-weblog-doc_6.3.0-1_all.deb contrib/web optional diff --git a/ccm-weblog/debian/postinst b/ccm-weblog/debian/postinst deleted file mode 100755 index 80e4a5233..000000000 --- a/ccm-weblog/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-weblog -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - -case "$1" in - configure|reconfigure) - # FIXME: we need to be sensitive to upgrade operations here. - # basically, if pkgversion = appversion, then the datamodel - # hasn't changed -- we just configure the package and don't - # touch the database; else, we need to also update the - # datamodel in the database. - - - ### get the settings for the operations below - - ccm_set_env - db_get_ccm_settings ;# db_stop - - get_pkgname_from_arg "$0" - ccm_package_name="$RET" - get_pkgversion_from_dpkg "$ccm_package_name" - ccm_package_version="$RET" - - - ### do the usual post-installion configuration - - if [ ! -d "/etc/ccm" ]; then - db_message "ccm/shared/error_etc_ccm_missing_dir" - mkdir -p "/etc/ccm" - fi - - ccm_update_ccm_classpath add $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps add $ccm_package_name $ccm_package_version - ccm_update_file_attributes $ccm_package_name $ccm_package_version - - - ### try to set up the database if asked to do so - - if [ "$pg_set_up_database_p" = "true" ]; then - pg_set_up_database - fi - - - ### try to load the application if asked to do so - - if [ "$ccm_load_apps_at_install_p" = "true" -a -n "$JAVA_HOME" ]; then - ccm_load - fi - - - ### run the hostinit step - - if [ -n "$JAVA_HOME" ]; then - tomcat_http_port=`echo $waf_web_server | cut -d':' -f2` || true - tomcat_shutdown_port=`expr $tomcat_http_port + 1` || true - ccm_host_init tomcat $tomcat_http_port $tomcat_shutdown_port - fi - - - ### don't give others the registry details [eg the database password] on a golden plate - # FIXME: this interferes with "ccm load" updating the registry. Need to find the right ownership. - # chmod -R o-rwx /etc/ccm/conf/registry || true - - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; - -esac - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-weblog/debian/postrm b/ccm-weblog/debian/postrm deleted file mode 100755 index 156b400cd..000000000 --- a/ccm-weblog/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-weblog -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -db_get_ccm_settings - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -if [ "$ccm_package_name" != "ccm-core" ]; then - exit 0 ;# nothing to do -fi - -case "$1" in - purge-FIXME) - # FIXME: there are problems with this, so disabling for the moment. - - # maybe drop the database - if [ "$dbase_host" = "localhost" ]; then - - db_input high ccm/shared/pg_drop_database_at_purge_p || true - db_go - db_stop - - if [ "$pg_drop_database_at_purge_p" = "true" ]; then - su - postgres -c "dropdb $dbase_name" 1>&2 || true - su - postgres -c "dropuser $dbase_user" 1>&2 || true - fi - - fi - - # FIXME: should we still remove /etc/ccm/conf/registry/registry.properties, - # even if we don't or fail to drop the database. - rm -rf /etc/ccm/conf/registry/* - ;; - - *) - # Nothing to do here. - ;; - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/ccm-weblog/debian/prerm b/ccm-weblog/debian/prerm deleted file mode 100755 index 1b0b86837..000000000 --- a/ccm-weblog/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-weblog -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -set -e - -. /usr/share/debconf/confmodule -. /usr/share/ccm-tools/lib/shellmodule - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - -db_get_ccm_settings ; db_stop - -get_pkgname_from_arg "$0" -ccm_package_name="$RET" -get_pkgversion_from_dpkg "$ccm_package_name" -ccm_package_version="$RET" - -case "$1" in - remove|purge|upgrade|deconfigure) - - ccm_update_ccm_classpath remove $ccm_package_name $ccm_package_version - ccm_update_ccm_webapps remove $ccm_package_name $ccm_package_version - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "prerm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -if [ "$1" = "remove" -a "$ccm_package_name" = "ccm-core" -a -x "/etc/init.d/ccm" ]; then - invoke-rc.d ccm stop || true -fi - - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - diff --git a/ccm-weblog/debian/rules b/ccm-weblog/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-weblog/debian/rules +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/make -f -# debian/rules that uses debhelper. -# This file is public domain software, originally written by Joey Hess. -# -# This version is for packages that are architecture independent. -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: rules,v 1.1.1.1 2004/11/12 09:30:00 fabrice Exp $ - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -build.xml: - dh_testdir - # Add here commands to configure the package. - @sh debian/ccm-config.sh - -build: build-stamp -build-stamp: build.xml - dh_testdir - - # Add here commands to compile the package. - @sh debian/ccm-build.sh - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - @sh debian/ccm-clean.sh - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/. - @sh debian/ccm-install.sh $(CURDIR)/debian/tmp - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdirs - dh_installchangelogs - dh_installdocs - dh_installexamples - @sh debian/ccm-disperse.sh debian/tmp -# dh_install --sourcedir=debian/tmp -# dh_installmenu - dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installcatalogs -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_undocumented - dh_installman - dh_link - dh_compress - dh_fixperms -# dh_perl -# dh_python - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install -# We have nothing to do by default. - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff --git a/ccm-weblog/debian/templates b/ccm-weblog/debian/templates deleted file mode 100755 index fcf6935fb..000000000 --- a/ccm-weblog/debian/templates +++ /dev/null @@ -1,207 +0,0 @@ -Template: ccm/debconf/version -Type: string -Default: $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 09:30:14 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-weblog -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.3.0 -Description: The version of the package - This is synthetic sugar. - -Template: ccm/shared/dbase_type -Type: select -Choices: postgresql -Default: postgresql -Description: Database backend: - Please choose a database backend. At the moment, you could only select PostgreSQL. - -Template: ccm/shared/dbase_host -Type: string -Default: localhost -Description: Database host: - Please specify the host that the database runs on. - -Template: ccm/shared/dbase_name -Type: string -Default: ccm01.db -Description: Database name: - Please specify the name of the APLAWS database. - -Template: ccm/shared/dbase_user -Type: string -Default: ccm -Description: Database user name: - Please specify the database account for the APLAWS database. - -Template: ccm/shared/dbase_password -Type: password -Default: ccmpwd -Description: Database password: - Please choose a password for the APLAWS database account. - -Template: ccm/shared/waf_runtime_jdbc_url -Type: string -Default: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd -Description: JDBC connection URL: - The WAF runtime uses this value to connect to a database. - . - Format: jdbc:[subprotocol]:[subname] - . - Example: jdbc:postgresql://localhost/ccm01.db?user=ccm&password=ccmpwd - -Template: ccm/shared/waf_web_server -Type: string -Default: localhost:9090 -Description: Server virtual host: - Please specify the hostname and port that users of a site will - see in URLs generated by WAF. - . - Format: [server hostname]:[port number] - . - Example: example.com:80 - -Template: ccm/shared/waf_admin_email -Type: string -Default: -Description: Administrator Email Address: - Please specify the system administrator account. - . - Format: @ - . - Example: joe@example.com - -Template: ccm/shared/waf_admin_name_given -Type: string -Default: -Description: Administrator First Name: - Please specify the name of the system administrator. - -Template: ccm/shared/waf_admin_name_family -Type: string -Default: -Description: Administrator Last Name: - Please specify the surname of the system administrator. - -Template: ccm/shared/waf_admin_password -Type: password -Default: -Description: Administrator Password - Please choose a password for the system administrator account. - -Template: ccm/shared/waf_admin_password_question -Type: string -Default: The name of your primary school -Description: Administrator Password Question: - This question will be asked when the password to the system administrator - account is lost and access must be recovered. - . - Please only use letters and numbers. - -Template: ccm/shared/waf_admin_password_answer -Type: string -Default: -Description: Administrator Password Answer: - Now specify the correct answer to the Administrator Password Question. - . - Please only use letters and numbers. - -Template: ccm/shared/ccm_load_apps_at_install_p -Type: boolean -Default: true -Description: Load CCM applications as they install? - You could choose to load CCM applications into the database - automatically after they are installed, or you could load them - manually [with 'ccm load'] yourself. - . - The former will save you some manual work, while the latter is probably - most suited if you are trying to build the applications from the - sources and prefer to load them once all are built and installed. - -Template: ccm/shared/pg_set_up_database_p -Type: boolean -Default: true -Description: Do you want me to set up the CCM database and adjust the access permissions? - You have specified a database on your localhost. I could set it up - for you and automatically adjust the access permissions. I could do - this independently of whether or not you have choosen to load the - applications at install time. - . - Say no here if you have already prepared the CCM database yourself - or if you would like to do it later. Saying yes will save you some - manual work. - -Template: ccm/shared/pg_drop_database_at_purge_p -Type: boolean -Default: true -Description: Do you want me to drop the CCM database? - - -Template: ccm/shared/error_etc_ccm_missing_dir -Type: note -Description: CCM configuration directory does not exist. - I couldn't find the CCM configuration directory: /etc/ccm. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package creates this directory --- please verify that it is installed and - intact. - . - I will continue with the configuration by re-creating the directory, - but we may experience problems later. - -Template: ccm/shared/ccm_aux_setupdb_failed -Type: note -Description: ccm-aux-setupdb couldn't complete. - The helper script ccm-aux-setupdb didn't succeed. - This means that the CCM database couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - prepare the database and load the application(s) after the - installation. - -Template: ccm/shared/ccm_aux_update_hba_conf_failed -Type: note -Description: ccm-aux-update-hba-conf couldn't complete. - The helper script ccm-aux-update-hba-conf didn't succeed. - This means that the access permissions for the ccm database - couldn't be set up. - . - If you have answered yes to the automatic loading of - applications at install time, I will still try to honour - that. - . - In case that doesn't succeed [likely now], please manually - check/edit the pg_hba.conf file of your PostgreSQL instance - and load the application(s) after the installation. - -Template: ccm/shared/error_ccm_tool_not_found -Type: note -Description: The 'ccm' tool not found. - I need the 'ccm' tool [/usr/bin/ccm] to continue but I cannot find it. - . - This probably points at a corrupt or unusual CCM installation. The ccm-tools - package contains this file --- please check your setup after the installation, - and then run "dpkg-reconfigure ccm-weblog". - -Template: ccm/shared/error_java_home_not_found -Type: note -Description: JAVA_HOME not found. - JAVA_HOME isn't set --- I have even tried to guess it but failed. - . - This will cancel any 'ccm load' and 'ccm hostinit' operations. - . - Please check your java setup after the installation, and then run - "dpkg-reconfigure ccm-"weblog. diff --git a/environment/project.xml.zes b/environment/project.xml.zes index c1903d4d1..b7dc03d9d 100644 --- a/environment/project.xml.zes +++ b/environment/project.xml.zes @@ -6,6 +6,7 @@ xmlns:ccm="http://ccm.redhat.com/ccm-project" ccmVersion="6.1" name="aplaws" + prettyName="APLAWS plus" version="1-0-5" release="alpha-1" webxml="web.xml-aplaws"