diff --git a/ccm-cms-assets-fileattachment/debian/ccm-build.sh b/ccm-cms-assets-fileattachment/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment/debian/ccm-clean.sh b/ccm-cms-assets-fileattachment/debian/ccm-clean.sh deleted file mode 100755 index 10baf5d63..000000000 --- a/ccm-cms-assets-fileattachment/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:01 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-assets-fileattachment/debian/ccm-cms-assets-fileattachment.dirs b/ccm-cms-assets-fileattachment/debian/ccm-cms-assets-fileattachment.dirs deleted file mode 100755 index 2c5fae5bd..000000000 --- a/ccm-cms-assets-fileattachment/debian/ccm-cms-assets-fileattachment.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-assets-fileattachment-6.3.1 diff --git a/ccm-cms-assets-fileattachment/debian/ccm-config.sh b/ccm-cms-assets-fileattachment/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment/debian/ccm-disperse.sh b/ccm-cms-assets-fileattachment/debian/ccm-disperse.sh deleted file mode 100755 index bb8ea053a..000000000 --- a/ccm-cms-assets-fileattachment/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:01 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-assets-fileattachment/debian/ccm-install.sh b/ccm-cms-assets-fileattachment/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment/debian/ccm-settings-run.sh b/ccm-cms-assets-fileattachment/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment/debian/ccm-settings.sh b/ccm-cms-assets-fileattachment/debian/ccm-settings.sh deleted file mode 100755 index 7e2bc3f93..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment -version=6.3.1 -appname=ccm-cms-assets-fileattachment -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-assets-fileattachment/debian/changelog b/ccm-cms-assets-fileattachment/debian/changelog deleted file mode 100755 index f2a033a7c..000000000 --- a/ccm-cms-assets-fileattachment/debian/changelog +++ /dev/null @@ -1,77 +0,0 @@ -ccm-cms-assets-fileattachment (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:18:59 +0000 - -ccm-cms-assets-fileattachment (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-assets-fileattachment (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:01 +0000 - -ccm-cms-assets-fileattachment (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:47:57 +0000 - -ccm-cms-assets-fileattachment (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:49 +0000 - -ccm-cms-assets-fileattachment (6.1.0-5) unstable; urgency=low - - * Depend on j2sdk1.4 | java2-compiler - * Depend on j2re1.4 | java2-runtime - * Update to policy 3.6.1 - * Depend on debconf - * Change maintainer to the mailing list and add uploaders - - -- David Pashley Wed, 19 Jan 2005 10:00:17 +0000 - -ccm-cms-assets-fileattachment (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-assets-fileattachment (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-assets-fileattachment (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-assets-fileattachment (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-assets-fileattachment/debian/compat b/ccm-cms-assets-fileattachment/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-assets-fileattachment/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-assets-fileattachment/debian/config b/ccm-cms-assets-fileattachment/debian/config deleted file mode 100755 index 82a3b0e65..000000000 --- a/ccm-cms-assets-fileattachment/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:01 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-assets-fileattachment/debian/control b/ccm-cms-assets-fileattachment/debian/control deleted file mode 100755 index 45d9b539c..000000000 --- a/ccm-cms-assets-fileattachment/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-assets-fileattachment -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-assets-fileattachment -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: Application to add file attachment to content items. - This package contains the Red Hat CMS Content Asset File Attachment application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-assets-fileattachment-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-assets-fileattachment - Documentation for ccm-cms-assets-fileattachment. Provides the JavaDoc API documentation. diff --git a/ccm-cms-assets-fileattachment/debian/copyright b/ccm-cms-assets-fileattachment/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment/debian/postinst b/ccm-cms-assets-fileattachment/debian/postinst deleted file mode 100755 index 737dd9ce4..000000000 --- a/ccm-cms-assets-fileattachment/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-assets-fileattachment -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 09:30:01 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-assets-fileattachment/debian/postrm b/ccm-cms-assets-fileattachment/debian/postrm deleted file mode 100755 index 435ac6075..000000000 --- a/ccm-cms-assets-fileattachment/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-assets-fileattachment -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 09:30:01 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-assets-fileattachment/debian/prerm b/ccm-cms-assets-fileattachment/debian/prerm deleted file mode 100755 index 582aee1fd..000000000 --- a/ccm-cms-assets-fileattachment/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-assets-fileattachment -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 09:30:01 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-assets-fileattachment/debian/rules b/ccm-cms-assets-fileattachment/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-assets-fileattachment/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-assets-fileattachment/debian/templates b/ccm-cms-assets-fileattachment/debian/templates deleted file mode 100755 index c1a825c1a..000000000 --- a/ccm-cms-assets-fileattachment/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:01 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:01 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-assets-fileattachment -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-assets-fileattachment". - -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-assets-fileattachment". diff --git a/ccm-cms-assets-notes/debian/ccm-build.sh b/ccm-cms-assets-notes/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/ccm-clean.sh b/ccm-cms-assets-notes/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/ccm-cms-assets-notes.dirs b/ccm-cms-assets-notes/debian/ccm-cms-assets-notes.dirs deleted file mode 100755 index 7c2cef821..000000000 --- a/ccm-cms-assets-notes/debian/ccm-cms-assets-notes.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-assets-notes-6.3.0 diff --git a/ccm-cms-assets-notes/debian/ccm-config.sh b/ccm-cms-assets-notes/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/ccm-disperse.sh b/ccm-cms-assets-notes/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/ccm-install.sh b/ccm-cms-assets-notes/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/ccm-settings-run.sh b/ccm-cms-assets-notes/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/ccm-settings.sh b/ccm-cms-assets-notes/debian/ccm-settings.sh deleted file mode 100755 index fccf86c46..000000000 --- a/ccm-cms-assets-notes/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-assets-notes -version=6.3.0 -appname=ccm-cms-assets-notes -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-assets-notes/debian/changelog b/ccm-cms-assets-notes/debian/changelog deleted file mode 100755 index 17a8993e1..000000000 --- a/ccm-cms-assets-notes/debian/changelog +++ /dev/null @@ -1,25 +0,0 @@ -ccm-cms-assets-notes (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-assets-notes (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:02 +0000 - -ccm-cms-assets-notes (6.1.2-2) unstable; urgency=low - - * Add a depends on ccm-devel, temporarily so they package builds under - cruisecontrol. This will be removed again once ccm-devel goes away. - * Add dependancy on ccm-scripts too. - - -- David Pashley Mon, 25 Apr 2005 15:33:43 +0100 - -ccm-cms-assets-notes (6.1.2-1) unstable; urgency=low - - * Initial release. - - -- Fabrice Retkowsky Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-assets-notes/debian/compat b/ccm-cms-assets-notes/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-assets-notes/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-assets-notes/debian/config b/ccm-cms-assets-notes/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/control b/ccm-cms-assets-notes/debian/control deleted file mode 100755 index 015a9eeaf..000000000 --- a/ccm-cms-assets-notes/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-assets-notes -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-assets-notes -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-assets-notes-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-assets-notes - Documentation for ccm-cms-assets-notes. Provides the JavaDoc API documentation. diff --git a/ccm-cms-assets-notes/debian/copyright b/ccm-cms-assets-notes/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/postinst b/ccm-cms-assets-notes/debian/postinst deleted file mode 100755 index 3a291a5d1..000000000 --- a/ccm-cms-assets-notes/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-assets-notes -# -# 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-assets-notes/debian/postrm b/ccm-cms-assets-notes/debian/postrm deleted file mode 100755 index 44b913ae4..000000000 --- a/ccm-cms-assets-notes/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-assets-notes -# -# 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-assets-notes/debian/prerm b/ccm-cms-assets-notes/debian/prerm deleted file mode 100755 index 245aafb79..000000000 --- a/ccm-cms-assets-notes/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-assets-notes -# -# 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-assets-notes/debian/rules b/ccm-cms-assets-notes/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-assets-notes/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-assets-notes/debian/templates b/ccm-cms-assets-notes/debian/templates deleted file mode 100755 index 9090ca5eb..000000000 --- a/ccm-cms-assets-notes/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-assets-notes -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-assets-notes". - -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-assets-notes". diff --git a/ccm-cms-assets-relatedlink/debian/ccm-build.sh b/ccm-cms-assets-relatedlink/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink/debian/ccm-clean.sh b/ccm-cms-assets-relatedlink/debian/ccm-clean.sh deleted file mode 100755 index 4cbcb32da..000000000 --- a/ccm-cms-assets-relatedlink/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 10:13:00 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-assets-relatedlink/debian/ccm-cms-assets-relatedlink.dirs b/ccm-cms-assets-relatedlink/debian/ccm-cms-assets-relatedlink.dirs deleted file mode 100755 index 70b25fff1..000000000 --- a/ccm-cms-assets-relatedlink/debian/ccm-cms-assets-relatedlink.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-cms-assets-relatedlink-6.3.0 diff --git a/ccm-cms-assets-relatedlink/debian/ccm-config.sh b/ccm-cms-assets-relatedlink/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink/debian/ccm-disperse.sh b/ccm-cms-assets-relatedlink/debian/ccm-disperse.sh deleted file mode 100755 index 31869bfa9..000000000 --- a/ccm-cms-assets-relatedlink/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 10:13:00 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-assets-relatedlink/debian/ccm-install.sh b/ccm-cms-assets-relatedlink/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink/debian/ccm-settings-run.sh b/ccm-cms-assets-relatedlink/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink/debian/ccm-settings.sh b/ccm-cms-assets-relatedlink/debian/ccm-settings.sh deleted file mode 100755 index 445b71c31..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink -version=6.3.0 -appname=ccm-cms-assets-relatedlink -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-assets-relatedlink/debian/changelog b/ccm-cms-assets-relatedlink/debian/changelog deleted file mode 100755 index b3e2719b7..000000000 --- a/ccm-cms-assets-relatedlink/debian/changelog +++ /dev/null @@ -1,64 +0,0 @@ -ccm-cms-assets-relatedlink (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-assets-relatedlink (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-assets-relatedlink (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-assets-relatedlink (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:05:44 +0000 - -ccm-cms-assets-relatedlink (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-assets-relatedlink (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-assets-relatedlink (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-assets-relatedlink (6.1.0-1) unstable; urgency=low - - * Initial release. - - -- Berkan Eskikaya Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-cms-assets-relatedlink/debian/compat b/ccm-cms-assets-relatedlink/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-cms-assets-relatedlink/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-cms-assets-relatedlink/debian/config b/ccm-cms-assets-relatedlink/debian/config deleted file mode 100755 index 1f58326a2..000000000 --- a/ccm-cms-assets-relatedlink/debian/config +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: config,v 1.1.1.1 2004/11/12 10:13: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-assets-relatedlink/debian/control b/ccm-cms-assets-relatedlink/debian/control deleted file mode 100755 index bc774b58a..000000000 --- a/ccm-cms-assets-relatedlink/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-cms-assets-relatedlink -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-assets-relatedlink -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: Application to add related links to content items. - This package contains the Red Hat CMS Content Asset Related Link application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-cms-assets-relatedlink-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-cms-assets-relatedlink - Documentation for ccm-cms-assets-relatedlink. Provides the JavaDoc API documentation. diff --git a/ccm-cms-assets-relatedlink/debian/copyright b/ccm-cms-assets-relatedlink/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink/debian/postinst b/ccm-cms-assets-relatedlink/debian/postinst deleted file mode 100755 index eaf12979d..000000000 --- a/ccm-cms-assets-relatedlink/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-cms-assets-relatedlink -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postinst,v 1.1.1.1 2004/11/12 10:13: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-assets-relatedlink/debian/postrm b/ccm-cms-assets-relatedlink/debian/postrm deleted file mode 100755 index a6062c42d..000000000 --- a/ccm-cms-assets-relatedlink/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-cms-assets-relatedlink -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: postrm,v 1.1.1.1 2004/11/12 10:13: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-assets-relatedlink/debian/prerm b/ccm-cms-assets-relatedlink/debian/prerm deleted file mode 100755 index 800fb6c6f..000000000 --- a/ccm-cms-assets-relatedlink/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-cms-assets-relatedlink -# -# see: dh_installdeb(1) -# -# Author: Berkan Eskikaya , 2004 -# -# $Id: prerm,v 1.1.1.1 2004/11/12 10:13: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-assets-relatedlink/debian/rules b/ccm-cms-assets-relatedlink/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-cms-assets-relatedlink/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-assets-relatedlink/debian/templates b/ccm-cms-assets-relatedlink/debian/templates deleted file mode 100755 index 0caca78f9..000000000 --- a/ccm-cms-assets-relatedlink/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 10:13:00 fabrice Exp $ -Description: The version of the debconf template - Author: Berkan Eskikaya , 2004 - . - $Id: templates,v 1.1.1.1 2004/11/12 10:13:00 fabrice Exp $ - -Template: ccm/package_name -Type: string -Default: ccm-cms-assets-relatedlink -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-assets-relatedlink". - -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-assets-relatedlink". diff --git a/ccm-formbuilder-pdf/debian/ccm-auth-http.dirs b/ccm-formbuilder-pdf/debian/ccm-auth-http.dirs deleted file mode 100755 index d48e32043..000000000 --- a/ccm-formbuilder-pdf/debian/ccm-auth-http.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-formbuilder-pdf-1.4.1 diff --git a/ccm-formbuilder-pdf/debian/ccm-build.sh b/ccm-formbuilder-pdf/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/ccm-clean.sh b/ccm-formbuilder-pdf/debian/ccm-clean.sh deleted file mode 100755 index d0b5a2b0e..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/ccm-config.sh b/ccm-formbuilder-pdf/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/ccm-disperse.sh b/ccm-formbuilder-pdf/debian/ccm-disperse.sh deleted file mode 100755 index 9a96b00a9..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/ccm-formbuilder-pdf.dirs b/ccm-formbuilder-pdf/debian/ccm-formbuilder-pdf.dirs deleted file mode 100755 index 2b9bb23bc..000000000 --- a/ccm-formbuilder-pdf/debian/ccm-formbuilder-pdf.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-formbuilder-pdf-6.3.0 diff --git a/ccm-formbuilder-pdf/debian/ccm-install.sh b/ccm-formbuilder-pdf/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/ccm-settings-run.sh b/ccm-formbuilder-pdf/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/ccm-settings.sh b/ccm-formbuilder-pdf/debian/ccm-settings.sh deleted file mode 100755 index 671575efc..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf -version=6.3.0 -appname=ccm-formbuilder-pdf -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-formbuilder-pdf/debian/changelog b/ccm-formbuilder-pdf/debian/changelog deleted file mode 100755 index 87935b110..000000000 --- a/ccm-formbuilder-pdf/debian/changelog +++ /dev/null @@ -1,30 +0,0 @@ -ccm-formbuilder-pdf (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-formbuilder-pdf (6.2.0-1) unstable; urgency=low - - * Automatic update of version number from 0.6.0 to 6.2.0 - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 12:30:10 +0000 - -ccm-formbuilder-pdf (0.6.0-1) unstable; urgency=low - - * Automatic update of version number from 0.5.0 to 0.6.0 - - -- Runtime Collective Ltd. Mon, 05 Sep 2005 15:48:12 +0000 - -ccm-formbuilder-pdf (0.5.0-2) unstable; urgency=low - - * Add ccm-devel to the build-dependancies - * Add ccm-scripts to the build-dependances - - -- David Pashley Thu, 28 Apr 2005 11:42:28 +0100 - -ccm-formbuilder-pdf (0.5.0-1) unstable; urgency=low - - * Initial release. - - -- Fabrice Retkowsky Fri, 24 Apr 2004 12:27:56 +0100 diff --git a/ccm-formbuilder-pdf/debian/compat b/ccm-formbuilder-pdf/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-formbuilder-pdf/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-formbuilder-pdf/debian/config b/ccm-formbuilder-pdf/debian/config deleted file mode 100755 index 5045bb9da..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/control b/ccm-formbuilder-pdf/debian/control deleted file mode 100755 index b66e88ef2..000000000 --- a/ccm-formbuilder-pdf/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-formbuilder-pdf -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-formbuilder-pdf -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-formbuilder-pdf-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-formbuilder-pdf - Documentation for ccm-formbuilder-pdf. Provides the JavaDoc API documentation. diff --git a/ccm-formbuilder-pdf/debian/copyright b/ccm-formbuilder-pdf/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/postinst b/ccm-formbuilder-pdf/debian/postinst deleted file mode 100755 index 5b2762699..000000000 --- a/ccm-formbuilder-pdf/debian/postinst +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/sh -# postinst script for ccm-formbuilder-pdf -# -# 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-formbuilder-pdf/debian/postrm b/ccm-formbuilder-pdf/debian/postrm deleted file mode 100755 index 985293fa7..000000000 --- a/ccm-formbuilder-pdf/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-formbuilder-pdf -# -# 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-formbuilder-pdf/debian/prerm b/ccm-formbuilder-pdf/debian/prerm deleted file mode 100755 index dbc12c311..000000000 --- a/ccm-formbuilder-pdf/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-formbuilder-pdf -# -# 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-formbuilder-pdf/debian/rules b/ccm-formbuilder-pdf/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf/debian/templates b/ccm-formbuilder-pdf/debian/templates deleted file mode 100755 index 818d94f72..000000000 --- a/ccm-formbuilder-pdf/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-formbuilder-pdf -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-formbuilder-pdf". - -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-formbuilder-pdf". diff --git a/ccm-shp-aplaws/debian/ccm-build-bundles.sh b/ccm-shp-aplaws/debian/ccm-build-bundles.sh deleted file mode 100755 index d9ce5db25..000000000 --- a/ccm-shp-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-shp-aplaws-${VER_NUM}-bundles.jar diff --git a/ccm-shp-aplaws/debian/ccm-build.sh b/ccm-shp-aplaws/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-shp-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-shp-aplaws/debian/ccm-clean.sh b/ccm-shp-aplaws/debian/ccm-clean.sh deleted file mode 100755 index 3c10238d3..000000000 --- a/ccm-shp-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-shp-aplaws/debian/ccm-config.sh b/ccm-shp-aplaws/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-shp-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-shp-aplaws/debian/ccm-disperse.sh b/ccm-shp-aplaws/debian/ccm-disperse.sh deleted file mode 100755 index 0c075d070..000000000 --- a/ccm-shp-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-shp-aplaws/debian/ccm-install.sh b/ccm-shp-aplaws/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-shp-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-shp-aplaws/debian/ccm-ldn-aplaws.dirs b/ccm-shp-aplaws/debian/ccm-ldn-aplaws.dirs deleted file mode 100755 index cde7d62d5..000000000 --- a/ccm-shp-aplaws/debian/ccm-ldn-aplaws.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-shp-aplaws-6.5.0 diff --git a/ccm-shp-aplaws/debian/ccm-settings-run.sh b/ccm-shp-aplaws/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-shp-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-shp-aplaws/debian/ccm-settings.sh b/ccm-shp-aplaws/debian/ccm-settings.sh deleted file mode 100755 index 6bac196d2..000000000 --- a/ccm-shp-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-shp-aplaws -version=6.5.0 -appname=ccm-shp-aplaws -appversion=6.5.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-shp-aplaws/debian/changelog b/ccm-shp-aplaws/debian/changelog deleted file mode 100755 index eb57ca074..000000000 --- a/ccm-shp-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-shp-aplaws/debian/compat b/ccm-shp-aplaws/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-shp-aplaws/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-shp-aplaws/debian/config b/ccm-shp-aplaws/debian/config deleted file mode 100755 index da490fef1..000000000 --- a/ccm-shp-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-shp-aplaws/debian/control b/ccm-shp-aplaws/debian/control deleted file mode 100755 index edb1db26a..000000000 --- a/ccm-shp-aplaws/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-shp-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-shp-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 for non-governmental use. - This package contains the APLAWS application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-shp-aplaws-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-shp-aplaws - Documentation for ccm-shp-aplaws. Provides the JavaDoc API documentation. diff --git a/ccm-shp-aplaws/debian/copyright b/ccm-shp-aplaws/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-shp-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-shp-aplaws/debian/postinst b/ccm-shp-aplaws/debian/postinst deleted file mode 100755 index 3f58d8ea3..000000000 --- a/ccm-shp-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-shp-aplaws/debian/postrm b/ccm-shp-aplaws/debian/postrm deleted file mode 100755 index 6acca2ed7..000000000 --- a/ccm-shp-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-shp-aplaws/debian/prerm b/ccm-shp-aplaws/debian/prerm deleted file mode 100755 index 50dff3f91..000000000 --- a/ccm-shp-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-shp-aplaws/debian/rules b/ccm-shp-aplaws/debian/rules deleted file mode 100755 index 00c691011..000000000 --- a/ccm-shp-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-shp-aplaws/debian/templates b/ccm-shp-aplaws/debian/templates deleted file mode 100755 index 87f1f6eaa..000000000 --- a/ccm-shp-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-shp-aplaws -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.5.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-webpage/debian/ccm-build.sh b/ccm-webpage/debian/ccm-build.sh deleted file mode 100755 index 6d0fad9cd..000000000 --- a/ccm-webpage/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-webpage/debian/ccm-clean.sh b/ccm-webpage/debian/ccm-clean.sh deleted file mode 100755 index 464b9ed1b..000000000 --- a/ccm-webpage/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-webpage/debian/ccm-config.sh b/ccm-webpage/debian/ccm-config.sh deleted file mode 100755 index 90094298f..000000000 --- a/ccm-webpage/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-webpage/debian/ccm-disperse.sh b/ccm-webpage/debian/ccm-disperse.sh deleted file mode 100755 index e662dff4f..000000000 --- a/ccm-webpage/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-webpage/debian/ccm-install.sh b/ccm-webpage/debian/ccm-install.sh deleted file mode 100755 index 39f3f2839..000000000 --- a/ccm-webpage/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-webpage/debian/ccm-settings-run.sh b/ccm-webpage/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-webpage/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-webpage/debian/ccm-settings.sh b/ccm-webpage/debian/ccm-settings.sh deleted file mode 100755 index 79eb1445a..000000000 --- a/ccm-webpage/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-webpage -version=6.3.0 -appname=ccm-webpage -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-webpage/debian/ccm-webpage-doc.install b/ccm-webpage/debian/ccm-webpage-doc.install deleted file mode 100755 index 3e0ec18d9..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc.install +++ /dev/null @@ -1,71 +0,0 @@ -var/www/html/ccm-webpage-6.3.0/api/help-doc.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortlet.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/AuthorLabelPrinter.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/ContentPanelWebpageNode.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpageCMSEditorPage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpageCMSEditorPage.WebpageCMSEditorForm.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.WebpagePortletEditorForm.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/CategoriesPrintListener.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePreviewPage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditor.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesForm.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesForm.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesStep.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-frame.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-use.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesStep.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-tree.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-summary.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-frame.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortlet.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/AuthorLabelPrinter.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/ContentPanelWebpageNode.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-tree.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.WebpagePortletEditorForm.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditor.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/CategoriesPrintListener.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePreviewPage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-use.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-summary.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/WebpageInitializer.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/Initializer.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-use.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-summary.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/WebpageInitializer.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-tree.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-frame.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/Initializer.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageLoader.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConstants.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/Webpage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageLoader.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConfig.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConfig.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/Webpage.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-frame.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-summary.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-tree.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-use.html -var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConstants.html -var/www/html/ccm-webpage-6.3.0/api/stylesheet.css -var/www/html/ccm-webpage-6.3.0/api/serialized-form.html -var/www/html/ccm-webpage-6.3.0/api/packages.html -var/www/html/ccm-webpage-6.3.0/api/constant-values.html -var/www/html/ccm-webpage-6.3.0/api/index-all.html -var/www/html/ccm-webpage-6.3.0/api/index.html -var/www/html/ccm-webpage-6.3.0/api/overview-summary.html -var/www/html/ccm-webpage-6.3.0/api/package-list -var/www/html/ccm-webpage-6.3.0/api/resources/inherit.gif -var/www/html/ccm-webpage-6.3.0/api/allclasses-frame.html -var/www/html/ccm-webpage-6.3.0/api/overview-frame.html -var/www/html/ccm-webpage-6.3.0/api/allclasses-noframe.html -var/www/html/ccm-webpage-6.3.0/api/overview-tree.html -var/www/html/ccm-webpage-6.3.0/api/deprecated-list.html diff --git a/ccm-webpage/debian/ccm-webpage-doc/DEBIAN/control b/ccm-webpage/debian/ccm-webpage-doc/DEBIAN/control deleted file mode 100755 index 3b29fe75f..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-webpage-doc -Version: 6.3.0-9 -Section: contrib/web -Priority: optional -Architecture: all -Depends: ccm-tools -Installed-Size: 976 -Maintainer: Runtime Packaging -Source: ccm-webpage -Description: Documentation for ccm-webpage - Documentation for ccm-webpage. Provides the JavaDoc API documentation. diff --git a/ccm-webpage/debian/ccm-webpage-doc/DEBIAN/md5sums b/ccm-webpage/debian/ccm-webpage-doc/DEBIAN/md5sums deleted file mode 100755 index 956862553..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/DEBIAN/md5sums +++ /dev/null @@ -1,73 +0,0 @@ -ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-webpage-doc/copyright -0c9aaf2f738d4cb686dba663a7d02db6 usr/share/doc/ccm-webpage-doc/changelog.Debian.gz -a58cd5cb593cf825d6122689e11cf311 var/www/html/ccm-webpage-6.3.0/api/help-doc.html -21f91e51d04d45700744c7233937fe8f var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.html -1a8bd23820e0f15934752fe057c2d72b var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortlet.html -4a1053f466c717e99ed864e62c9809c5 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/AuthorLabelPrinter.html -7ceb4840ba1afb41ab786e52d9454852 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/ContentPanelWebpageNode.html -0d6737fa6b7365bcde2bde073400974f var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpageCMSEditorPage.html -6f0e226cf28e83eba9fa228443a4e5ad var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpageCMSEditorPage.WebpageCMSEditorForm.html -95a3c84de7c970623214bebb2904088e var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.WebpagePortletEditorForm.html -c6a66d5092c2bff26dc86716f8e1c19a var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/CategoriesPrintListener.html -1d836223bad7f26c043f97823e86447a var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePreviewPage.html -05774c9ec21aa03df700a434faf5e630 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html -cb60eabec394a054e9d852554ed663eb var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html -95f64fed6f65af23da0bf54f81135fd9 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditor.html -ff7db1bfd3c44ba37c6f4a967d2f06ca var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html -1fbbae522a9e8fab184b3b9163c0b997 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesForm.html -a42fcaf1cc9cc5ab837a1e1314bf1901 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesForm.html -6c4fd488530e51920617fb10616bea0a var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesStep.html -ba265abaf41717f7eee5aa283b26fa60 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-frame.html -9a33896e369befb7ca8a1bd9291bada9 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-use.html -fae6a3992615bfaaf70cee3a13e27b56 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesStep.html -9563ed37aaa07fa1176ba6ee1371a438 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-tree.html -bd9f50a70881b0c5474986d4e2b2c0ed var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-summary.html -8363e172f2e74611889363feaea05f4f var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-frame.html -963895d7041501fe20c5eafd94424c73 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortlet.html -aac226fa328ef030870fd029604c7645 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html -50426dd216eec312e82f9bed49ae75cb var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/AuthorLabelPrinter.html -86fe592b04b874b50792d0d67ecb92ea var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/ContentPanelWebpageNode.html -17ee861150ba42ed89131311bacb4a67 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-tree.html -183f593016b2b61bdb7872e426a39b61 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.WebpagePortletEditorForm.html -08e45e0b90154c6cc47771a75e1209a8 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.html -41bde73ae6eeb7705368384eea260283 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditor.html -84d25b0e2a0448642377dffdf9e5bdbd var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/CategoriesPrintListener.html -8a62cb1e5c742771f48b4f82d7aae051 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePreviewPage.html -db11062ca7da9313d2492b686953939c var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-use.html -b95d124158a483e9a256c009c56f6839 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.html -a1ee0c3adeea035321ca18673acd6a56 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-summary.html -c0a90d9403ae2c75aa641b6d795a44bf var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.html -55a05b04b80aa7fb704fd4a880c13afb var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/WebpageInitializer.html -45c9c599e5ffff14a032606fc7db615a var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/Initializer.html -c8bad6bc7086d5b5fe25af84154f7b5d var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-use.html -003cf1028a786281448f4de0da3791f9 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-summary.html -d702e7cf31f39c991b761a2c9807ddbd var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/WebpageInitializer.html -c12da28c31419d5813a23b481035bcd1 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-tree.html -9fe9f13a648bf63496b26927b4097b4b var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-frame.html -290d4019bffad7c63a9c08e3ccc4ad35 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/Initializer.html -ee09020d916496787fe136ed3d534182 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageLoader.html -3de56f484ead273cb8f186286147e04e var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConstants.html -6f96e26960bd0804a3d5a8c75123fddb var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/Webpage.html -5f84aad23ae2bb1b74016c25261756e6 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageLoader.html -963e2d0db90620de077f3074277219d5 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConfig.html -2531d809f2d375240701b5d8255eaaf0 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConfig.html -68fe51d87e075570fc591dafb7aa7ced var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/Webpage.html -ccbd9146cba227e412bb27a81539ec54 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-frame.html -ee68fd75f597ecc08b9ed62cda2d5a4d var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-summary.html -15ca57d876bf3614bac1565cd8349804 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-tree.html -a0f80dda11059597b6f8eab4d598fb8d var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-use.html -c29592391aa198b7576ed9f53ae3e181 var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConstants.html -8cc88314fce0cc52e57f9ccb2cb8436e var/www/html/ccm-webpage-6.3.0/api/stylesheet.css -110da3695dd2cf93285912d160324461 var/www/html/ccm-webpage-6.3.0/api/serialized-form.html -59555d259e23af9f275e29f3fdee85ae var/www/html/ccm-webpage-6.3.0/api/packages.html -24c7644f3023c08db4cef79e24bd062f var/www/html/ccm-webpage-6.3.0/api/constant-values.html -ad9692ab44422770c2279a15bf26f8cf var/www/html/ccm-webpage-6.3.0/api/index-all.html -0ff58a745416c2655ed16d74987bf007 var/www/html/ccm-webpage-6.3.0/api/index.html -92ea6995bb8286bc907ab6854948a8d1 var/www/html/ccm-webpage-6.3.0/api/overview-summary.html -0c9a53d6bd798521d9655dd9576f6042 var/www/html/ccm-webpage-6.3.0/api/package-list -220f4eda0bd49915699315f18b8b03cf var/www/html/ccm-webpage-6.3.0/api/resources/inherit.gif -f4a4b2a6200da478983546337eb688c8 var/www/html/ccm-webpage-6.3.0/api/allclasses-frame.html -8bcd7e4ce9942fcde3a32b2f1e46d86f var/www/html/ccm-webpage-6.3.0/api/overview-frame.html -c7fb031a91e286430f44a6dd8bdfe165 var/www/html/ccm-webpage-6.3.0/api/allclasses-noframe.html -0e9013355af88bf146cc68c70131efe0 var/www/html/ccm-webpage-6.3.0/api/overview-tree.html -3e2e372cff9c3dcea1869d6125e1c87f var/www/html/ccm-webpage-6.3.0/api/deprecated-list.html diff --git a/ccm-webpage/debian/ccm-webpage-doc/usr/share/doc/ccm-webpage-doc/changelog.Debian.gz b/ccm-webpage/debian/ccm-webpage-doc/usr/share/doc/ccm-webpage-doc/changelog.Debian.gz deleted file mode 100755 index 2c5d36598..000000000 Binary files a/ccm-webpage/debian/ccm-webpage-doc/usr/share/doc/ccm-webpage-doc/changelog.Debian.gz and /dev/null differ diff --git a/ccm-webpage/debian/ccm-webpage-doc/usr/share/doc/ccm-webpage-doc/copyright b/ccm-webpage/debian/ccm-webpage-doc/usr/share/doc/ccm-webpage-doc/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/usr/share/doc/ccm-webpage-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-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/allclasses-frame.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/allclasses-frame.html deleted file mode 100755 index ba1c08f48..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/allclasses-frame.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - -All Classes (Webpage API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
AuthorLabelPrinter -
-CategoriesPrintListener -
-ContentPanelWebpageNode -
-Initializer -
-Webpage -
-WebpageCMSEditorPage -
-WebpageConfig -
-WebpageConstants -
-WebpageInitializer -
-WebpageLoader -
-WebpagePortlet -
-WebpagePortletEditor -
-WebpagePortletEditorPage -
-WebpagePreviewPage -
-WebpagePropertiesForm -
-WebpagePropertiesStep -
-
- - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/allclasses-noframe.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/allclasses-noframe.html deleted file mode 100755 index 571e69855..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/allclasses-noframe.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - -All Classes (Webpage API Documentation) - - - - - - - - - - -All Classes -
- - - - - -
AuthorLabelPrinter -
-CategoriesPrintListener -
-ContentPanelWebpageNode -
-Initializer -
-Webpage -
-WebpageCMSEditorPage -
-WebpageConfig -
-WebpageConstants -
-WebpageInitializer -
-WebpageLoader -
-WebpagePortlet -
-WebpagePortletEditor -
-WebpagePortletEditorPage -
-WebpagePreviewPage -
-WebpagePropertiesForm -
-WebpagePropertiesStep -
-
- - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/Webpage.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/Webpage.html deleted file mode 100755 index 21534285b..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/Webpage.html +++ /dev/null @@ -1,967 +0,0 @@ - - - - - - -Webpage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage -
-Class Webpage

-
-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.webpage.Webpage
-
-
-
All Implemented Interfaces:
com.arsdigita.auditing.Audited, com.arsdigita.cms.CustomCopy
-
-
-
-
public class Webpage
extends com.arsdigita.cms.ContentPage
- -

-This content type represents a webpage. -

- -

-

-
Author:
-
Tzu-Mainn Chen
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringAUTHOR - -
-           
-static StringAUTHOR_LAST_NAME - -
-           
-static StringBASE_DATA_OBJECT_TYPE - -
-          Data object type for this domain object
-static StringBODY - -
-           
-static StringCREATOR - -
-           
-static StringDESCRIPTION - -
-          PDL properties
-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
-  - - - - - - - - - - - - - - - - - - - - - - -
-Constructor Summary
Webpage() - -
-           
Webpage(BigDecimal id) - -
-           
Webpage(com.arsdigita.persistence.DataObject obj) - -
-           
Webpage(com.arsdigita.persistence.OID id) - -
-           
Webpage(String type) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidbeforeSave() - -
-           
- StringgetAuthor() - -
-           
- StringgetAuthorLastName() - -
-           
- StringgetBody() - -
-           
- com.arsdigita.kernel.UsergetCreator() - -
-           
- StringgetDescription() - -
-           
- StringgetImpliedAuthor() - -
-           
- DategetLastModifiedLocal() - -
-           
- com.arsdigita.cms.Folder.ItemCollectiongetWebpagesWithName(com.arsdigita.cms.Folder parentFolder, - String name) - -
-           
- booleanisFile() - -
-           
- booleanisFolder() - -
-           
- booleanisRoot() - -
-           
-static WebpageretrieveWebpage(com.arsdigita.persistence.DataObject documentData) - -
-          Returns a document for the given data object.
- voidsetAuthor(String author) - -
-           
- voidsetBody(String body) - -
-           
- voidsetCategories(String[] catIDs) - -
-           
- voidsetCreator(com.arsdigita.kernel.User creator) - -
-           
- voidsetDescription(String description) - -
-           
- voidsetLastModifiedLocal(Date last) - -
-           
- voidsetTitle(String title) - -
-           
- URLtoURL() - -
-           
- - - - - - - -
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, delete, 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
-  -

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

-DESCRIPTION

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

-

-
See Also:
Constant Field Values
-
-
- -

-BODY

-
-public static final String BODY
-
-
-
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
-
-
- -

-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
- -

-Webpage

-
-public Webpage()
-
-
-
- -

-Webpage

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

-Webpage

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

-Webpage

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

-Webpage

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

-retrieveWebpage

-
-public static Webpage retrieveWebpage(com.arsdigita.persistence.DataObject documentData)
-
-
Returns a document for the given data object. Use this method instead - of the new Webpage(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()
-
-
-
-
-
-
- -

-setDescription

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

-getBody

-
-public String getBody()
-
-
-
-
-
-
- -

-setBody

-
-public void setBody(String body)
-
-
-
-
-
-
- -

-getCreator

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

-setCreator

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

-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)
-
-
-
-
-
-
- -

-isFolder

-
-public boolean isFolder()
-
-
-
-
-
-
- -

-isFile

-
-public boolean isFile()
-
-
-
-
-
-
- -

-toURL

-
-public URL toURL()
-
-
-
-
-
-
- -

-isRoot

-
-public boolean isRoot()
-
-
-
-
-
-
- -

-beforeSave

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

-setCategories

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

-getWebpagesWithName

-
-public com.arsdigita.cms.Folder.ItemCollection getWebpagesWithName(com.arsdigita.cms.Folder parentFolder,
-                                                                   String name)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConfig.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConfig.html deleted file mode 100755 index 26d4332d9..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConfig.html +++ /dev/null @@ -1,344 +0,0 @@ - - - - - - -WebpageConfig (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage -
-Class WebpageConfig

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

-


- -

- - - - - - - - - - - - - - -
-Field Summary
-static StringversionId - -
-           
-  - - - - - - - - - - -
-Constructor Summary
WebpageConfig() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- StringgetContentSection() - -
-           
- com.arsdigita.cms.ContentSectiongetWebpageSection() - -
-           
- voidsetContentSection(String section) - -
-           
- - - - - - - -
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
- -

-WebpageConfig

-
-public WebpageConfig()
-
-
- - - - - - - - -
-Method Detail
- -

-getContentSection

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

-setContentSection

-
-public final void setContentSection(String section)
-
-
-
-
-
-
- -

-getWebpageSection

-
-public final com.arsdigita.cms.ContentSection getWebpageSection()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConstants.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConstants.html deleted file mode 100755 index 0e6816f5e..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageConstants.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - -WebpageConstants (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage -
-Interface WebpageConstants

-
-
All Known Implementing Classes:
WebpageCMSEditorPage
-
-
-
-
public interface WebpageConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBODY_ELEMENT - -
-           
-static StringFOOTER_ELEMENT - -
-           
-static StringHEADER_ELEMENT - -
-           
-static StringXML_NS - -
-           
-  - - - - - - -

- - - - - - - - -
-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
-
- - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageLoader.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageLoader.html deleted file mode 100755 index 40409574b..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/WebpageLoader.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - -WebpageLoader (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage -
-Class WebpageLoader

-
-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.webpage.WebpageLoader
-
-
-
All Implemented Interfaces:
com.arsdigita.util.parameter.ParameterContext, com.arsdigita.runtime.Script
-
-
-
-
public class WebpageLoader
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
WebpageLoader() - -
-           
-  - - - - - - - - - - - -
-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
- -

-WebpageLoader

-
-public WebpageLoader()
-
-
- - - - - - - - -
-Method Detail
- -

-getTypes

-
-public String[] getTypes()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/Webpage.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/Webpage.html deleted file mode 100755 index 72e6a0cd0..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/Webpage.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.webpage.Webpage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.webpage.Webpage

-
- - - - - - - - - - - - - -
-Packages that use Webpage
com.arsdigita.cms.webpage  
com.arsdigita.cms.webpage.ui  
-  -

- - - - - -
-Uses of Webpage in com.arsdigita.cms.webpage
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.webpage that return Webpage
-static WebpageWebpage.retrieveWebpage(com.arsdigita.persistence.DataObject documentData) - -
-          Returns a document for the given data object.
-  -

- - - - - -
-Uses of Webpage in com.arsdigita.cms.webpage.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.webpage.ui that return Webpage
- WebpageWebpagePortlet.getWebpage() - -
-           
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.webpage.ui with parameters of type Webpage
- voidWebpagePortlet.setWebpage(Webpage webpage) - -
-           
-  -

-


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

-Uses of Class
com.arsdigita.cms.webpage.WebpageConfig

-
- - - - - - - - - -
-Packages that use WebpageConfig
com.arsdigita.cms.webpage.installer  
-  -

- - - - - -
-Uses of WebpageConfig in com.arsdigita.cms.webpage.installer
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.webpage.installer that return WebpageConfig
-static WebpageConfigInitializer.getConfig() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConstants.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConstants.html deleted file mode 100755 index 5cde86db9..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/class-use/WebpageConstants.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -Uses of Interface com.arsdigita.cms.webpage.WebpageConstants (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
com.arsdigita.cms.webpage.WebpageConstants

-
- - - - - - - - - -
-Packages that use WebpageConstants
com.arsdigita.cms.webpage.ui  
-  -

- - - - - -
-Uses of WebpageConstants in com.arsdigita.cms.webpage.ui
-  -

- - - - - - - - - -
Classes in com.arsdigita.cms.webpage.ui that implement WebpageConstants
- classWebpageCMSEditorPage - -
-           
-  -

-


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

-Uses of Class
com.arsdigita.cms.webpage.WebpageLoader

-
-No usage of com.arsdigita.cms.webpage.WebpageLoader -

-


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

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

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

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.runtime.CompoundInitializer
versionId
-  - - - - - - - - - - -
-Constructor Summary
Initializer() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static WebpageConfiggetConfig() - -
-           
- voidinit(com.arsdigita.runtime.DomainInitEvent e) - -
-           
- voidshutdown() - -
-           
- voidstartup() - -
-           
- - - - - - - -
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)
-
-
-
-
-
-
- -

-getConfig

-
-public static WebpageConfig getConfig()
-
-
-
-
-
-
- -

-startup

-
-public void startup()
-
-
-
-
-
-
- -

-shutdown

-
-public void shutdown()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/WebpageInitializer.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/WebpageInitializer.html deleted file mode 100755 index fb1bfa0d9..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/WebpageInitializer.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - -WebpageInitializer (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.installer -
-Class WebpageInitializer

-
-java.lang.Object
-  extended bycom.arsdigita.runtime.CompoundInitializer
-      extended bycom.arsdigita.cms.contenttypes.ContentTypeInitializer
-          extended bycom.arsdigita.cms.webpage.installer.WebpageInitializer
-
-
-
All Implemented Interfaces:
com.arsdigita.runtime.Initializer
-
-
-
-
public class WebpageInitializer
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
WebpageInitializer() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- String[]getStylesheets() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.contenttypes.ContentTypeInitializer
getTraversalXML, 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
- -

-WebpageInitializer

-
-public WebpageInitializer()
-
-
- - - - - - - - -
-Method Detail
- -

-getStylesheets

-
-public String[] getStylesheets()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/Initializer.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/Initializer.html deleted file mode 100755 index 9ab8193ad..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/class-use/Initializer.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.webpage.installer.Initializer (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.webpage.installer.Initializer

-
-No usage of com.arsdigita.cms.webpage.installer.Initializer -

-


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

-Uses of Class
com.arsdigita.cms.webpage.installer.WebpageInitializer

-
-No usage of com.arsdigita.cms.webpage.installer.WebpageInitializer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-frame.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-frame.html deleted file mode 100755 index 864539bcc..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage.installer (Webpage API Documentation) - - - - - - - - - - - -com.arsdigita.cms.webpage.installer - - - - -
-Classes  - -
-Initializer -
-WebpageInitializer
- - - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-summary.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-summary.html deleted file mode 100755 index deaf51aba..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-summary.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage.installer (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.webpage.installer -

- - - - - - - - - - - - - -
-Class Summary
Initializer 
WebpageInitializer 
-  - -

-


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

-Hierarchy For Package com.arsdigita.cms.webpage.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.contenttypes.ContentTypeInitializer -
      • class com.arsdigita.cms.webpage.installer.Initializer
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-use.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-use.html deleted file mode 100755 index 730b7b4a0..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/installer/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.webpage.installer (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.webpage.installer

-
-No usage of com.arsdigita.cms.webpage.installer -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-frame.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-frame.html deleted file mode 100755 index 1c145e314..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-frame.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage (Webpage API Documentation) - - - - - - - - - - - -com.arsdigita.cms.webpage - - - - -
-Interfaces  - -
-WebpageConstants
- - - - - - -
-Classes  - -
-Webpage -
-WebpageConfig -
-WebpageLoader
- - - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-summary.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-summary.html deleted file mode 100755 index e4062840c..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-summary.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.webpage -

- - - - - - - - - -
-Interface Summary
WebpageConstants 
-  - -

- - - - - - - - - - - - - - - - - -
-Class Summary
WebpageThis content type represents a webpage.
WebpageConfig 
WebpageLoader 
-  - -

-


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

-Hierarchy For Package com.arsdigita.cms.webpage -

-
-
-
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.contenttypes.AbstractContentTypeLoader -
          -
        -
      -
    • class com.arsdigita.domain.DomainObject
        -
      • class com.arsdigita.domain.ObservableDomainObject
          -
        • class com.arsdigita.kernel.ACSObject
            -
          • 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.webpage.Webpage
                -
              -
            -
          -
        -
      -
    -
-

-Interface Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-use.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-use.html deleted file mode 100755 index 3b270bc0e..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/package-use.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.webpage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.webpage

-
- - - - - - - - - - - - - - - - - -
-Packages that use com.arsdigita.cms.webpage
com.arsdigita.cms.webpage  
com.arsdigita.cms.webpage.installer  
com.arsdigita.cms.webpage.ui  
-  -

- - - - - - - - -
-Classes in com.arsdigita.cms.webpage used by com.arsdigita.cms.webpage
Webpage - -
-          This content type represents a webpage.
-  -

- - - - - - - - -
-Classes in com.arsdigita.cms.webpage used by com.arsdigita.cms.webpage.installer
WebpageConfig - -
-           
-  -

- - - - - - - - - - - -
-Classes in com.arsdigita.cms.webpage used by com.arsdigita.cms.webpage.ui
Webpage - -
-          This content type represents a webpage.
WebpageConstants - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/AuthorLabelPrinter.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/AuthorLabelPrinter.html deleted file mode 100755 index beee8e99c..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/AuthorLabelPrinter.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - -AuthorLabelPrinter (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class AuthorLabelPrinter

-
-java.lang.Object
-  extended bycom.arsdigita.cms.webpage.ui.AuthorLabelPrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
-
public class AuthorLabelPrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
AuthorLabelPrinter() - -
-           
-  - - - - - - - - - - - -
-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
- -

-AuthorLabelPrinter

-
-public AuthorLabelPrinter()
-
-
- - - - - - - - -
-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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/CategoriesPrintListener.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/CategoriesPrintListener.html deleted file mode 100755 index 16e14d32c..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/CategoriesPrintListener.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - -CategoriesPrintListener (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class CategoriesPrintListener

-
-java.lang.Object
-  extended bycom.arsdigita.cms.webpage.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 section) - -
-           
-  - - - - - - - - - - - -
-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 section)
-
-
- - - - - - - - -
-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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/ContentPanelWebpageNode.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/ContentPanelWebpageNode.html deleted file mode 100755 index a2d04b467..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/ContentPanelWebpageNode.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - -ContentPanelWebpageNode (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class ContentPanelWebpageNode

-
-java.lang.Object
-  extended bycom.arsdigita.bebop.Completable
-      extended bycom.arsdigita.bebop.SimpleComponent
-          extended bycom.arsdigita.cms.dispatcher.ContentPanel
-              extended bycom.arsdigita.cms.webpage.ui.ContentPanelWebpageNode
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.util.Lockable
-
-
-
-
public class ContentPanelWebpageNode
extends com.arsdigita.cms.dispatcher.ContentPanel
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.ContentPanel
versionId
- - - - - - - -
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
ContentPanelWebpageNode() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- voidgenerateXML(com.arsdigita.bebop.PageState state, - com.arsdigita.xml.Element parent) - -
-          Generates XML that represents a content item.
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.ContentPanel
getXMLGenerator
- - - - - - - -
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
- -

-ContentPanelWebpageNode

-
-public ContentPanelWebpageNode()
-
-
- - - - - - - - -
-Method Detail
- -

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState state,
-                        com.arsdigita.xml.Element parent)
-
-
Generates XML that represents a content item. -

-

-
Parameters:
state - The page state
parent - The parent DOM element
See Also:
XMLGenerator
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html deleted file mode 100755 index 5cdd3afd8..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter

-
-java.lang.Object
-  extended bycom.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter
-
-
-
All Implemented Interfaces:
EventListener, com.arsdigita.bebop.event.PrintListener
-
-
-
Enclosing class:
WebpageCMSEditorPage.WebpageCMSEditorForm
-
-
-
-
public class WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter
extends Object
implements com.arsdigita.bebop.event.PrintListener
- -

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter() - -
-           
-  - - - - - - - - - - - -
-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
- -

-WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter

-
-public WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter()
-
-
- - - - - - - - -
-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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.html deleted file mode 100755 index 1032a9f94..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.WebpageCMSEditorForm.html +++ /dev/null @@ -1,466 +0,0 @@ - - - - - - -WebpageCMSEditorPage.WebpageCMSEditorForm (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpageCMSEditorPage.WebpageCMSEditorForm

-
-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.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm
-
-
-
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
-
-
-
Enclosing class:
WebpageCMSEditorPage
-
-
-
-
public class WebpageCMSEditorPage.WebpageCMSEditorForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, com.arsdigita.bebop.event.FormValidationListener, com.arsdigita.bebop.event.FormProcessListener
- -

-


- -

- - - - - - - - - - - -
-Nested Class Summary
- classWebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter - -
-           
-  - - - - - - - -
-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
WebpageCMSEditorPage.WebpageCMSEditorForm(boolean displayDates) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- voidprocess(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- 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
- -

-WebpageCMSEditorPage.WebpageCMSEditorForm

-
-public WebpageCMSEditorPage.WebpageCMSEditorForm(boolean displayDates)
-
-
- - - - - - - - -
-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
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.html deleted file mode 100755 index 42e2dbadc..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpageCMSEditorPage.html +++ /dev/null @@ -1,440 +0,0 @@ - - - - - - -WebpageCMSEditorPage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpageCMSEditorPage

-
-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.webpage.ui.WebpageCMSEditorPage
-
-
-
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, WebpageConstants
-
-
-
-
public class WebpageCMSEditorPage
extends com.arsdigita.cms.dispatcher.CMSPage
implements WebpageConstants
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - - -
-Nested Class Summary
- classWebpageCMSEditorPage.WebpageCMSEditorForm - -
-           
-  - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.CMSPage
ASSETS, CMS_XML_NS, PAGE_CLASS, versionId
- - - - - - - -
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.cms.webpage.WebpageConstants
BODY_ELEMENT, FOOTER_ELEMENT, HEADER_ELEMENT, XML_NS
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.Component
BEBOP_XML_NS, CLASS, ID, ON_CLICK, STYLE
-  - - - - - - - - - - -
-Constructor Summary
WebpageCMSEditorPage() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidbuildPage() - -
-           
- voidgenerateXML(com.arsdigita.bebop.PageState state, - com.arsdigita.xml.Document parent) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.CMSPage
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, 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
-  -

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

-WebpageCMSEditorPage

-
-public WebpageCMSEditorPage()
-
-
- - - - - - - - -
-Method Detail
- -

-buildPage

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

-generateXML

-
-public void generateXML(com.arsdigita.bebop.PageState state,
-                        com.arsdigita.xml.Document parent)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortlet.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortlet.html deleted file mode 100755 index 0fdb9a4e2..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortlet.html +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - -WebpagePortlet (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpagePortlet

-
-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.cms.webpage.ui.WebpagePortlet
-
-
-
-
public class WebpagePortlet
extends com.arsdigita.portal.Portlet
- -

-Portlet showing the n most recently updated documents of a portal. -

- -

-

-
Author:
-
Stefan Deusch
-
-
- -

- - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBASE_DATA_OBJECT_TYPE - -
-           
-static StringWEBPAGE - -
-           
- - - - - - - -
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
WebpagePortlet(com.arsdigita.persistence.DataObject dataObject) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.bebop.portal.AbstractPortletRendererdoGetPortletRenderer() - -
-           
-protected  StringgetBaseDataObjectType() - -
-           
- WebpagegetWebpage() - -
-           
- voidsetPortal(com.arsdigita.portal.Portal portal) - -
-           
- voidsetWebpage(Webpage webpage) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.portal.Portlet
afterSave, beforeSave, createPortlet, createPortlet, getCellNumber, getContainer, getPortal, getPortletRenderer, getPortletType, getProfile, getSortKey, isContainerModified, newExpirationDate, retrievePortlet, retrievePortlet, retrievePortlet, setCellNumber, 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
- -

-WEBPAGE

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

-BASE_DATA_OBJECT_TYPE

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

-WebpagePortlet

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

-getBaseDataObjectType

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

-getWebpage

-
-public Webpage getWebpage()
-
-
-
-
-
-
- -

-setWebpage

-
-public void setWebpage(Webpage webpage)
-
-
-
-
-
-
- -

-doGetPortletRenderer

-
-protected com.arsdigita.bebop.portal.AbstractPortletRenderer doGetPortletRenderer()
-
-
-
-
-
-
- -

-setPortal

-
-public void setPortal(com.arsdigita.portal.Portal portal)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditor.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditor.html deleted file mode 100755 index 3175e068e..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditor.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - -WebpagePortletEditor (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpagePortletEditor

-
-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 bycom.arsdigita.cms.webpage.ui.WebpagePortletEditor
-
-
-
All Implemented Interfaces:
Cloneable, com.arsdigita.bebop.Component, com.arsdigita.bebop.Container, com.arsdigita.util.Lockable
-
-
-
-
public class WebpagePortletEditor
extends com.arsdigita.bebop.portal.PortletConfigFormSection
- -

-


- -

- - - - - - - - - - -
-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
WebpagePortletEditor(com.arsdigita.bebop.RequestLocal application) - -
-           
WebpagePortletEditor(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
- -

-WebpagePortletEditor

-
-public WebpagePortletEditor(com.arsdigita.kernel.ResourceType resType,
-                            com.arsdigita.bebop.RequestLocal parentAppRL)
-
-
-
- -

-WebpagePortletEditor

-
-public WebpagePortletEditor(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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html deleted file mode 100755 index c882dbd30..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.CurrentApplicationLinkPrinter.html +++ /dev/null @@ -1,277 +0,0 @@ - - - - - - -WebpagePortletEditorPage.CurrentApplicationLinkPrinter (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpagePortletEditorPage.CurrentApplicationLinkPrinter

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

-


- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from interface com.arsdigita.bebop.event.PrintListener
versionId
-  - - - - - - - - - - -
-Constructor Summary
WebpagePortletEditorPage.CurrentApplicationLinkPrinter(WebpagePortletEditorPage.WebpagePortletEditorForm aParentEditForm) - -
-           
-  - - - - - - - - - - - -
-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
- -

-WebpagePortletEditorPage.CurrentApplicationLinkPrinter

-
-public WebpagePortletEditorPage.CurrentApplicationLinkPrinter(WebpagePortletEditorPage.WebpagePortletEditorForm aParentEditForm)
-
-
- - - - - - - - -
-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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.WebpagePortletEditorForm.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.WebpagePortletEditorForm.html deleted file mode 100755 index d13dba665..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.WebpagePortletEditorForm.html +++ /dev/null @@ -1,466 +0,0 @@ - - - - - - -WebpagePortletEditorPage.WebpagePortletEditorForm (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpagePortletEditorPage.WebpagePortletEditorForm

-
-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.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm
-
-
-
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.util.Lockable
-
-
-
Enclosing class:
WebpagePortletEditorPage
-
-
-
-
public class WebpagePortletEditorPage.WebpagePortletEditorForm
extends com.arsdigita.bebop.Form
implements com.arsdigita.bebop.event.FormInitListener, 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.FormInitListener
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
WebpagePortletEditorPage.WebpagePortletEditorForm() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddWidgets() - -
-           
-protected  WebpagePortletgetWebpagePortlet(com.arsdigita.bebop.PageState ps, - BigDecimal portletID) - -
-           
- voidinit(com.arsdigita.bebop.event.FormSectionEvent e) - -
-           
- 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
- -

-WebpagePortletEditorPage.WebpagePortletEditorForm

-
-public WebpagePortletEditorPage.WebpagePortletEditorForm()
-
-
- - - - - - - - -
-Method Detail
- -

-addWidgets

-
-public void addWidgets()
-
-
-
-
-
-
-
-
-
- -

-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
-
-
-
- -

-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
-
-
-
- -

-getWebpagePortlet

-
-protected WebpagePortlet getWebpagePortlet(com.arsdigita.bebop.PageState ps,
-                                           BigDecimal portletID)
-                                    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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.html deleted file mode 100755 index 878c7f355..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePortletEditorPage.html +++ /dev/null @@ -1,468 +0,0 @@ - - - - - - -WebpagePortletEditorPage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpagePortletEditorPage

-
-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.webpage.ui.WebpagePortletEditorPage
-
-
-
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 WebpagePortletEditorPage
extends com.arsdigita.cms.dispatcher.CMSPage
- -

-


- -

- - - - - - - - - - - - - - - -
-Nested Class Summary
-protected  classWebpagePortletEditorPage.CurrentApplicationLinkPrinter - -
-           
- classWebpagePortletEditorPage.WebpagePortletEditorForm - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringCATEGORIES - -
-           
-static StringPORTLET_ID - -
-           
-static org.apache.log4j.Loggers_log - -
-           
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.CMSPage
ASSETS, CMS_XML_NS, PAGE_CLASS, versionId
- - - - - - - -
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
WebpagePortletEditorPage() - -
-           
-  - - - - - - - - - - - -
-Method Summary
-protected  voidbuildPage() - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.CMSPage
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
- -

-s_log

-
-public static final org.apache.log4j.Logger s_log
-
-
-
-
-
- -

-PORTLET_ID

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

-CATEGORIES

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

-WebpagePortletEditorPage

-
-public WebpagePortletEditorPage()
-
-
- - - - - - - - -
-Method Detail
- -

-buildPage

-
-protected void buildPage()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePreviewPage.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePreviewPage.html deleted file mode 100755 index 12416667e..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/WebpagePreviewPage.html +++ /dev/null @@ -1,429 +0,0 @@ - - - - - - -WebpagePreviewPage (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui -
-Class WebpagePreviewPage

-
-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.webpage.ui.WebpagePreviewPage
-
-
-
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 WebpagePreviewPage
extends com.arsdigita.cms.dispatcher.CMSPage
- -

-

-
Author:
-
Peter Kopunec
-
-
- -

- - - - - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class com.arsdigita.cms.dispatcher.CMSPage
ASSETS, CMS_XML_NS, PAGE_CLASS, versionId
- - - - - - - -
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
WebpagePreviewPage() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  com.arsdigita.xml.ElementgenerateXMLHelper(com.arsdigita.bebop.PageState ps, - com.arsdigita.xml.Document parentDoc) - -
-           
- com.arsdigita.cms.ContentItemgetContentItem(HttpServletRequest request) - -
-           
-protected  com.arsdigita.cms.dispatcher.XMLGeneratorgetXMLGenerator(com.arsdigita.bebop.PageState ps) - -
-           
- - - - - - - -
Methods inherited from class com.arsdigita.cms.dispatcher.CMSPage
buildPage, dispatch, 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
-  -

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

-WebpagePreviewPage

-
-public WebpagePreviewPage()
-
-
- - - - - - - - -
-Method Detail
- -

-generateXMLHelper

-
-protected com.arsdigita.xml.Element generateXMLHelper(com.arsdigita.bebop.PageState ps,
-                                                      com.arsdigita.xml.Document parentDoc)
-
-
-
-
-
-
- -

-getXMLGenerator

-
-protected com.arsdigita.cms.dispatcher.XMLGenerator getXMLGenerator(com.arsdigita.bebop.PageState ps)
-
-
-
-
-
-
- -

-getContentItem

-
-public com.arsdigita.cms.ContentItem getContentItem(HttpServletRequest request)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesForm.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesForm.html deleted file mode 100755 index 0e825c5c8..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesForm.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - -WebpagePropertiesForm (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui.authoring -
-Class WebpagePropertiesForm

-
-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.webpage.ui.authoring.WebpagePropertiesForm
-
-
-
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 WebpagePropertiesForm
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 webpage. This form can be - extended to create forms for Webpage subclasses. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static StringBODY - -
-           
-static StringCATEGORIES - -
-           
-static StringDESCRIPTION - -
-           
- - - - - - - -
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
WebpagePropertiesForm(com.arsdigita.cms.ItemSelectionModel itemModel) - -
-          Creates a new form to edit the Webpage 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
-
-
- -

-BODY

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

-CATEGORIES

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

-WebpagePropertiesForm

-
-public WebpagePropertiesForm(com.arsdigita.cms.ItemSelectionModel itemModel)
-
-
Creates a new form to edit the Webpage object specified - by the item selection model passed in. -

-

Parameters:
itemModel - The ItemSelectionModel to use to obtain the - Webpage 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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesStep.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesStep.html deleted file mode 100755 index b83cfaa4c..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/WebpagePropertiesStep.html +++ /dev/null @@ -1,471 +0,0 @@ - - - - - - -WebpagePropertiesStep (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -com.arsdigita.cms.webpage.ui.authoring -
-Class WebpagePropertiesStep

-
-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.webpage.ui.authoring.WebpagePropertiesStep
-
-
-
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 WebpagePropertiesStep
extends com.arsdigita.cms.ui.authoring.SimpleEditStep
- -

-Authoring step to edit the simple attributes of the Webpage content - type (and its subclasses). - This authoring step replaces - the com.arsdigita.ui.authoring.PageEdit step for this type. -

- -

-


- -

- - - - - - - -
-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
-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
WebpagePropertiesStep(com.arsdigita.cms.ItemSelectionModel itemModel, - com.arsdigita.cms.ui.authoring.AuthoringKitWizard parent) - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static com.arsdigita.bebop.ComponentgetWebpagePropertySheet(com.arsdigita.cms.ItemSelectionModel itemModel) - -
-          Returns a component that displays the properties of the - Webpage 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
- -

-WebpagePropertiesStep

-
-public WebpagePropertiesStep(com.arsdigita.cms.ItemSelectionModel itemModel,
-                             com.arsdigita.cms.ui.authoring.AuthoringKitWizard parent)
-
-
- - - - - - - - -
-Method Detail
- -

-getWebpagePropertySheet

-
-public static com.arsdigita.bebop.Component getWebpagePropertySheet(com.arsdigita.cms.ItemSelectionModel itemModel)
-
-
Returns a component that displays the properties of the - Webpage 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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesForm.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesForm.html deleted file mode 100755 index 490678c2c..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/class-use/WebpagePropertiesForm.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm

-
-No usage of com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesStep

-
-No usage of com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesStep -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-frame.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-frame.html deleted file mode 100755 index 47de1e890..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage.ui.authoring (Webpage API Documentation) - - - - - - - - - - - -com.arsdigita.cms.webpage.ui.authoring - - - - -
-Classes  - -
-WebpagePropertiesForm -
-WebpagePropertiesStep
- - - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-summary.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-summary.html deleted file mode 100755 index 846610dff..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-summary.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage.ui.authoring (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.webpage.ui.authoring -

- - - - - - - - - - - - - -
-Class Summary
WebpagePropertiesFormForm to edit the basic properties of an webpage.
WebpagePropertiesStepAuthoring step to edit the simple attributes of the Webpage content - type (and its subclasses).
-  - -

-


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

-Hierarchy For Package com.arsdigita.cms.webpage.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.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.webpage.ui.authoring.WebpagePropertiesForm (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) - -
                  -
                -
              -
            -
          -
        -
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-use.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-use.html deleted file mode 100755 index 7627f925d..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/authoring/package-use.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.webpage.ui.authoring (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.webpage.ui.authoring

-
-No usage of com.arsdigita.cms.webpage.ui.authoring -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.AuthorLabelPrinter

-
-No usage of com.arsdigita.cms.webpage.ui.AuthorLabelPrinter -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.CategoriesPrintListener

-
-No usage of com.arsdigita.cms.webpage.ui.CategoriesPrintListener -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.ContentPanelWebpageNode

-
-No usage of com.arsdigita.cms.webpage.ui.ContentPanelWebpageNode -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter

-
-No usage of com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm

-
-No usage of com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage

-
-No usage of com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortlet.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortlet.html deleted file mode 100755 index 63090b228..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortlet.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.webpage.ui.WebpagePortlet (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpagePortlet

-
- - - - - - - - - -
-Packages that use WebpagePortlet
com.arsdigita.cms.webpage.ui  
-  -

- - - - - -
-Uses of WebpagePortlet in com.arsdigita.cms.webpage.ui
-  -

- - - - - - - - - -
Methods in com.arsdigita.cms.webpage.ui that return WebpagePortlet
-protected  WebpagePortletWebpagePortletEditorPage.WebpagePortletEditorForm.getWebpagePortlet(com.arsdigita.bebop.PageState ps, - BigDecimal portletID) - -
-           
-  -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpagePortletEditor

-
-No usage of com.arsdigita.cms.webpage.ui.WebpagePortletEditor -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter

-
-No usage of com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.WebpagePortletEditorForm.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.WebpagePortletEditorForm.html deleted file mode 100755 index 9156cb9b8..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/class-use/WebpagePortletEditorPage.WebpagePortletEditorForm.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -Uses of Class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm

-
- - - - - - - - - -
-Packages that use WebpagePortletEditorPage.WebpagePortletEditorForm
com.arsdigita.cms.webpage.ui  
-  -

- - - - - -
-Uses of WebpagePortletEditorPage.WebpagePortletEditorForm in com.arsdigita.cms.webpage.ui
-  -

- - - - - - - - -
Constructors in com.arsdigita.cms.webpage.ui with parameters of type WebpagePortletEditorPage.WebpagePortletEditorForm
WebpagePortletEditorPage.CurrentApplicationLinkPrinter(WebpagePortletEditorPage.WebpagePortletEditorForm aParentEditForm) - -
-           
-  -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage

-
-No usage of com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage -

-


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

-Uses of Class
com.arsdigita.cms.webpage.ui.WebpagePreviewPage

-
-No usage of com.arsdigita.cms.webpage.ui.WebpagePreviewPage -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-frame.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-frame.html deleted file mode 100755 index 275f82d27..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-frame.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage.ui (Webpage API Documentation) - - - - - - - - - - - -com.arsdigita.cms.webpage.ui - - - - -
-Classes  - -
-AuthorLabelPrinter -
-CategoriesPrintListener -
-ContentPanelWebpageNode -
-WebpageCMSEditorPage -
-WebpagePortlet -
-WebpagePortletEditor -
-WebpagePortletEditorPage -
-WebpagePreviewPage
- - - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-summary.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-summary.html deleted file mode 100755 index bdcdbd181..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-summary.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - -com.arsdigita.cms.webpage.ui (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-

-Package com.arsdigita.cms.webpage.ui -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
AuthorLabelPrinter 
CategoriesPrintListener 
ContentPanelWebpageNode 
WebpageCMSEditorPage 
WebpagePortletPortlet showing the n most recently updated documents of a portal.
WebpagePortletEditor 
WebpagePortletEditorPage 
WebpagePreviewPage 
-  - -

-


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

-Hierarchy For Package com.arsdigita.cms.webpage.ui -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • class java.lang.Object
      -
    • class com.arsdigita.cms.webpage.ui.AuthorLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.webpage.ui.CategoriesPrintListener (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.cms.dispatcher.ContentPanel -
        • class com.arsdigita.bebop.FormSection (implements com.arsdigita.bebop.Container) -
            -
          • class com.arsdigita.bebop.Form (implements com.arsdigita.bebop.util.BebopConstants) - -
          • 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.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.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-use.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-use.html deleted file mode 100755 index 93f629dc1..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/com/arsdigita/cms/webpage/ui/package-use.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - -Uses of Package com.arsdigita.cms.webpage.ui (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
com.arsdigita.cms.webpage.ui

-
- - - - - - - - - -
-Packages that use com.arsdigita.cms.webpage.ui
com.arsdigita.cms.webpage.ui  
-  -

- - - - - - - - - - - -
-Classes in com.arsdigita.cms.webpage.ui used by com.arsdigita.cms.webpage.ui
WebpagePortlet - -
-          Portlet showing the n most recently updated documents of a portal.
WebpagePortletEditorPage.WebpagePortletEditorForm - -
-           
-  -

-


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

-Constant Field Values

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

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.webpage.Webpage
-public static final StringAUTHOR"author"
-public static final StringAUTHOR_LAST_NAME"authorLastName"
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.webpage.Webpage"
-public static final StringBODY"body"
-public static final StringCREATOR"creator"
-public static final StringDESCRIPTION"description"
-public static final StringLAST_MOD_LOCAL"lastModifiedTimeCached"
-public static final StringTYPE"com.arsdigita.cms.webpage.Webpage"
- -

- -

- - - - - - - - - - - - -
com.arsdigita.cms.webpage.WebpageConfig
-public static final StringversionId"$Id: WebpageConfig.java,v 1.2 2004/03/05 04:32:56 tzumainn Exp $$Author: tzumainn $$DateTime: 2004/01/14 15:24:15 $"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.webpage.WebpageConstants
-public static final StringBODY_ELEMENT"webpage:body"
-public static final StringFOOTER_ELEMENT"webpage:footer"
-public static final StringHEADER_ELEMENT"webpage:header"
-public static final StringXML_NS"http://www.undp.org/webpage/1.0"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.webpage.ui.WebpagePortlet
-public static final StringBASE_DATA_OBJECT_TYPE"com.arsdigita.cms.webpage.ui.WebpagePortlet"
-public static final StringWEBPAGE"webpage"
- -

- -

- - - - - - - - - - - - - - - - - -
com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage
-public static final StringCATEGORIES"categories"
-public static final StringPORTLET_ID"portletID"
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm
-public static final StringBODY"body"
-public static final StringCATEGORIES"categories"
-public static final StringDESCRIPTION"description"
- -

- -

-


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

-Deprecated API

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/help-doc.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/help-doc.html deleted file mode 100755 index 67ef510ab..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/help-doc.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - -API Help (Webpage 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:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/index-all.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/index-all.html deleted file mode 100755 index 906e15ae0..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/index-all.html +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - -Index (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -A B C D E F G H I L P R S T V W X
-

-A

-
-
AUTHOR - -Static variable in class com.arsdigita.cms.webpage.Webpage -
  -
AUTHOR_LAST_NAME - -Static variable in class com.arsdigita.cms.webpage.Webpage -
  -
AuthorLabelPrinter - class com.arsdigita.cms.webpage.ui.AuthorLabelPrinter.
 
AuthorLabelPrinter() - -Constructor for class com.arsdigita.cms.webpage.ui.AuthorLabelPrinter -
  -
addWidgets() - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditor -
  -
addWidgets() - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm -
  -
addWidgets() - -Method in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
Adds widgets to the form. -
-
-

-B

-
-
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.webpage.Webpage -
Data object type for this domain object -
BASE_DATA_OBJECT_TYPE - -Static variable in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
BODY - -Static variable in class com.arsdigita.cms.webpage.Webpage -
  -
BODY - -Static variable in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
  -
BODY_ELEMENT - -Static variable in interface com.arsdigita.cms.webpage.WebpageConstants -
  -
beforeSave() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
buildPage() - -Method in class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage -
  -
buildPage() - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage -
  -
-
-

-C

-
-
CATEGORIES - -Static variable in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage -
  -
CATEGORIES - -Static variable in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
  -
CREATOR - -Static variable in class com.arsdigita.cms.webpage.Webpage -
  -
CategoriesPrintListener - class com.arsdigita.cms.webpage.ui.CategoriesPrintListener.
 
CategoriesPrintListener(ContentSection) - -Constructor for class com.arsdigita.cms.webpage.ui.CategoriesPrintListener -
  -
ContentPanelWebpageNode - class com.arsdigita.cms.webpage.ui.ContentPanelWebpageNode.
 
ContentPanelWebpageNode() - -Constructor for class com.arsdigita.cms.webpage.ui.ContentPanelWebpageNode -
  -
com.arsdigita.cms.webpage - package com.arsdigita.cms.webpage
 
com.arsdigita.cms.webpage.installer - package com.arsdigita.cms.webpage.installer
 
com.arsdigita.cms.webpage.ui - package com.arsdigita.cms.webpage.ui
 
com.arsdigita.cms.webpage.ui.authoring - package com.arsdigita.cms.webpage.ui.authoring
 
-
-

-D

-
-
DESCRIPTION - -Static variable in class com.arsdigita.cms.webpage.Webpage -
PDL properties -
DESCRIPTION - -Static variable in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
  -
doGetPortletRenderer() - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
-
-

-E

-
-
EDIT_SHEET_NAME - -Static variable in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesStep -
The name of the editing sheet added to this step -
-
-

-F

-
-
FOOTER_ELEMENT - -Static variable in interface com.arsdigita.cms.webpage.WebpageConstants -
  -
-
-

-G

-
-
generateXML(PageState, Element) - -Method in class com.arsdigita.cms.webpage.ui.ContentPanelWebpageNode -
Generates XML that represents a content item. -
generateXML(PageState, Document) - -Method in class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage -
  -
generateXMLHelper(PageState, Document) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePreviewPage -
  -
getAuthor() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getAuthorLastName() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getBaseDataObjectType() - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
getBody() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getConfig() - -Static method in class com.arsdigita.cms.webpage.installer.Initializer -
  -
getContentItem(HttpServletRequest) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePreviewPage -
  -
getContentSection() - -Method in class com.arsdigita.cms.webpage.WebpageConfig -
  -
getCreator() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getDescription() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getImpliedAuthor() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getLastModifiedLocal() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getStylesheets() - -Method in class com.arsdigita.cms.webpage.installer.WebpageInitializer -
  -
getTypes() - -Method in class com.arsdigita.cms.webpage.WebpageLoader -
  -
getWebpage() - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
getWebpagePortlet(PageState, BigDecimal) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm -
  -
getWebpagePropertySheet(ItemSelectionModel) - -Static method in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesStep -
Returns a component that displays the properties of the - Webpage specified by the ItemSelectionModel passed in. -
getWebpageSection() - -Method in class com.arsdigita.cms.webpage.WebpageConfig -
  -
getWebpagesWithName(Folder, String) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
getXMLGenerator(PageState) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePreviewPage -
  -
-
-

-H

-
-
HEADER_ELEMENT - -Static variable in interface com.arsdigita.cms.webpage.WebpageConstants -
  -
-
-

-I

-
-
Initializer - class com.arsdigita.cms.webpage.installer.Initializer.
 
Initializer() - -Constructor for class com.arsdigita.cms.webpage.installer.Initializer -
  -
init(DomainInitEvent) - -Method in class com.arsdigita.cms.webpage.installer.Initializer -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm -
  -
init(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
Form initialisation hook. -
initWidgets(PageState, Portlet) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditor -
  -
isFile() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
isFolder() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
isRoot() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
-
-

-L

-
-
LAST_MOD_LOCAL - -Static variable in class com.arsdigita.cms.webpage.Webpage -
  -
-
-

-P

-
-
PORTLET_ID - -Static variable in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.webpage.ui.AuthorLabelPrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.webpage.ui.CategoriesPrintListener -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter -
  -
prepare(PrintEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm -
  -
process(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
Form processing hook. -
processWidgets(PageState, Portlet) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditor -
  -
-
-

-R

-
-
retrieveWebpage(DataObject) - -Static method in class com.arsdigita.cms.webpage.Webpage -
Returns a document for the given data object. -
-
-

-S

-
-
s_log - -Static variable in class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage -
  -
setAuthor(String) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setBody(String) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setCategories(String[]) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setContentSection(String) - -Method in class com.arsdigita.cms.webpage.WebpageConfig -
  -
setCreator(User) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setDescription(String) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setLastModifiedLocal(Date) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setPortal(Portal) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
setTitle(String) - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
setWebpage(Webpage) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
shutdown() - -Method in class com.arsdigita.cms.webpage.installer.Initializer -
  -
startup() - -Method in class com.arsdigita.cms.webpage.installer.Initializer -
  -
-
-

-T

-
-
TYPE - -Static variable in class com.arsdigita.cms.webpage.Webpage -
Data object type for this domain object (for CMS compatibility) -
toURL() - -Method in class com.arsdigita.cms.webpage.Webpage -
  -
-
-

-V

-
-
validate(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm -
  -
validate(FormSectionEvent) - -Method in class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
  -
validateWidgets(PageState, Portlet) - -Method in class com.arsdigita.cms.webpage.ui.WebpagePortletEditor -
  -
versionId - -Static variable in class com.arsdigita.cms.webpage.WebpageConfig -
  -
-
-

-W

-
-
WEBPAGE - -Static variable in class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
Webpage - class com.arsdigita.cms.webpage.Webpage.
This content type represents a webpage.
Webpage() - -Constructor for class com.arsdigita.cms.webpage.Webpage -
  -
Webpage(BigDecimal) - -Constructor for class com.arsdigita.cms.webpage.Webpage -
  -
Webpage(OID) - -Constructor for class com.arsdigita.cms.webpage.Webpage -
  -
Webpage(DataObject) - -Constructor for class com.arsdigita.cms.webpage.Webpage -
  -
Webpage(String) - -Constructor for class com.arsdigita.cms.webpage.Webpage -
  -
WebpageCMSEditorPage - class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.
 
WebpageCMSEditorPage() - -Constructor for class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage -
  -
WebpageCMSEditorPage.WebpageCMSEditorForm - class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.
 
WebpageCMSEditorPage.WebpageCMSEditorForm(boolean) - -Constructor for class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm -
  -
WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter - class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter.
 
WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter() - -Constructor for class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter -
  -
WebpageConfig - class com.arsdigita.cms.webpage.WebpageConfig.
 
WebpageConfig() - -Constructor for class com.arsdigita.cms.webpage.WebpageConfig -
  -
WebpageConstants - interface com.arsdigita.cms.webpage.WebpageConstants.
 
WebpageInitializer - class com.arsdigita.cms.webpage.installer.WebpageInitializer.
 
WebpageInitializer() - -Constructor for class com.arsdigita.cms.webpage.installer.WebpageInitializer -
  -
WebpageLoader - class com.arsdigita.cms.webpage.WebpageLoader.
 
WebpageLoader() - -Constructor for class com.arsdigita.cms.webpage.WebpageLoader -
  -
WebpagePortlet - class com.arsdigita.cms.webpage.ui.WebpagePortlet.
Portlet showing the n most recently updated documents of a portal.
WebpagePortlet(DataObject) - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePortlet -
  -
WebpagePortletEditor - class com.arsdigita.cms.webpage.ui.WebpagePortletEditor.
 
WebpagePortletEditor(ResourceType, RequestLocal) - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePortletEditor -
  -
WebpagePortletEditor(RequestLocal) - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePortletEditor -
  -
WebpagePortletEditorPage - class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.
 
WebpagePortletEditorPage() - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage -
  -
WebpagePortletEditorPage.CurrentApplicationLinkPrinter - class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter.
 
WebpagePortletEditorPage.CurrentApplicationLinkPrinter(WebpagePortletEditorPage.WebpagePortletEditorForm) - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter -
  -
WebpagePortletEditorPage.WebpagePortletEditorForm - class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm.
 
WebpagePortletEditorPage.WebpagePortletEditorForm() - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.WebpagePortletEditorForm -
  -
WebpagePreviewPage - class com.arsdigita.cms.webpage.ui.WebpagePreviewPage.
 
WebpagePreviewPage() - -Constructor for class com.arsdigita.cms.webpage.ui.WebpagePreviewPage -
  -
WebpagePropertiesForm - class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm.
Form to edit the basic properties of an webpage.
WebpagePropertiesForm(ItemSelectionModel) - -Constructor for class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesForm -
Creates a new form to edit the Webpage object specified - by the item selection model passed in. -
WebpagePropertiesStep - class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesStep.
Authoring step to edit the simple attributes of the Webpage content - type (and its subclasses).
WebpagePropertiesStep(ItemSelectionModel, AuthoringKitWizard) - -Constructor for class com.arsdigita.cms.webpage.ui.authoring.WebpagePropertiesStep -
  -
-
-

-X

-
-
XML_NS - -Static variable in interface com.arsdigita.cms.webpage.WebpageConstants -
  -
-
-A B C D E F G H I L P R S T V W X - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/index.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/index.html deleted file mode 100755 index 26fee06ab..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/index.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - -Webpage 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-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/overview-frame.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/overview-frame.html deleted file mode 100755 index 3ce2c34c3..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/overview-frame.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - -Overview (Webpage API Documentation) - - - - - - - - - - - - - - - -
-
- - - - - -
All Classes -

- -Packages -
-com.arsdigita.cms.webpage -
-com.arsdigita.cms.webpage.installer -
-com.arsdigita.cms.webpage.ui -
-com.arsdigita.cms.webpage.ui.authoring -
-

- -

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


-
-

-

Webpage API Documentation

- -
- - - - - - - - - - - - - - - - - - - - - -
-Packages
com.arsdigita.cms.webpage 
com.arsdigita.cms.webpage.installer 
com.arsdigita.cms.webpage.ui 
com.arsdigita.cms.webpage.ui.authoring 
- -


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

-Hierarchy For All Packages

-
-
-
Package Hierarchies:
com.arsdigita.cms.webpage, com.arsdigita.cms.webpage.installer, com.arsdigita.cms.webpage.ui, com.arsdigita.cms.webpage.ui.authoring
-
-

-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.contenttypes.AbstractContentTypeLoader -
          -
        -
      -
    • class com.arsdigita.cms.webpage.ui.AuthorLabelPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.webpage.ui.CategoriesPrintListener (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.cms.dispatcher.ContentPanel -
        • 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.webpage.ui.authoring.WebpagePropertiesForm (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.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.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.runtime.CompoundInitializer (implements com.arsdigita.runtime.Initializer) -
        -
      • class com.arsdigita.cms.contenttypes.ContentTypeInitializer -
      • class com.arsdigita.cms.webpage.installer.Initializer
      -
    • 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.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.webpage.Webpage
                -
              -
            -
          -
        -
      -
    • class com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage.WebpageCMSEditorForm.TimeZonePrinter (implements com.arsdigita.bebop.event.PrintListener) -
    • class com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage.CurrentApplicationLinkPrinter (implements com.arsdigita.bebop.event.PrintListener) -
    -
-

-Interface Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/package-list b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/package-list deleted file mode 100755 index 8392e9b6e..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/package-list +++ /dev/null @@ -1,4 +0,0 @@ -com.arsdigita.cms.webpage -com.arsdigita.cms.webpage.installer -com.arsdigita.cms.webpage.ui -com.arsdigita.cms.webpage.ui.authoring diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/packages.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/packages.html deleted file mode 100755 index b0d4cdbc5..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/packages.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - (Webpage API Documentation) - - - - - - - - - - - -
- -
- -
-
-The front page has been relocated.Please see: -
-          Frame version -
-          Non-frame version.
- - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/resources/inherit.gif b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/resources/inherit.gif deleted file mode 100755 index c814867a1..000000000 Binary files a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/resources/inherit.gif and /dev/null differ diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/serialized-form.html b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/serialized-form.html deleted file mode 100755 index 6e12f45b9..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/serialized-form.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -Serialized Form (Webpage API Documentation) - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Serialized Form

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- Copyright (c) 2006 Red Hat, Inc. Corporation. All Rights Reserved. Generated at June 1 2006:1154 UTC - - diff --git a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/stylesheet.css b/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-6.3.0/api/stylesheet.css deleted file mode 100755 index 6d31fdbc7..000000000 --- a/ccm-webpage/debian/ccm-webpage-doc/var/www/html/ccm-webpage-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-webpage/debian/ccm-webpage.dirs b/ccm-webpage/debian/ccm-webpage.dirs deleted file mode 100755 index e674ae687..000000000 --- a/ccm-webpage/debian/ccm-webpage.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-webpage-6.3.0 diff --git a/ccm-webpage/debian/ccm-webpage.install b/ccm-webpage/debian/ccm-webpage.install deleted file mode 100755 index dddfe7749..000000000 --- a/ccm-webpage/debian/ccm-webpage.install +++ /dev/null @@ -1,11 +0,0 @@ -usr/share/java/ccm-webpage-6.3.0.jar -usr/share/java/ccm-webpage-6.3.0-pdl.jar -usr/share/java/ccm-webpage-6.3.0-sql.jar -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/webpage/xsl/webpage-portlet.xsl -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/edit.jsp -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpagePreview.jsp -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpageEdit.jsp -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-item.jsp -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-folder.jsp -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/xsl/index.xsl -usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/static/content-types/com/arsdigita/cms/Webpage.xsl diff --git a/ccm-webpage/debian/ccm-webpage.postrm.debhelper b/ccm-webpage/debian/ccm-webpage.postrm.debhelper deleted file mode 100755 index bc035b98c..000000000 --- a/ccm-webpage/debian/ccm-webpage.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-webpage/debian/ccm-webpage.substvars b/ccm-webpage/debian/ccm-webpage.substvars deleted file mode 100755 index a8fe3cff5..000000000 --- a/ccm-webpage/debian/ccm-webpage.substvars +++ /dev/null @@ -1 +0,0 @@ -misc:Depends=debconf (>= 0.5) | debconf-2.0 diff --git a/ccm-webpage/debian/ccm-webpage/DEBIAN/config b/ccm-webpage/debian/ccm-webpage/DEBIAN/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-webpage/debian/ccm-webpage/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-webpage/debian/ccm-webpage/DEBIAN/control b/ccm-webpage/debian/ccm-webpage/DEBIAN/control deleted file mode 100755 index e6d9a9127..000000000 --- a/ccm-webpage/debian/ccm-webpage/DEBIAN/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: ccm-webpage -Version: 6.3.0-9 -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-util -Installed-Size: 228 -Maintainer: Runtime Packaging -Description: APLAWS: Webpage application. - . - FIXME: We need a longer and more meaningful description here. diff --git a/ccm-webpage/debian/ccm-webpage/DEBIAN/md5sums b/ccm-webpage/debian/ccm-webpage/DEBIAN/md5sums deleted file mode 100755 index 9f8741f1e..000000000 --- a/ccm-webpage/debian/ccm-webpage/DEBIAN/md5sums +++ /dev/null @@ -1,13 +0,0 @@ -e1d92f4a2b7676b6af6e55648da0da62 usr/share/java/ccm-webpage-6.3.0.jar -a2c84d8f4c5f4b0755d69ac9aa68a5d9 usr/share/java/ccm-webpage-6.3.0-pdl.jar -b1def3dcd1d587fdcd1198c86f5c2369 usr/share/java/ccm-webpage-6.3.0-sql.jar -2195e3db644bcad538058c1f135f78ea usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/webpage/xsl/webpage-portlet.xsl -b8bf953d7a1d13088f66b7485fe7add1 usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/edit.jsp -ffd7b9a872069d7fd80923e4694286ed usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpagePreview.jsp -ab9fe9a8c179b73f1e1a966170c30baf usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpageEdit.jsp -16446876b024c036ee90d8a58b51b2bd usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-item.jsp -acdd5d4b70ecdb6917af8d74fefab74a usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-folder.jsp -bca827c44241fdd9abe2024a911aa305 usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/xsl/index.xsl -4e2e5e733e6fe29582d62dd6603dc2e6 usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/static/content-types/com/arsdigita/cms/Webpage.xsl -ce1fc6838ba677ba09ccda962e3f2f99 usr/share/doc/ccm-webpage/copyright -0c9aaf2f738d4cb686dba663a7d02db6 usr/share/doc/ccm-webpage/changelog.Debian.gz diff --git a/ccm-webpage/debian/ccm-webpage/DEBIAN/postinst b/ccm-webpage/debian/ccm-webpage/DEBIAN/postinst deleted file mode 100755 index 6656ad17d..000000000 --- a/ccm-webpage/debian/ccm-webpage/DEBIAN/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-webpage -# -# 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-webpage/debian/ccm-webpage/DEBIAN/postrm b/ccm-webpage/debian/ccm-webpage/DEBIAN/postrm deleted file mode 100755 index fd0d27e8c..000000000 --- a/ccm-webpage/debian/ccm-webpage/DEBIAN/postrm +++ /dev/null @@ -1,68 +0,0 @@ -#! /bin/sh -# postrm script for ccm-webpage -# -# 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-webpage/debian/ccm-webpage/DEBIAN/prerm b/ccm-webpage/debian/ccm-webpage/DEBIAN/prerm deleted file mode 100755 index af5690a24..000000000 --- a/ccm-webpage/debian/ccm-webpage/DEBIAN/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-webpage -# -# 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-webpage/debian/ccm-webpage/DEBIAN/templates b/ccm-webpage/debian/ccm-webpage/DEBIAN/templates deleted file mode 100755 index 431d14d87..000000000 --- a/ccm-webpage/debian/ccm-webpage/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-webpage -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-webpage". - -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-webpage". diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/doc/ccm-webpage/changelog.Debian.gz b/ccm-webpage/debian/ccm-webpage/usr/share/doc/ccm-webpage/changelog.Debian.gz deleted file mode 100755 index 2c5d36598..000000000 Binary files a/ccm-webpage/debian/ccm-webpage/usr/share/doc/ccm-webpage/changelog.Debian.gz and /dev/null differ diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/doc/ccm-webpage/copyright b/ccm-webpage/debian/ccm-webpage/usr/share/doc/ccm-webpage/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/doc/ccm-webpage/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-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0-pdl.jar b/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0-pdl.jar deleted file mode 100755 index 8647193ac..000000000 Binary files a/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0-pdl.jar and /dev/null differ diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0-sql.jar b/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0-sql.jar deleted file mode 100755 index b3063037e..000000000 Binary files a/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0-sql.jar and /dev/null differ diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0.jar b/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0.jar deleted file mode 100755 index 26ebf0ce4..000000000 Binary files a/ccm-webpage/debian/ccm-webpage/usr/share/java/ccm-webpage-6.3.0.jar and /dev/null differ diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-folder.jsp b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-folder.jsp deleted file mode 100755 index d2cd73863..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-folder.jsp +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - ((com.arsdigita.london.navigation.ui.ItemList) itemList).setObjectType( "com.arsdigita.cms.ContentBundle" ); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).setHowMany(99); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).setDescendCategories(true); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).addAttribute("objectType"); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).addAttribute( "title" ); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).addAttribute( "description" ); - - ((com.arsdigita.london.navigation.ui.ItemList) itemList).addAttribute( "lead" ); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).addAttribute( "lastModifiedDate" ); - ((com.arsdigita.london.navigation.ui.ItemList) itemList).includeImages(4); - - - - - diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-item.jsp b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-item.jsp deleted file mode 100755 index 01ac7ea96..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/templates/default/practice-news-item.jsp +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - ((com.arsdigita.london.navigation.ui.CategoryPath) categoryPath).setSelectionType( com.arsdigita.london.navigation.ui.Selection.USE_ITEM_ID ); - - - - ((com.arsdigita.london.navigation.ui.CategoryNavRecursive) categoryNavRecursive).setSelectionType( com.arsdigita.london.navigation.ui.Selection.USE_ITEM_ID ); - - - - - - - diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpageEdit.jsp b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpageEdit.jsp deleted file mode 100755 index 80aa82584..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpageEdit.jsp +++ /dev/null @@ -1,12 +0,0 @@ -<%@ page - import ="com.arsdigita.cms.webpage.ui.WebpageCMSEditorPage,com.arsdigita.cms.dispatcher.ContentSectionDispatcher,com.arsdigita.dispatcher.*" %> -<%DispatcherHelper.cacheDisable(response);%> - - -<% - WebpageCMSEditorPage sectionPage = new WebpageCMSEditorPage(); - RequestContext context = DispatcherHelper.getRequestContext(request); - sectionPage.init(); - sectionPage.dispatch(request, response, context); -%> diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpagePreview.jsp b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpagePreview.jsp deleted file mode 100755 index 65438d2ee..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/cmsWebpagePreview.jsp +++ /dev/null @@ -1,12 +0,0 @@ -<%@ page - import ="com.arsdigita.cms.webpage.ui.WebpagePreviewPage,com.arsdigita.dispatcher.*" %> -<%DispatcherHelper.cacheDisable(response);%> - - -<% - WebpagePreviewPage sectionPage = new WebpagePreviewPage(); - RequestContext context = DispatcherHelper.getRequestContext(request); - sectionPage.init(); - sectionPage.dispatch(request, response, context); -%> diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/edit.jsp b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/edit.jsp deleted file mode 100755 index a0566c3a6..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/www/edit.jsp +++ /dev/null @@ -1,18 +0,0 @@ -<%@ page - import ="com.arsdigita.cms.webpage.ui.WebpagePortletEditorPage,com.arsdigita.cms.dispatcher.ContentSectionDispatcher,com.arsdigita.cms.ContentSection,com.arsdigita.cms.dispatcher.Utilities,com.arsdigita.dispatcher.*,java.util.Date" %><%DispatcherHelper.cacheDisable(response);%> - - - -<%! - private WebpagePortletEditorPage sectionPage = new WebpagePortletEditorPage(); -%> - -<% - ContentSection section = - ContentSectionDispatcher.getContentSection(request); - - RequestContext context = DispatcherHelper.getRequestContext(request); - sectionPage.init(); - sectionPage.dispatch(request, response, context); -%> diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/xsl/index.xsl b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/xsl/index.xsl deleted file mode 100755 index 08acfdeac..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/content-section/xsl/index.xsl +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/webpage/xsl/webpage-portlet.xsl b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/webpage/xsl/webpage-portlet.xsl deleted file mode 100755 index 4027b2de8..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/packages/webpage/xsl/webpage-portlet.xsl +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - -
- - - - - - - -
- -
- -
-
-
- -
diff --git a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/static/content-types/com/arsdigita/cms/Webpage.xsl b/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/static/content-types/com/arsdigita/cms/Webpage.xsl deleted file mode 100755 index 736bb8e07..000000000 --- a/ccm-webpage/debian/ccm-webpage/usr/share/java/webapps/ccm-webpage-6.3.0/ROOT/static/content-types/com/arsdigita/cms/Webpage.xsl +++ /dev/null @@ -1,39 +0,0 @@ - -]> - - - - - - - - -

- - - - -

-
- - - -

- - -
- - -

WEBPAGE &gt;

- -
- -
diff --git a/ccm-webpage/debian/changelog b/ccm-webpage/debian/changelog deleted file mode 100755 index 070a22891..000000000 --- a/ccm-webpage/debian/changelog +++ /dev/null @@ -1,53 +0,0 @@ -ccm-webpage (6.3.0-9) unstable; urgency=low - - * Small change from UNDP - - -- My Fri, 3 Mar 2006 11:09:33 +0000 - -ccm-webpage (6.3.0-8) unstable; urgency=low - - * Fixing template - - -- My Thu, 12 Jan 2006 13:34:16 +0000 - -ccm-webpage (6.3.0-7) unstable; urgency=low - - * Moving pdl init to webpageinit - - -- My Thu, 12 Jan 2006 12:15:46 +0000 - -ccm-webpage (6.3.0-6) unstable; urgency=low - - * Adding type initializer - - -- My Thu, 12 Jan 2006 10:24:02 +0000 - -ccm-webpage (6.3.0-5) unstable; urgency=low - - * Removing ddl-generated sql files - - -- My Wed, 11 Jan 2006 08:49:57 +0000 - -ccm-webpage (6.3.0-4) unstable; urgency=low - - * Fix again for putting webpages into folder - - -- My Tue, 10 Jan 2006 09:16:49 +0000 - -ccm-webpage (6.3.0-3) unstable; urgency=low - - * Fix config init and putting webpages into folder - - -- My Mon, 9 Jan 2006 17:30:08 +0000 - -ccm-webpage (6.3.0-2) unstable; urgency=low - - * Fixing XSL files not to break the default - - -- My Wed, 4 Jan 2006 17:14:22 +0000 - -ccm-webpage (6.3.0-1) unstable; urgency=low - - * Initial import - - -- Runtime Collective Ltd. Mon, 10 Oct 2005 13:52:01 +0000 diff --git a/ccm-webpage/debian/compat b/ccm-webpage/debian/compat deleted file mode 100755 index b8626c4cf..000000000 --- a/ccm-webpage/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-webpage/debian/config b/ccm-webpage/debian/config deleted file mode 100755 index 933a23403..000000000 --- a/ccm-webpage/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-webpage/debian/control b/ccm-webpage/debian/control deleted file mode 100755 index e1e4132b0..000000000 --- a/ccm-webpage/debian/control +++ /dev/null @@ -1,20 +0,0 @@ -Source: ccm-webpage -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-webpage -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: Webpage application. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-webpage-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-webpage - Documentation for ccm-webpage. Provides the JavaDoc API documentation. diff --git a/ccm-webpage/debian/copyright b/ccm-webpage/debian/copyright deleted file mode 100755 index 2f47e3b15..000000000 --- a/ccm-webpage/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-webpage/debian/files b/ccm-webpage/debian/files deleted file mode 100755 index ef509b033..000000000 --- a/ccm-webpage/debian/files +++ /dev/null @@ -1,2 +0,0 @@ -ccm-webpage_6.3.0-9_all.deb contrib/web optional -ccm-webpage-doc_6.3.0-9_all.deb contrib/web optional diff --git a/ccm-webpage/debian/postinst b/ccm-webpage/debian/postinst deleted file mode 100755 index 289ded6ca..000000000 --- a/ccm-webpage/debian/postinst +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# postinst script for ccm-webpage -# -# 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-webpage/debian/postrm b/ccm-webpage/debian/postrm deleted file mode 100755 index 4153ae128..000000000 --- a/ccm-webpage/debian/postrm +++ /dev/null @@ -1,62 +0,0 @@ -#! /bin/sh -# postrm script for ccm-webpage -# -# 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-webpage/debian/prerm b/ccm-webpage/debian/prerm deleted file mode 100755 index 0511676b8..000000000 --- a/ccm-webpage/debian/prerm +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/sh -# prerm script for ccm-webpage -# -# 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-webpage/debian/rules b/ccm-webpage/debian/rules deleted file mode 100755 index eb481fbf5..000000000 --- a/ccm-webpage/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-webpage/debian/templates b/ccm-webpage/debian/templates deleted file mode 100755 index 431d14d87..000000000 --- a/ccm-webpage/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-webpage -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-webpage". - -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-webpage". diff --git a/ccm-zes-aplaws/debian/ccm-build-bundles.sh b/ccm-zes-aplaws/debian/ccm-build-bundles.sh deleted file mode 100644 index d9ce5db25..000000000 --- a/ccm-zes-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-shp-aplaws-${VER_NUM}-bundles.jar diff --git a/ccm-zes-aplaws/debian/ccm-build.sh b/ccm-zes-aplaws/debian/ccm-build.sh deleted file mode 100644 index 6d0fad9cd..000000000 --- a/ccm-zes-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-zes-aplaws/debian/ccm-clean.sh b/ccm-zes-aplaws/debian/ccm-clean.sh deleted file mode 100644 index 3c10238d3..000000000 --- a/ccm-zes-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-zes-aplaws/debian/ccm-config.sh b/ccm-zes-aplaws/debian/ccm-config.sh deleted file mode 100644 index 90094298f..000000000 --- a/ccm-zes-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-zes-aplaws/debian/ccm-disperse.sh b/ccm-zes-aplaws/debian/ccm-disperse.sh deleted file mode 100644 index 0c075d070..000000000 --- a/ccm-zes-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-zes-aplaws/debian/ccm-install.sh b/ccm-zes-aplaws/debian/ccm-install.sh deleted file mode 100644 index 39f3f2839..000000000 --- a/ccm-zes-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-zes-aplaws/debian/ccm-ldn-aplaws.dirs b/ccm-zes-aplaws/debian/ccm-ldn-aplaws.dirs deleted file mode 100644 index cde7d62d5..000000000 --- a/ccm-zes-aplaws/debian/ccm-ldn-aplaws.dirs +++ /dev/null @@ -1 +0,0 @@ -usr/share/java/ccm-shp-aplaws-6.5.0 diff --git a/ccm-zes-aplaws/debian/ccm-settings-run.sh b/ccm-zes-aplaws/debian/ccm-settings-run.sh deleted file mode 100755 index 65ee0ba2c..000000000 --- a/ccm-zes-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-zes-aplaws/debian/ccm-settings.sh b/ccm-zes-aplaws/debian/ccm-settings.sh deleted file mode 100644 index 6bac196d2..000000000 --- a/ccm-zes-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-shp-aplaws -version=6.5.0 -appname=ccm-shp-aplaws -appversion=6.5.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-zes-aplaws/debian/changelog b/ccm-zes-aplaws/debian/changelog deleted file mode 100644 index eb57ca074..000000000 --- a/ccm-zes-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-zes-aplaws/debian/compat b/ccm-zes-aplaws/debian/compat deleted file mode 100644 index b8626c4cf..000000000 --- a/ccm-zes-aplaws/debian/compat +++ /dev/null @@ -1 +0,0 @@ -4 diff --git a/ccm-zes-aplaws/debian/config b/ccm-zes-aplaws/debian/config deleted file mode 100644 index da490fef1..000000000 --- a/ccm-zes-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-zes-aplaws/debian/control b/ccm-zes-aplaws/debian/control deleted file mode 100644 index edb1db26a..000000000 --- a/ccm-zes-aplaws/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: ccm-shp-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-shp-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 for non-governmental use. - This package contains the APLAWS application for APLAWS. - . - FIXME: We need a longer and more meaningful description here. - -Package: ccm-shp-aplaws-doc -Architecture: all -Depends: ccm-tools -Description: Documentation for ccm-shp-aplaws - Documentation for ccm-shp-aplaws. Provides the JavaDoc API documentation. diff --git a/ccm-zes-aplaws/debian/copyright b/ccm-zes-aplaws/debian/copyright deleted file mode 100644 index 2f47e3b15..000000000 --- a/ccm-zes-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-zes-aplaws/debian/postinst b/ccm-zes-aplaws/debian/postinst deleted file mode 100644 index 3f58d8ea3..000000000 --- a/ccm-zes-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-zes-aplaws/debian/postrm b/ccm-zes-aplaws/debian/postrm deleted file mode 100644 index 6acca2ed7..000000000 --- a/ccm-zes-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-zes-aplaws/debian/prerm b/ccm-zes-aplaws/debian/prerm deleted file mode 100644 index 50dff3f91..000000000 --- a/ccm-zes-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-zes-aplaws/debian/rules b/ccm-zes-aplaws/debian/rules deleted file mode 100755 index 00c691011..000000000 --- a/ccm-zes-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-zes-aplaws/debian/templates b/ccm-zes-aplaws/debian/templates deleted file mode 100644 index 87f1f6eaa..000000000 --- a/ccm-zes-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-shp-aplaws -Description: The name of the package - This is syntetic sugar. - -Template: ccm/package_version -Type: string -Default: 6.5.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".