--- webcit-7.86-dfsg.orig/tests/Makefile +++ webcit-7.86-dfsg/tests/Makefile @@ -0,0 +1,141 @@ +# $Id: Makefile.in 7860 2009-10-05 20:25:07Z dothebart $ + +prefix=/usr/sbin/ +srcdir=./../ + + +AUTOCONF=autoconf +CC=x86_64-linux-gnu-gcc +CFLAGS=-I/usr/sbin/ -g -O2 -O2 -Wall +DEFS=-DHAVE_CONFIG_H +INSTALL=/usr/bin/install -c +LIBOBJS= +LIBS=-lssl -lcrypto -lcitadel -lical -lpthread -lcunit +LDFLAGS=-L/usr/sbin/ +SED=sed +SETUP_LIBS=-lcitadel +PTHREAD_DEFS=-D_REENTRANT +LIB_SUBDIRS= +PROG_SUBDIRS= po +SUBDIRS=$(LIB_SUBDIRS) $(PROG_SUBDIRS) +LOCALEDIR=/usr/share/ +WWWDIR=/usr/share/citadel-webcit + +TEST_OBJECTS= \ + ../webcit.o \ + ../context_loop.o \ + ../modules_init.o \ + \ + ../cookie_conversion.o \ + \ + ../locate_host.o \ + ../sysdep.o \ + ../utils.o \ + ../decode.o \ + ../html2html.o \ + ../http_datestring.o \ + ../fmt_date.o \ + \ + ../subst.o \ + ../preferences.o \ + ../paramhandling.o \ + ../serv_func.o \ + ../tcp_sockets.o \ + ../crypto.o \ + ../gettext.o \ + ../tabs.o \ + \ + ../netconf.o \ + ../inetconf.o \ + ../siteconfig.o \ + ../smtpqueue.o \ + ../pushemail.o \ + ../sieve.o \ + \ + ../static.o \ + ../graphics.o \ + ../downloads.o \ + \ + ../auth.o \ + ../openid.o \ + ../who.o \ + ../userlist.o \ + ../useredit.o \ + ../sysmsgs.o \ + \ + ../listsub.o \ + \ + ../setup_wizard.o \ + ../summary.o \ + ../mainmenu.o \ + ../iconbar.o \ + \ + ../floors.o \ + ../roomops.o \ + ../roomlist.o \ + ../marchlist.o \ + \ + ../messages.o \ + ../msg_renderers.o \ + ../bbsview_renderer.o \ + ../wiki.o \ + \ + ../paging.o \ + ../roomchat.o \ + \ + ../vcard_edit.o \ + ../addressbook_popup.o \ + ../autocompletion.o \ + \ + ../ical_maps.o \ + ../ical_subst.o \ + ../ical_dezonify.o \ + ../calendar.o \ + ../calendar_tools.o \ + ../calendar_view.o \ + ../tasks.o \ + ../event.o \ + ../availability.o \ + ../notes.o \ + \ + ../groupdav_main.o \ + ../groupdav_get.o \ + ../groupdav_propfind.o \ + ../groupdav_options.o \ + ../groupdav_delete.o \ + ../groupdav_put.o + +TEST_COMMON_OBJECTS = \ + test_tools.o + +# End of configuration section + +all: test + +.SUFFIXES: .cpp .c .o + +clean: + rm -f $(WEBCIT_OBJECTS) + + +test: $(TEST_OBJECTS) $(TEST_COMMON_OBJECTS) $(LIBOBJS) test_main.o + $(CC) $(LDFLAGS) -o test $(LIBOBJS) test_main.o \ + $(TEST_OBJECTS) $(TEST_COMMON_OBJECTS) $(LIBS) + +.c.o: + $(CC) $(CFLAGS) -I ../ $(DEFS) -c $(PTHREAD_DEFS) $< + +.cpp.o: + $(CC) $(CFLAGS) -I ../ $(DEFS) -c $(PTHREAD_DEFS) $< + +Makefile: $(srcdir)/Makefile.in $(srcdir)/config.status + CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) $(srcdir)/config.status + +config.status: $(srcdir)/configure + $(SHELL) $(srcdir)/config.status --recheck + +$(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/aclocal.m4 + cd $(srcdir) && $(AUTOCONF) + +$(srcdir)/aclocal.m4: $(srcdir)/acinclude.m4 + cd $(srcdir) && $(ACLOCAL) --- webcit-7.86-dfsg.orig/debian/citadel-webcit.manpages +++ webcit-7.86-dfsg/debian/citadel-webcit.manpages @@ -0,0 +1 @@ +debian/webcit.8 --- webcit-7.86-dfsg.orig/debian/citadel-webcit.install +++ webcit-7.86-dfsg/debian/citadel-webcit.install @@ -0,0 +1 @@ +debian/webcit.conf etc/citadel/ --- webcit-7.86-dfsg.orig/debian/dirs +++ webcit-7.86-dfsg/debian/dirs @@ -0,0 +1,2 @@ +/var/lib/citadel +/var/lib/citadel-webcit --- webcit-7.86-dfsg.orig/debian/watch +++ webcit-7.86-dfsg/debian/watch @@ -0,0 +1,7 @@ +version=3 + +opts=dversionmangle=s/\-dfsg$// \ +http://www.citadel.org/doku.php/installation:source \ +http://easyinstall.citadel.org/webcit-([\d\.]+)[a-z]?.tar.gz \ +debian debian/uscan-dfsg-clean.sh + --- webcit-7.86-dfsg.orig/debian/uscan-dfsg-clean.sh +++ webcit-7.86-dfsg/debian/uscan-dfsg-clean.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +set -e + +#command --upstream-version version filename + +[ $# -eq 3 ] || exit 255 + +echo + +version="$2" +filename="$3" +dfsgfilename=`echo $3 | sed 's,\.orig\.,.dfsg.orig.,'` + +tar xfz ${filename} + +dir=`tar tfz ${filename} | head -1 | sed 's,/.*,,g'` +rm -f ${filename} + +rm -rf ${dir}/static/openid-small.gif +mv ${dir} ${dir}.dfsg.orig + +tar cf - ${dir}.dfsg.orig | gzip -9 > ${dfsgfilename} + +rm -rf ${dir}.dfsg.orig + +echo "${dfsgfilename} created." + --- webcit-7.86-dfsg.orig/debian/compat +++ webcit-7.86-dfsg/debian/compat @@ -0,0 +1 @@ +7 --- webcit-7.86-dfsg.orig/debian/citadel-webcit.postrm +++ webcit-7.86-dfsg/debian/citadel-webcit.postrm @@ -0,0 +1,36 @@ +#! /bin/sh +# Abort if any command returns an error value +set -e +. /usr/share/debconf/confmodule + +#DEBHELPER# + +case "$1" in + purge) + echo "/etc/citadel/www/keys not removed. " + for server in apache apache-ssl apache2; do + if [ -h "/etc/${server}/conf.d/webcit.conf" ]; then + rm -f "/etc/${server}/conf.d/webcit.conf" + invoke-rc.d $server reload || true + fi + done + + rm -f /etc/default/webcit + + db_purge 'citadel/WebcitHttpsPort' || true + db_purge 'citadel/WebcitHttpPort' || true + db_purge 'citadel/WebcitApacheIntegration' ||true + ;; + disappear) + if test "$2" != overwriter; then + echo "$0: undocumented call to \`postrm $*'" 1>&2 + exit 0 + fi + ;; + remove|upgrade|failed-upgrade|abort-install|abort-upgrade) + ;; + *) echo "$0: didn't understand being called with \`$1'" 1>&2 + exit 0;; +esac + +exit 0 --- webcit-7.86-dfsg.orig/debian/rules +++ webcit-7.86-dfsg/debian/rules @@ -0,0 +1,129 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +upstreamversion := $(shell dpkg-parsechangelog | sed -n 's/^Version: *\([^-]\+\)[0-9]-.\+/\1/p') +upstreampatchlevel := $(shell dpkg-parsechangelog | sed -n 's/^Version: *\([^-]\+\)-.\+/\1/p') + +PKGNAME=citadel-webcit +DESTDIR=$(CURDIR)/debian/$(PKGNAME) + +EXTRA_ARGS= +PROFILE_ARGS= +#to enable debugging: export DEB_BUILD_OPTIONS="debug profiling" +ifneq (,$(findstring profiling,$(DEB_BUILD_OPTIONS))) + PROFILE_ARGS= --with-gprof +endif +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 -ggdb -rdynamic -MD -MP -D TECH_PREVIEW + LDFLAGS += -pg + EXTRA_ARGS = --with-backtrace +else + CFLAGS += -O2 +endif +ifneq (,$(findstring urldebug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -D DEBUG_URLSTRINGS +endif + +configure: configure-stamp +configure-stamp: + dh_testdir +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + CFLAGS="$(CFLAGS)" ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr/sbin/ \ + --with-wwwdir=/usr/share/citadel-webcit \ + --with-localedir=/usr/share/ \ + --with-editordir=/usr/share/tinymce/www \ + --with-rundir=/var/run/citadel \ + --with-ical --with-db --with-ldap \ + --with-ssldir=/etc/ssl/webcit/ \ + --with-ssl --with-libiconf \ + --with-newt --with-included-gettext \ + --with-datadir=/var/run/citadel \ + --enable-debug $(EXTRA_ARGS) $(PROFILE_ARGS) + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure + dh_testdir + +# Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +dfsg-free: + rm -f static/openid-small.gif + cd ..; mv $(CURDIR) webcit-$(upstreampatchlevel)-dfsg; \ + tar --exclude debian -czf webcit_$(upstreampatchlevel)-dfsg.orig.tar.gz \ + webcit-$(upstreampatchlevel)-dfsg + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + +# Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) clean + debconf-updatepo + + -rm -f Makefile config.log config.status po/Makefile sysdep.h config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) install-bin install-locale install-wwwdata DESTDIR=$(DESTDIR) + find $(DESTDIR)/usr/share/citadel-webcit/static -type f -exec chmod a-x {} \; + mv $(DESTDIR)/usr/share/citadel-webcit/static.local $(DESTDIR)/var/lib/citadel-webcit + find $(DESTDIR)/usr/share/locale/ -name webcit.mo -exec chmod a-x {} \; + rm $(DESTDIR)/usr/share/citadel-webcit/static/prototype.js + rm $(DESTDIR)/usr/share/citadel-webcit/static/scriptaculous.js + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install + dh_installdebconf + dh_installinit --name=webcit + dh_installman + dh_link + dh_strip --dbg-package=webcit-dbg + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- webcit-7.86-dfsg.orig/debian/citadel-webcit.config +++ webcit-7.86-dfsg/debian/citadel-webcit.config @@ -0,0 +1,77 @@ +#!/bin/sh +set -e +. /usr/share/debconf/confmodule + +db_version 2.0 + +db_capb backup + +DO_CONFIGURE=no + +if test -n "$2"; then +# do we want to reconfigure? + if test "$1" = reconfigure; then + DO_CONFIGURE=yes + fi +else +# are we in first install? + if test "$1" = "configure"; then + DO_CONFIGURE=yes + fi +fi + +if test "$DO_CONFIGURE" = "yes"; then + if test -e /etc/default/webcit; then + . /etc/default/webcit + else + WEBCIT_APACHEFLAG=" " + WEBCIT_HTTP_PORT=8504 + WEBCIT_HTTPS_PORT=-1 + WEBCIT_LANG=UNLIMITED + fi + + if test "$WEBCIT_APACHEFLAG" = "-f"; then + db_set citadel/WebcitApacheIntegration Apache2 + else + db_set citadel/WebcitApacheIntegration Internal + fi + db_set citadel/WebcitHttpPort $WEBCIT_HTTP_PORT + db_set citadel/WebcitHttpsPort $WEBCIT_HTTPS_PORT + db_set citadel/WebcitOfferLang $WEBCIT_LANG + + STATE=1 + LASTSTATE=4 + while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do + + case "$STATE" in + 1) + db_input high citadel/WebcitApacheIntegration || true + ;; + 2) + db_get citadel/WebcitApacheIntegration + if test "$RET" = "Internal"; then + db_set citadel/WebcitHttpPort 80 + db_input high citadel/WebcitHttpPort || true + fi + ;; + 3) + db_get citadel/WebcitApacheIntegration + if test "$RET" = "Internal"; then + db_set citadel/WebcitHttpsPort 443 + db_input high citadel/WebcitHttpsPort || true + fi + ;; + 4) + db_input high citadel/WebcitOfferLang || true + ;; + esac + if db_go; then + STATE=$(($STATE + 1)) + else + STATE=$(($STATE - 1)) + fi + + done +fi + +exit 0 --- webcit-7.86-dfsg.orig/debian/docs +++ webcit-7.86-dfsg/debian/docs @@ -0,0 +1 @@ +README.txt --- webcit-7.86-dfsg.orig/debian/control +++ webcit-7.86-dfsg/debian/control @@ -0,0 +1,57 @@ +Source: webcit +Section: web +Priority: extra +Maintainer: Debian Citadel Team +Uploaders: Wilfried Goesgens , Michael Meskes , Alexander Wirt +Build-Depends: debhelper (>= 7), po-debconf, libical-dev (>=0.43), gettext, locales, + libcitadel-dev (>= 7.86), autotools-dev, libssl-dev +Standards-Version: 3.9.2 +Vcs-Git: git://git.debian.org/git/pkg-citadel/webcit.git +Vcs-Browser: http://git.debian.org/?p=pkg-citadel/webcit.git +Homepage: http://www.citadel.org/ + +Package: citadel-webcit +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, debconf, tinymce, openssl, locales, libjs-prototype, libjs-scriptaculous, adduser +Suggests: citadel-server, apache2, localepurge, gnome-icon-theme +Recommends: shared-mime-info +Description: web-based frontend to Citadel groupware server + WebCit is a web-based, AJAX-enabled frontend to the Citadel groupware system. + It is an attractive web middleware layer that allows user-friendly access. + By combining WebCit and Citadel, you can have a versatile online environment + with many users concurrently accessing the same system using the user + interface of their choice (text, web, or downloaded client software). + +Package: webcit-dbg +Section: debug +Architecture: any +Depends: ${misc:Depends}, + citadel-webcit (= ${binary:Version}) +Description: web-based frontend to Citadel - debugging symbols + WebCit is a web-based, AJAX-enabled frontend to the Citadel groupware system. + It is an attractive web middleware layer that allows user-friendly access. + By combining WebCit and Citadel, you can have a versatile online environment + with many users concurrently accessing the same system using the user + interface of their choice (text, web, or downloaded client software). + . + This package provides the debugging symbols for WebCit. + +Package: citadel-suite +Section: mail +Architecture: all +Depends: citadel-server, citadel-mta, citadel-webcit, citadel-client, ${misc:Depends} +Description: complete and feature-rich groupware server; metapackage for full installation + Citadel is a complete and feature-rich open source groupware platform. + * Email, calendaring/scheduling, address books + * Bulletin boards, mailing list server, instant messaging + * Multiple domain support + * An intuitive, attractive AJAX-style web interface + . + The Citadel system is extremely versatile. It provides numerous front ends to + present to users, such as a text-based interface, an AJAX-style web interface, + and many popular PIM clients using SMTP/POP/IMAP. All of these can be used + simultaneously. + . + It's also extremely scalable. Not only can a well-equipped Citadel server + support a large number of concurrent users, but you can also build + a distributed network of Citadel nodes that share rooms and their content. --- webcit-7.86-dfsg.orig/debian/citadel-webcit.links +++ webcit-7.86-dfsg/debian/citadel-webcit.links @@ -0,0 +1,4 @@ +/usr/share/icons/gnome/24x24/mimetypes /usr/share/citadel-webcit/static/icons +/usr/share/javascript/prototype/prototype.js /usr/share/citadel-webcit/static/prototype.js +/usr/share/javascript/scriptaculous/scriptaculous.js /usr/share/citadel-webcit/static/scriptaculous.js +/var/lib/citadel-webcit/static.local /usr/share/citadel-webcit/static.local --- webcit-7.86-dfsg.orig/debian/webcit.8 +++ webcit-7.86-dfsg/debian/webcit.8 @@ -0,0 +1,84 @@ +.TH WEBCIT 8 2008-9-4 webcit Citadel.org +.SH NAME +webcit \- Citadel Servlet Engine. +.SH SYNOPSIS +\fBwebcit\fR \fB[\-i\fR \fBip_addr]\fR \fB[\-p\fR \fBhttp_port]\fR +\fB[\-t\fR \fBtracefile]\fR \fB[\-T\fR \fBTemplatedebuglevel]\fR +\fB[\-c]\fR \fB[\-f]\fR \fB[\-d]\fR \fB[\-s]\fR \fB[remotehost\fR +\fB[remoteport]\fR \fB]\fR +.SH DESCRIPTION +WebCit (the binaries name is webcit) is the Citadel Servlet engine. It +can operate with Citserver on another box, but it can't operate +without. +.SH OPTIONS +.TP +SwitchResult +.TP +\fB\-hPATH\fR +Specify the home directory eg. \-h/usr/local/citadel not adding a +leading / will make the path relative to the compiletime path. Needed +for running several webcit/citadel instances at the same host +.TP +\fB\-d\fR +Run as a daemon; fork watcher process. +.TP +\fB\-DPATH\fR +Run as a daemon but create a pid file at PATH eg. +\-D/var/run/webcit.pid +.TP +\fB\-iIP_ADDR\fR +Specify IP address to listen on as web server eg \-i192.168.9.1; +default is 0.0.0.0 +.TP +\fB\-pPORT\fR +Specify port to listen on eg. \-p80; default is 2000 +.TP +\fB\-tPATH\fR +Specify trace file (where to put the log file) eg \-t/var/log/webcit +.TP +\fB\-T VAL\fR +0 (default; recommended for production systems) 1: Parse template on +each request .TP +\fB\-xVAL\fR +How much info to put in the trace file (or to stdout) eg \-x9 +.TP +\fB\-f\fR +Follow X\-Forwarded\-For: headers. +.TP +\fB\-c\fR +Use a server cookie. +.TP +\fB\-s\fR +use SSL (turns the \-p default to 443) +.TP +\fBremotehost\fR +if the citserver lives on another box, its name / ip (remember to add +your webserver IP to the citadel servers public_clients \- +Configfile.); else the path to the unix\-domain\-socket. Defaults to +the compiled in unix domain socket +.TP +\fBremoteport\fR +If you want to connect to citserver via TCP specify its port here; +usualy 504 +.SH DEFAULTS +The default for remotehost is to connect localy via Unix Domain Socket. +The default TCP port is 504. \fBwebcit\fR will open Port 2000 serving +HTTP requests and bind 0.0.0.0 if not other specified. +.SH FILES +The location of the files may vary depending on configure options. .TP +\fB\fI/usr/share/citadel\-webcit/static/\fP/ \fR WebCits template files +.TP +\fB\fI/usr/share/citadel\-webcit/static.local/\fP/ \fR Your customized +templates +.TP +\fB\fI/usr/share/tinymce/www/\fP/\fR the TinyMCE +[http://tinymce.moxiecode.com/] Javascript Editor +.TP +\fB\fI/etc/init.d/webcit\fP/\fR +The initscript usually used to start this binary. Add Options here +.TP +\fB\fI/etc/default/webcit\fP/\fR +Parameters to \fI/etc/init.d/webcit\fP/ in the LHFS ified installations +.BR dpkg\-reconfigure citadel\-webcit will modify this file. +.SH HISTORY +1998 \- Now the Uncensored Communication Group --- webcit-7.86-dfsg.orig/debian/changelog +++ webcit-7.86-dfsg/debian/changelog @@ -0,0 +1,443 @@ +webcit (7.86-dfsg-1build2) precise; urgency=low + + * No-change rebuild against current pkgbinarymangler to fix broken + md5sums. (see LP #875466) + + -- Martin Pitt Wed, 29 Feb 2012 09:08:29 +0100 + +webcit (7.86-dfsg-1build1) oneiric; urgency=low + + * Rebuild for OpenSSL 1.0.0. + + -- Colin Watson Tue, 17 May 2011 10:28:04 +0100 + +webcit (7.86-dfsg-1) unstable; urgency=low + + * Imported Upstream version 7.86-dfsg + * Bumped Standards-Version to 3.9.2, no changes needed. + * Updated build dependency on libcitadel to current version. + + -- Michael Meskes Sun, 24 Apr 2011 22:10:13 +0200 + +webcit (7.84-dfsg-1) unstable; urgency=low + + * New Upstream version 7.84-dfsg + + -- Michael Meskes Fri, 10 Sep 2010 11:36:21 +0200 + +webcit (7.83-dfsg-1) unstable; urgency=low + + * New Upstream version 7.83-dfsg + * Bumped Standards-Version to 3.9.1, no changes needed. + + -- Michael Meskes Tue, 17 Aug 2010 10:01:46 +0200 + +webcit (7.81-dfsg-1) unstable; urgency=low + + * New Upstream version 7.81-dfsg + * Bumped Standards-Version to 3.9.0, no changes needed. + * Updated copyright file. + + -- Michael Meskes Wed, 21 Jul 2010 10:05:54 +0200 + +webcit (7.72-dfsg-2) unstable; urgency=low + + * Added Spanish debconf translation. (Closes: #579198) + * Made sure source stays in format 1.0 for now. + + -- Michael Meskes Fri, 07 May 2010 16:05:24 +0200 + +webcit (7.72-dfsg-1) unstable; urgency=low + + * Drop UID to nobody. + * New Upstream version 7.72.dfsg + * Bumped Standards-Version to 3.8.4, no changes needed. + * Adjusted package to cope with the removal of citadel-common. + + -- Michael Meskes Mon, 22 Feb 2010 11:52:42 +0100 + +webcit (7.71-dfsg-1) unstable; urgency=high + + * New Upstream version. + + -- Michael Meskes Wed, 06 Jan 2010 11:00:34 +0100 + +webcit (7.70-dfsg-1) unstable; urgency=low + + * New Upstream version. + * Removed quilt dependency because there is no patch left. + * Replaced _Choices by __Choices in debconf template. + + -- Michael Meskes Fri, 18 Dec 2009 15:19:55 +0100 + +webcit (7.66-dfsg-1) unstable; urgency=low + + * Added information about new git. + * Remove auto-generated files. + * New upstream version. + + -- Michael Meskes Tue, 29 Sep 2009 12:21:33 +0200 + +webcit (7.65-dfsg-1) unstable; urgency=low + + * New upstream version + + -- Michael Meskes Sat, 05 Sep 2009 14:25:37 +0200 + +webcit (7.62-dfsg-1) unstable; urgency=low + + * New upstream version. + * Made dependency calculation not worry about bugfix releases. + + -- Michael Meskes Tue, 18 Aug 2009 10:00:10 +0200 + +webcit (7.61-dfsg-2) unstable; urgency=low + + * Fixed build dependency on libcitadel. + + -- Michael Meskes Thu, 13 Aug 2009 16:20:25 +0200 + +webcit (7.61-dfsg-1) unstable; urgency=low + + * New upstream version. + * Made webcit init script depend on $syslog, closes: #541071 + + -- Michael Meskes Wed, 12 Aug 2009 14:15:23 +0200 + +webcit (7.60-dfsg-1) unstable; urgency=low + + * New upstream version. + * Bumped Standards-Version to 3.8.2, no changes needed. + * Updated Basque translation, closes: #534288 + + -- Michael Meskes Wed, 05 Aug 2009 14:23:20 +0200 + +webcit (7.51-dfsg-1) unstable; urgency=low + + * New upstream version. + + -- Michael Meskes Thu, 04 Jun 2009 09:11:25 +0200 + +webcit (7.50-dfsg-2) unstable; urgency=low + + [ Michael Meskes ] + * Added patch for upstream version 7.50b. + * Update watch file for new page layout. + * Moved meta package citadel-suite to webcit source package to remove + circular dependency. + + [ Wilfried Goesgens ] + * Fixed libical-dev dependency. + + -- Michael Meskes Wed, 29 Apr 2009 09:33:09 +0200 + +webcit (7.50-dfsg-1) unstable; urgency=low + + * Updated Swedish debconf translation, closes: #522980 + * New upstream version. + + -- Michael Meskes Thu, 09 Apr 2009 19:42:47 +0200 + +webcit (7.43-dfsg-3) unstable; urgency=low + + * Do not patch configure.ac because it break package builds. + + -- Michael Meskes Fri, 03 Apr 2009 09:56:05 +0200 + +webcit (7.43-dfsg-2) unstable; urgency=low + + [ Bernd Zeimetz ] + * Calculate dependency on citadel-common based on the current webcit + upstream version, closes: #520881 + * Added Homepage, Vcs-Svn and Vcs-Browser information to debian/control. + * Added debian/uscan-dfsg-clean.sh and updated debian/watch to remove + non-free material while running uscan. + + [ Michael Meskes ] + * Updated to internal releases 7.44. + * Bumped debhelper compat level to 7. + * Added debug package. + + -- Michael Meskes Thu, 02 Apr 2009 10:18:35 +0200 + +webcit (7.43-dfsg-1) unstable; urgency=high + + * New upstream version. + * Reworked copyright file, closes: #518500 + * Updated Galician debconf translation, closes: #519470 + * Updated Portuguese debconf translation, closes: #519461, #520035 + * Updated Russian debconf translation, closes: #519477 + * Updated German debconf translation, closes: #519475 + * Bumped Standards-Version to 3.8.1, no changes needed. + + -- Michael Meskes Wed, 18 Mar 2009 12:00:40 +0100 + +webcit (7.42-dfsg-1) unstable; urgency=high + + * New upstream version, closes: #517579 + * Updated versioned dependencies. + * We have to keep urgency high because 7.38b-dfsg-2 didn't migrate to + testing. + * Changed watch file to account for an additional letter in the version + number if present. + * Create static.local directory under /var/lib/citadel-webcit for local + installation of themes etc. + * Reworked debconf setup. + * Improved debconf template by incorporating ideas from Christian Perrier + . + * Updated Vietnamese debconf translation, closes: #518273 + * Updated Swedish debconf translation, closes: #518328 + * Updated Finish debconf translation, closes: #518663 + * Updated French debconf translation, closes: #518918 + * Updated Czech debconf translation, closes: #518991 + * Updated Italian debconf translation, closes: #519176 + * Updated Russian debconf translation, closes: #519303 + + -- Michael Meskes Tue, 03 Mar 2009 12:44:02 +0100 + +webcit (7.38b-dfsg-2) unstable; urgency=high + + * r7104..7107 remove unneeded parameters to embeddable calendar. + * Urgency set to "high" because this fixes a security hole. + + -- Michael Meskes Thu, 12 Feb 2009 13:09:24 +0100 + +webcit (7.38b-dfsg-1) unstable; urgency=low + + * New upstream version. + * Removed all prepatches. + + -- Michael Meskes Tue, 09 Dec 2008 14:38:18 +0100 + +webcit (7.37-dfsg-6) unstable; urgency=medium + + * Added missing build dependency on libssl-dev causing citadel-webcit to not + start correctly. + + -- Michael Meskes Wed, 12 Nov 2008 12:47:19 +0100 + +webcit (7.37-dfsg-5) unstable; urgency=low + + * Added manpage for webcit. + * Removed absolute paths in postinst script to make lintian happy. + * Do not install local scriptaculous javascript library, but depend on + package providing this library. + * Build depend on autotools-dev to provide up-to-date config.{sub|guess} + files. + + -- Michael Meskes Thu, 11 Sep 2008 11:51:27 +0200 + +webcit (7.37-dfsg-4) unstable; urgency=low + + [Wilfried Goesgens] + * Cleanup apache config hooks on purge; closes: #498556 + + [ Michael Meskes ] + * Fixed filename in postinst, it's webcit.conf not citadel-webcit. + + -- Michael Meskes Thu, 11 Sep 2008 11:27:39 +0200 + +webcit (7.37-dfsg-3) unstable; urgency=low + + [ Wilfried Goesgens ] + * [r6563] add prepatch from devel branch to improve vcard interoperability + with other UI clients; this fixed citadel bug 429 + + -- Michael Meskes Wed, 03 Sep 2008 11:01:14 +0200 + +webcit (7.37-dfsg-2) unstable; urgency=low + + [ Wilfried Goesgens ] + * [r6407] add prepatch from devel branch that lets webcit rate userpasswords + instad of layer 9 + * [r6414] add prepatch from devel branch tweaking serv_prinf + * [r6425] add prepatch from devel branch fixing URL Parsing + * [r6443] add prepatch from devel branch fixing IM Window bug, closes: #493449 + * [r6476] add prepatch from devel branch closing memleak + + [ Michael Meskes ] + * Moved update of config.{sub,guess} to configure target. + + -- Michael Meskes Fri, 15 Aug 2008 14:25:03 +0200 + +webcit (7.37-dfsg-1) unstable; urgency=low + + [ Wilfried Goesgens ] + * New upstream version. + * Fix init script to add the bind-ip to the commandline. + + [ Michael Meskes ] + * Added Swedish translation, closes: #487595 + * Updated Portuguese translation, closes: #488580 + * Removed Open-Id logo from upstream tarball because it doesn't seem to + carry a license. + * Bumped versioned build dependency. + + -- Michael Meskes Tue, 24 Jun 2008 13:43:32 +0200 + +webcit (7.36-2) unstable; urgency=low + + * Bumped versioned build dependency, closes: #485844 + + -- Michael Meskes Thu, 12 Jun 2008 09:50:53 +0200 + +webcit (7.36-1) unstable; urgency=low + + * New upstream version. + * Removed URL handler patch, no longer needed. + * Bumped standards to 3.8.0. + + -- Michael Meskes Fri, 06 Jun 2008 11:54:01 +0200 + +webcit (7.35-3) unstable; urgency=low + + [ Michael Meskes ] + * Updated Galician translation, closes: #480991 + * Updated Basque translation, closes: #483234 + + [ Wilfried Goesgens ] + * Added upstream bugfix in URL handler + + -- Michael Meskes Tue, 13 May 2008 15:03:01 +0200 + +webcit (7.35-2) unstable; urgency=low + + * Added Italian translation, closes: #477716 + * Added Russian translation, closes: #479151 + * Added Czech translation, closes: #480199 + * Updated French translation, closes: #480388 + + -- Michael Meskes Fri, 25 Apr 2008 10:05:02 +0200 + +webcit (7.35-1) unstable; urgency=low + + [ Wilfried Goesgens ] + * new upstream version + * removed prepatches + + [ Michael Meskes ] + * Added French translation, closes: #477126 + * Added Vietnamese translation, closes: #477336 + * Made package build depend on libcitadel-dev >= 1.09. + * Added watch file. + + -- Michael Meskes Thu, 24 Apr 2008 09:50:59 +0200 + +webcit (7.34-dfsg-2) unstable; urgency=low + + [ Wilfried Goesgens ] + * Remove static/prototype.js from the package and depend on libjs-prototype, + closes: #475272 + * Link over prototype.js from libjs-prototype to webcit directory. + + [ Michael Meskes ] + * Fixed some problems in the debconf templates, closes: #475420, #475421 + * Added Portuguese translation, closes: #475447 + * Added German translation, closes: #475419 + * Added Basque translation, closes: #475606 + * Added Galician translation, closes: #475597 + * Added Finish translation, closes: #475666 + * Removed one debconf question and added a README saying the same. + + -- Michael Meskes Fri, 11 Apr 2008 20:56:28 +0200 + +webcit (7.34-dfsg-1) unstable; urgency=low + + * New upstream version + * Added upstream's patch to rename webserver to webcit. + * Changed Debian files accordingly. + + -- Michael Meskes Fri, 04 Apr 2008 08:58:49 +0200 + +webcit (7.33-1) unstable; urgency=low + + [ Wilfried Goesgens ] + * recommend shared mime info + * suggest gnome-icon-theme and symlink its 24x24 icons into + /usr/share/citadel-webcit/static/icons so webcit can display them for + files with mime extensions + + [ Michael Meskes ] + * Changed maintainer to Debian Citadel Team. + * Changed priority to extra. + * New upstream version. + * Do not ignore errors in clean target. + * Bumped Standards-Version. + * Call debconf-updatepo in clean target. + * Automatically update autoconf helper files. + + -- Michael Meskes Sat, 22 Mar 2008 17:17:25 +0100 + +webcit (7.31-27) unstable; urgency=high + + * initial mime detection support + * don't nail the users to GIF + + -- Wilfried Goesgens Tue, 12 Feb 2008 0:00:00 +0001 + +webcit (7.30-26) unstable; urgency=high + + * Fix room admin dialog + + -- Wilfried Goesgens Wed, 6 Feb 2008 20:00:00 +0001 + +webcit (7.30-25) unstable; urgency=high + + * New citadel version. + + -- Wilfried Goesgens Fri, 1 Feb 2008 10:00:00 +0001 + +webcit (7.24-24) unstable; urgency=high + + * fixed missing locales and image calculation + + -- Wilfried Goesgens Wed, 21 Nov 2007 0:01:21 +0002 + +webcit (7.24-23) unstable; urgency=high + + * crash in notes fixed. + + -- Wilfried Goesgens Fri, 16 Nov 2007 0:01:21 +0002 + +webcit (7.23-22) unstable; urgency=high + + * fix some IE rendering bugs + + -- Wilfried Goesgens Thu, 8 Nov 2007 23:01:21 +0002 + +webcit (7.22-21) unstable; urgency=high + + * fixed ssl related directory access crash + + -- Wilfried Goesgens Tue, 30 Oct 2007 18:10:00 +0002 + +webcit (7.22-20) unstable; urgency=high + + * Lots of stylesheet fixes. Performance improvements. + + -- Wilfried Goesgens Thu, 25 Oct 2007 18:10:00 +0002 + +webcit (7.13-19) unstable; urgency=high + + * update to actual Webcit release. Fix several conditions of CPU abuse. + + -- Wilfried Goesgens Fri, 3 Aug 2007 18:10:00 +0002 + +webcit (7.12-18) unstable; urgency=high + + * update to actual Citadel SVN. many new features. see Packages changelog. + + -- Wilfried Goesgens Sun, 8 Jul 2007 8:10:00 +0000 + +webcit (7.11-17) unstable; urgency=high + + * update to actual Citadel SVN. many new features. see Packages changelog. + + -- Wilfried Goesgens Fri, 6 Jul 2007 22:10:00 +0000 + +webcit (7.07-0ubuntu1) unstable; urgency=low + + * initial ubuntu release. + + -- Wilfried Goesgens Fri, 06 Apr 2007 19:07:00 +0000 + --- webcit-7.86-dfsg.orig/debian/webcit.conf +++ webcit-7.86-dfsg/debian/webcit.conf @@ -0,0 +1,33 @@ +# if you want to have this in just one virtual host +# context, remove the symbolic link from /etc/apachenn/conf.d +# and rather do something like +# +# Servername www.mycitadel.org +# include /etc/citadel/webcit.conf +# + + + Allow from all + + + Allow from all + + + Allow from all + + +ProxyPass /webcit/ http://127.0.0.1:8504/webcit/ +ProxyPassReverse /webcit/ http://127.0.0.1:8504/webcit/ + +ProxyPass /listsub http://127.0.0.1:8504/listsub +ProxyPassReverse /listsub http://127.0.0.1:8504/listsub + +ProxyPass /groupdav/ http://127.0.0.1:8504/groupdav/ +ProxyPassReverse /groupdav/ http://127.0.0.1:8504/groupdav/ + +ProxyPass /who_inner_html http://127.0.0.1:8504/who_inner_html +ProxyPassReverse /who_inner_html http://127.0.0.1:8504/who_inner_html + +alias /static /usr/share/citadel-webcit/static +alias /tiny_mce /usr/share/tinymce/www + --- webcit-7.86-dfsg.orig/debian/citadel-webcit.postinst +++ webcit-7.86-dfsg/debian/citadel-webcit.postinst @@ -0,0 +1,92 @@ +#! /bin/sh +# Abort if any command returns an error value +set -e +. /usr/share/debconf/confmodule + +db_version 2.0 + +case "$1" in + configure) + if ! getent group citadel >/dev/null; then + addgroup --system citadel + fi + + if ! getent passwd citadel >/dev/null; then + adduser --system --ingroup citadel --home /var/lib/citadel \ + --gecos "Citadel system user" --shell /bin/sh \ + --disabled-password --no-create-home --shell /bin/false citadel + fi + + chown -R citadel:citadel /etc/citadel + chown -R citadel:citadel /var/lib/citadel + + if test ! -d /var/lib/citadel/keys; then + mkdir -p /var/lib/citadel/keys + fi + if test ! -d /var/run/citadel/keys; then + mkdir -p /var/run/citadel/keys + fi + + if test -e /etc/default/webcit; then + . /etc/default/webcit + else + export WEBCIT_CITADEL_IP=127.0.0.1 + export WEBCIT_CITADEL_PORT=504 + fi + + db_get citadel/WebcitApacheIntegration && WWWTYPE="$RET" + if test "$WWWTYPE" = "Internal"; then + export WEBCIT_APACHEFLAG=" " + export WEBCIT_LISTEN_IP=${WEBCIT_LISTEN_IP:-0.0.0.0} + else + export WEBCIT_APACHEFLAG="-f" + export WEBCIT_LISTEN_IP=${WEBCIT_LISTEN_IP:-127.0.0.1} + fi + + db_get citadel/WebcitHttpPort && export WEBCIT_HTTP_PORT=$RET + db_get citadel/WebcitHttpsPort && export WEBCIT_HTTPS_PORT=$RET + db_get citadel/WebcitOfferLang && export WEBCIT_LANG=$RET + + db_stop + + set |grep WEBCIT |sed "s;^;export ;;" >/etc/default/webcit + + #DEBHELPER# + +# update the webserver, if needed + case "$WWWTYPE" in + "Apache") + webservers="apache" + aenmod proxy||true + ;; + "Apache-SSL") + webservers="apache-ssl" + ;; + "Apache2") + webservers="apache2" + a2enmod proxy||true + a2enmod proxy_http||true + ;; + "All") + webservers="apache apache-ssl apache2" + ;; + *) + webservers="" + ;; + esac + for server in $webservers; do + if [ -d "/etc/${server}/conf.d" ]; then + if [ ! -e "/etc/${server}/conf.d/webcit.conf" ] ; then + ln -sf /etc/citadel/webcit.conf "/etc/${server}/conf.d/webcit.conf" + fi + invoke-rc.d $server reload || true + fi + done + ;; + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) echo "$0: didn't understand being called with '$1'" 1>&2 + exit 1;; +esac + +exit 0 --- webcit-7.86-dfsg.orig/debian/citadel-webcit.README.Debian +++ webcit-7.86-dfsg/debian/citadel-webcit.README.Debian @@ -0,0 +1,7 @@ +To complete the configuration of the Citadel server, use citadel-webcit with a +web browser, log in with the administrator's username and review items in the +Administration menu. + +More detailed information can be found on www.citadel.org, particularly in the +FAQ and Documentation sections. + --- webcit-7.86-dfsg.orig/debian/webcit.init +++ webcit-7.86-dfsg/debian/webcit.init @@ -0,0 +1,189 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: webcit +# Required-Start: $remote_fs $syslog +# Required-Stop: $remote_fs $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Example initscript +# Description: This file should be used to construct scripts to be +# placed in /etc/init.d. +### END INIT INFO + +# Author: Wilfried Goesgens +RUNDIR=/var/run/webcit +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="Citadel Groupware Webserver " +NAME=webcit +DAEMON=/usr/sbin/$NAME +DAEMON_ARGS="" +PIDFILE=$RUNDIR/$NAME.pid +SCRIPTNAME=/etc/init.d/webcit +SENDCOMMAND=/usr/sbin/sendcommand +DEFAULT=/etc/default/webcit +LOGDIR=/var/log/webcit/ +DROP_TO_UID=`id -u nobody` + +# Exit if the package is not installed +[ -x "$DAEMON" ] || exit 0 + +# Read configuration variable file if it is present +[ -r /etc/default/$NAME ] && . /etc/default/$NAME + +MODERN= + +# Load the VERBOSE setting and other rcS variables +if test -f /lib/init/vars.sh ; then + . /lib/init/vars.sh + MODERN=1 +fi + +# Define LSB log_* functions. +# Depend on lsb-base (>= 3.0-6) to ensure that this file is present. +if test -f /lib/lsb/init-functions; then + . /lib/lsb/init-functions + MODERN=1 +fi + +if test -f $DEFAULT; then + . $DEFAULT +fi + +unset LANG +unset LANGUAGE +unset LC_ALL +unset LOCALE + +if test -z "$TZ"; then + if test -e /etc/timezone; then + TZ=`cat /etc/timezone` + export TZ + fi +fi +# +# Function that starts the daemon/service +# +do_start() +{ + #1: -p flag + #1: port + #2: ssl + #4: -f flag for apache + + # for ubuntu: check our volatile dirs. + if test ! -d $RUNDIR; then + mkdir -p $RUNDIR + fi + + if test ! -d $LOGDIR; then + mkdir -p $LOGDIR + fi + + # are we disabled? + if test "$1" -lt "0"; then + return 0 + fi + + # Return + # 0 if daemon has been started + # 1 if daemon was already running + # 2 if daemon could not be started + if $DAEMON -u $DROP_TO_UID -D$PIDFILE.$1 \ + -p$@ -t$LOGDIR/access.${1}.log $4; then + return 0 + else + return 2 + fi +} + +# +# Function that stops the daemon/service +# +do_stop() +{ + for i in $PIDFILE.*; do if test -f $i; then + kill `cat $i` + rm -f $i + fi; done +} + +do_reload() { + do_stop + do_start $WEBCIT_HTTP_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT "" "$LISTEN" "$WEBCIT_APACHEFLAG" + do_start $WEBCIT_HTTPS_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT -s "$LISTEN" "$WEBCIT_APACHEFLAG" + return 0 +} + +case "$1" in + start) + if test -n "$MODERN"; then + [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" + else + echo "Starting $DESC" "$NAME" + fi + + if test -n "$WEBCIT_LISTEN_IP"; then + LISTEN="-i$WEBCIT_LISTEN_IP" + fi + + do_start $WEBCIT_HTTP_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT "" "$LISTEN" "$WEBCIT_APACHEFLAG" + do_start $WEBCIT_HTTPS_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT -s "$LISTEN" "$WEBCIT_APACHEFLAG" + + if test -n "$MODERN"; then + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + fi + ;; + stop) + if test -n "$MODERN"; then + [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" + else + echo "Stopping $DESC" "$NAME" + fi + do_stop + if test -n "$MODERN"; then + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + fi + ;; + restart|force-reload) + if test -n "$MODERN"; then + log_daemon_msg "Restarting $DESC" "$NAME" + else + echo "Restarting $DESC" "$NAME" + fi + + do_stop + + if test -n "$MODERN"; then + case "$?" in + 0|1) + do_start $WEBCIT_HTTP_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT "" "$WEBCIT_APACHEFLAG" + do_start $WEBCIT_HTTPS_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT -s "$WEBCIT_APACHEFLAG" + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac + ;; + *) + # Failed to stop + log_end_msg 1 + ;; + esac + else + do_start $WEBCIT_HTTP_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT "" "$WEBCIT_APACHEFLAG" + do_start $WEBCIT_HTTPS_PORT $WEBCIT_CITADEL_IP $WEBCIT_CITADEL_PORT -s "$WEBCIT_APACHEFLAG" + fi + ;; + *) + echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2 + exit 3 + ;; +esac + +: --- webcit-7.86-dfsg.orig/debian/citadel-webcit.templates +++ webcit-7.86-dfsg/debian/citadel-webcit.templates @@ -0,0 +1,32 @@ +Template: citadel/WebcitApacheIntegration +Type: select +__Choices: Apache2, Internal +Default: Internal +_Description: Integration with Apache webservers: + If you want Webcit to run alongside with one of your other installed + Apache webservers, select it from the list, else use Internal to make + Webcit use its own HTTP server facilities. + +Template: citadel/WebcitHttpPort +Type: string +Default: 8504 +_Description: Webcit HTTP port: + Select the port which the plain HTTP Webcit server should listen on. + Use port 80 if you don't have another webserver running or enter -1 to disable + it. + +Template: citadel/WebcitHttpsPort +Type: string +Default: 443 +_Description: Webcit HTTPS port: + Select the port which the SSL HTTP Webcit server should listen on or enter -1 + to disable it. + +Template: citadel/WebcitOfferLang +Type: select +__Choices: User-defined, Danish, German, English, Spanish, French, Italian, Dutch, Brazilian Portuguese +Choices-C: UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR +Default: UNLIMITED +_Description: Limit Webcit's login language selection + Select language the Webcit server should run in. User-defined leaves this choice + to the user at the login prompt. --- webcit-7.86-dfsg.orig/debian/copyright +++ webcit-7.86-dfsg/debian/copyright @@ -0,0 +1,125 @@ +This package was debianized by Wilfried Goesgens on +Mon, 25 Jul 2005 12:46:10 +0200. + +It was downloaded from http://www.citadel.org + +Upstream Authors (the webcit development team): + Art Cancro + Nathan Bryant + Alessandro Fulciniti + Wilifried Goesgens + Nick Grossman + Andru Luvisi + Dave Lindquist + Matt Pfleger + Martin Mouritzen + +Copyright: (C) 1996-2010 WebCit development team + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3 of the License. + +Copyright for Prototype JavaScript Framework : + (C) 2005-2008 Sam Stephenson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Copyright for script.aculo.us JavaScript library : + (C) 2005-2007 Thomas Fuchs, Marty Haught, Ivan Krstic, Jon Tirsen, Sammi Williams + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Copyright for TinyMCE : + (C) 2003-2006 Moxiecode Systems AB + + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +Copyright for Nifty Corners Cube : + (C) 2005-2006 Alessandro Fulciniti + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + +Copyright for DatePicker: + (C) 2007 Mathieu Jondet Eulerian Technologies + +DatePicker is freely distributable under the same terms as Prototype. + +* In addition, as a special exception, the copyright holders give +* permission to link the code of portions of this program with the +* OpenSSL library under certain conditions as described in each +* individual source file, and distribute linked combinations +* including the two. +* You must obey the GNU General Public License in all respects +* for all of the code used other than OpenSSL. If you modify +* file(s) with this exception, you may extend this exception to your +* version of the file(s), but you are not obligated to do so. If you +* do not wish to do so, delete this exception statement from your +* version. If you delete this exception statement from all source +* files in the program, then also delete it here. + +static/util.js is mostly Copyright (c) 2005, Michael Schuerig, +michael@schuerig.de and distributed under the LGPL. + +NanoTree: Martin Mouritzen. (martin@nano.dk) LGPL V3 + +Bubble Tooltips: Alessandro Fulciniti (http://web-graphics.com) Public Domain, GPL V3 by Art Cancro + +On Debian systems, the complete text of the GNU General +Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. + +On Debian systems, the complete text of the GNU General +Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +On Debian systems, the complete text of the GNU Lesser General +Public License version 3 can be found in `/usr/share/common-licenses/LGPL-3'. + +The Debian packaging is Copyright (C) 2006-2010, Debian Citadel Team + and is licensed under the GPL, see +above. + --- webcit-7.86-dfsg.orig/debian/po/ru.po +++ webcit-7.86-dfsg/debian/po/ru.po @@ -0,0 +1,160 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2008. +# Max Kosmach , 2009. +# Yuri Kozlov , 2009. +msgid "" +msgstr "" +"Project-Id-Version: webcit 7.42-dfsg-1\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-12 21:04+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "встроенный" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Интеграция с веб-серверами Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Если вы хотите, чтобы Webcit использовал один из уже установленных в системе " +"веб-серверов Apache, то выберите это из списка, или же используйте " +"встроенный в Webcit HTTP-сервер." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "HTTP-порт Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Выберите порт, на котором простой HTTP Webcit сервер должен принимать " +"запросы. Используйте порт 80, если у вас не запущено другого веб-сервера, " +"или введите -1 для выключения данной возможности." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "HTTPS-порт Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Выберите порт, на котором SSL HTTP Webcit сервер должен принимать запросы " +"или -1 для выключения данной возможности." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "выбирается пользователем" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "датский" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "немецкий" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "английский" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "испанский" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "французский" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "итальянский" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "голландский" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "бразильский португальский" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Выбор языка для экрана входа в Webcit" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Выберите язык, который должен использоваться при работе сервера Webcit. " +"\"Выбирается пользователем\" означает, что пользователь сможет выбрать " +"нужный язык при входе." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, встроенный" --- webcit-7.86-dfsg.orig/debian/po/fr.po +++ webcit-7.86-dfsg/debian/po/fr.po @@ -0,0 +1,174 @@ +# French translation of the webcit package +# Copyright (C) 2008 debian-l10n-french +# This file is distributed under the same license as the webcit package. +# +# Translators: +# Art Cancro , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: 7.42-dfsg-1\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2008-03-02 00:00+0200\n" +"Last-Translator: Steve Petruzzello \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Interne" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Serveur Apache à configurer pour Webcit :" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Si vous désirez exécuter Webcit en même temps qu'un des serveurs web Apache " +"déjà installés, veuillez choisir celui-ci dans la liste. « Interne » " +"sélectionnera le serveur HTTP intégré à Webcit." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Port HTTP pour Webcit :" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Veuillez choisir le port d'écoute HTTP pour Webcit. Ne choisissez le port 80 " +"que si aucun serveur web n'est déjà en fonction. Indiquez -1 pour désactiver " +"ce réglage." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Port HTTP pour Webcit :" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Veuillez choisir le port d'écoute HTTPS pour Webcit. Indiquez -1 pour " +"désactiver ce réglage." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Choix par l'utilisateur" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Danois" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Allemand" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Anglais" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Espagnol" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Français" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italien" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Néerlandais" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Portugais du Brésil" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Choix de la langue à la connexion :" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Veuillez choisir la langue affichée par le serveur Webcit. \"Choix par " +"l'utilisateur\" laisse la possibilité à l'utilisateur de choisir la langue à " +"la connexion." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Interne" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "" +#~ "Choix par l'utilisateur, Danois, Allemand, Anglais, Espagnol, Français, " +#~ "Italien, Néerlandais, Portugais du Brésil" + +#~ msgid "Apache, Apache-SSL, Apache2, All, Internal" +#~ msgstr "Apache, Apache-SSL, Apache2, Tous, Interne" + +#~ msgid "Should Webcit be integrated in your Apache?" +#~ msgstr "Serveur web à configurer pour Webcit :" + +#~ msgid "WebCit HTTPS port:" +#~ msgstr "Port HTTPS pour Webcit :" + +#~ msgid "Citadel/UX" +#~ msgstr "Note d'installation de Citadel/UX" --- webcit-7.86-dfsg.orig/debian/po/templates.pot +++ webcit-7.86-dfsg/debian/po/templates.pot @@ -0,0 +1,142 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" --- webcit-7.86-dfsg.orig/debian/po/vi.po +++ webcit-7.86-dfsg/debian/po/vi.po @@ -0,0 +1,162 @@ +# Vietnamese translation for Web CIT. +# Copyright © 2009 Free Software Foundation, Inc. +# Clytie Siddall , 2008-2009. +# +msgid "" +msgstr "" +"Project-Id-Version: webcit 7.42-dfsg-1\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-05 17:56+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.8\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Nội bộ" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Hợp nhất với trình phục vụ Apache" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Muôn WebCIT chạy cùng với một của các trình phục vụ Apache khác đã cài đặt " +"thì chọn nó trong danh sách; không thì chọn « Nội bộ » để làm cho WebCIT " +"dùng chức năng phục vụ HTTP riêng của nó." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Cổng HTTP WebCIT" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Hãy chọn cổng trên đó trình phục vụ HTTP WebCIT nên lắng nghê. Dùng cổng « " +"80 » nếu bạn không có trình phục vụ Web khác đang chạy, hoặc dùng « -1 » để " +"tắt nó." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Cổng HTTPS WebCIT" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Hãy chọn cổng trên đó trình phục vụ HTTP SSL WebCIT nên lắng nghê, hoặc dùng " +"« -1 » để tắt nó." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Hạn chế sự lựa chọn ngôn ngữ đăng nhập vào Webcits" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +#, fuzzy +#| msgid "" +#| "Select language the Webcit server should run in. UNLIMITED leaves this " +#| "choice to the user at the login prompt." +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Chọn ngôn ngữ theo đó trình phục vụ Webcits nên chạy. VÔ HẠN thì để lại " +"người dùng chọn tại dấu nhắc đăng nhập." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Nội bộ" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "VÔ HẠN, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" --- webcit-7.86-dfsg.orig/debian/po/POTFILES.in +++ webcit-7.86-dfsg/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] citadel-webcit.templates --- webcit-7.86-dfsg.orig/debian/po/eu.po +++ webcit-7.86-dfsg/debian/po/eu.po @@ -0,0 +1,155 @@ +# translation of eu.po to Euskara +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2008. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2008-05-27 23:26+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Barnekoa" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Apache web zerbitzariekin integrazioa:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Zuk webcit instalaturik duzun Apache web zerbitzarietako batekin batera " +"abiarazi nahi baduzu, hautatu berau zerrendatik, bestela barnekoa erabili " +"Webcit-ek bere HTTP zerbitzariaren aukerak erabiltzeko." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Webcit-en HTTP ataka:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Hautatu HTTP Webcit zerbitzari lauak zein ataka entzun behar duen. Erabili " +"80-a ez baduzu beste web-zerbitzaririk abiarazia edo -1 desgaitzeko." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Webcit HTTPS ataka:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Hautatu SSL HTTP Webcit zerbitzariak zein ataka entzun behar duen edo -1 " +"erabili desgaitzeko." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Erabiltzaileak-ezarririk" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Daniera" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Alemaniera" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Ingelesa" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Espainola" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Frantsesa" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italiera" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Nederlandera" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Brasildar Portugesa" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Mugatu Webcit-ren saio hasteko hizkuntz hautapena" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Hautatu Webcit zerbitzariak exekutatu behar dituen hizkuntzak. " +"Erabiltzaileak-ezarririk erabiltzean hautapena erbailtzaileak saio hasiera " +"egin beharko du." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Barnekoa" --- webcit-7.86-dfsg.orig/debian/po/it.po +++ webcit-7.86-dfsg/debian/po/it.po @@ -0,0 +1,154 @@ +# Italian translations of po-debconf templates for webcit. +# Copyright (c) 2008 Software in the Public Interest +# This file is distributed under the same license as the webcit package. +# Luca Monducci , 2008-2009 +# +msgid "" +msgstr "" +"Project-Id-Version: webcit 7.42-dfsg-1 italian debconf templates\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-11 20:44+0100\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Interno" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integrazione con i server web Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"È possibile eseguire Webcit affianco a uno dei server web Apache già " +"installati selezionandolo dall'elenco oppure selezionare \"Interno\" per " +"usare le funzioni da server HTTP interne di Webcit." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Porta HTTP per Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Scegliere la porta su cui il semplice server HTTP di Webcit deve mettersi in " +"ascolto. Usare la porta 80 se non sono presenti altri server web oppure -1 " +"per disabilitarlo." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Porta HTTPS per Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Scegliere la porta su cui il server SSL HTTP di Webcit deve mettersi in " +"ascolto oppure -1 per disabilitarlo." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Definita dall'utente" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Danese" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Tedesco" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Inglese" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Spagnolo" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Francese" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italiano" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Olandese" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Portoghese Brasiliano" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Limite alla scelta della lingua all'accesso a Webcit" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Selezionare la lingua del server Webcit. Con \"Definita dall'utente\" si " +"lascia agli utenti la scelta della lingua al momento dell'accesso." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Interno" --- webcit-7.86-dfsg.orig/debian/po/sv.po +++ webcit-7.86-dfsg/debian/po/sv.po @@ -0,0 +1,159 @@ +# translation of webcit_7.36-2_templates.po to swedish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Martin Bagge , 2008. +msgid "" +msgstr "" +"Project-Id-Version: webcit_7.36-2_templates\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-04-07 18:36+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"X-Poedit-Language: swedish\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "intern" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integrera med webservern Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Om du vill att Webcit ska köras i en av dina förinstallerade Apache " +"webserverar så väljer du denna från listan. Vill du att Webcit ska använda " +"sin egen HTTP-server så väljer du \"intern\"." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Webcit HTTP port:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Välj den port som Webcit ska lyssna på, om du inte har någon annan webserver " +"på servern så väljer du lämpligen port 80. För att avaktivera HTTP sätter du " +"portvärdet till -1." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Webcit HTTPS port:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Välj den port som Webcit ska lyssna på för SSL-krypterad HTTP. Sätt " +"portvärdet till -1 för att inaktivera." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Användardefinierad" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Danska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Tyska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Engelska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Spanska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Franska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italienska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Nederländska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Brasiliansk portugisiska" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Begränsa valbara språk vid inloggningen till Webcits" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Ange språket som Webcitserver ska använda vid körning. Användardefinierad " +"överlåter valet till användaren vid inloggningen." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, intern" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" --- webcit-7.86-dfsg.orig/debian/po/de.po +++ webcit-7.86-dfsg/debian/po/de.po @@ -0,0 +1,156 @@ +# Translation of webcit debconf templates to German +# Copyright (C) Helge Kreutzmann , 2008, 2009. +# This file is distributed under the same license as the webcit package. +# +msgid "" +msgstr "" +"Project-Id-Version: webcit 7.42-dfsg-1\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-12 21:23+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Intern" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integration mit Apache-Webservern:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Falls Sie mchten, dass Webcit parallel zu einem Ihrer anderen installierten " +"Apache-Webserver luft, whlen Sie diesen von der Liste, andernfalls whlen " +"Sie Intern, damit Webcit seine eigenen HTTP-Servereinrichtungen verwendet." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "HTTP-Port von Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Whlen Sie den Port, an dem der einfache HTTP-Webcit-Server auf Anfragen " +"warten soll. Benutzen Sie Port 80, falls Sie keinen anderen Webserver " +"betreiben oder -1, um ihn zu deaktivieren." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "HTTPS-Port von Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Whlen Sie den Port, an dem der SSL-HTTP-Webcit-Server auf Anfragen warten " +"soll oder -1, um ihn zu deaktivieren." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Benutzerdefiniert" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Dnisch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Deutsch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Englisch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Spanisch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Franzsisch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italienisch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Niederlndisch" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Brasilianisches portugiesisch" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Sprachauswahl bei der Anmeldung bei Webcit einschrnken" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Whlen Sie die Sprache, unter der der Webcit-Server laufen soll. " +"Benutzerdefiniert berlsst dem Benutzer bei der Anmeldung die Wahl." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Intern" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "UNBEGRENZT, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" --- webcit-7.86-dfsg.orig/debian/po/pt.po +++ webcit-7.86-dfsg/debian/po/pt.po @@ -0,0 +1,154 @@ +# Portuguese translation for webcit's debconf messages +# Copyright (C) 2008-2009, Carlos Lisboa +# This file is distributed under the same license as the webcit package. +# Carlos Lisboa , 2008-2009. +# +msgid "" +msgstr "" +"Project-Id-Version: webcit\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-15 11:32+0100\n" +"Last-Translator: Carlos Lisboa \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Interno" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integração com servidores web Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Se desejar que o Webcit corra em paralelo com um dos seus outros servidores " +"web Apache instalados, seleccione-o da lista, ou então escolha Interno para " +"que o Webcit use as suas próprias funcionalidades de servidor HTTP." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Porto HTTP Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Seleccione o porto, no qual o servidor HTTP webcit deverá escutar. " +"Seleccione o porto 80 se não possuir mais nenhum servidor web a correr ou " +"insira -1 para desabilitar." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Porto HTTPS Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Seleccione o porto, no qual o servidor SSL HTTP Webcit deverá escutar ou " +"insira -1 para desabilitar." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Definido pelo utilizador" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Dinamarquês" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Alemão" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Inglês" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Espanhol" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Francês" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italiano" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Holandês" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Português do Brasil" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Limitar a selecção de língua do login Webcit" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Seleccione a língua em que o servidor Webcit deverá correr. 'Definido pelo " +"utilizador' deixa esta opção ao utilizador no login." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Interno" --- webcit-7.86-dfsg.orig/debian/po/gl.po +++ webcit-7.86-dfsg/debian/po/gl.po @@ -0,0 +1,159 @@ +# Galician translation of webcit's debconf templates +# This file is distributed under the same license as the webcit package. +# +# Jacobo Tarrio , 2008. +# marce villarino , 2009. +msgid "" +msgstr "" +"Project-Id-Version: webcit\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-15 13:09+0100\n" +"Last-Translator: marce villarino \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 0.2\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Interno" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integración cos servidores web Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Se quere que Webcit funcione cun dos seus servidores Apache instalados, " +"escóllao na lista, ou escolla Interno para facer que Webcit empregue o seu " +"propio servidor HTTP." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Porto HTTP para Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Escolla o porto no que debe escoitar o servidor HTTP simple de Webcit. " +"Empregue o porto 80 se non ten outro servidor web a funcionar, ou -1 para " +"desactivalo." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Porto HTTPS para Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Escolla o porto no que debe escoitar o servidor HTTP SSL de Webcit, ou -1 " +"para desactivalo." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Definido polo usuario" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Danés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Alemán" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Inglés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Castelán" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Francés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italiano" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Holandés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Portugués brasileiro" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Limita as opcións de lingua do acceso a Webcit" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Escolla a lingua coa que debe executarse o servidor Webcit. «Definido polo " +"usuario» deixa esta escolla para que a falla o usuario ao acceder." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Interno" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "ILIMITADO, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" --- webcit-7.86-dfsg.orig/debian/po/cs.po +++ webcit-7.86-dfsg/debian/po/cs.po @@ -0,0 +1,159 @@ +# Czech translation of webcit debconf messages. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the webcit package. +# Miroslav Kure , 2008, 2009 +# +msgid "" +msgstr "" +"Project-Id-Version: webcit\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-07 20:36+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Interní" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integrace s webovými servery Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Chcete-li Webcit používat na některém z instalovaných Apache serverů, " +"vyberte jej ze seznamu. Zvolíte-li možnost „Interní“, použije Webcit svůj " +"vlastní HTTP server." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "HTTP port Webcitu:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Zadejte port, na kterém má naslouchat interní HTTP server Webcitu. Neběží-li " +"jiný webový server, použijte port 80. Případně můžete zadat -1 a interní " +"HTTP server zakázat." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "HTTPS port Webcitu:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Zadejte port, na kterém má naslouchat interní SSL HTTP server Webcitu. " +"Případně můžete zadat -1 a interní SSL HTTP server zakázat." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Neomezovat" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "dánština" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "němčina" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "angličtina" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "španělština" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "francouzština" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "italština" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "holandština" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "brazilská portugalština" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Omezení jazyků, kterými se uživatel může přihlásit do Webcitu" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Vyberte jazyk, ve kterém má server Webcit komunikovat. Volba „Neomezovat“ " +"ponechá výběr jazyka na uživateli." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Interní" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "" +#~ "Neomezovat, dánština, němčina, angličtina, španělština, francouzština, " +#~ "italština, holandština, brazilská portugalština" --- webcit-7.86-dfsg.orig/debian/po/fi.po +++ webcit-7.86-dfsg/debian/po/fi.po @@ -0,0 +1,160 @@ +msgid "" +msgstr "" +"Project-Id-Version: webcit\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2009-03-10 19:43+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: FINLAND\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Sisäinen" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integraatio Apachen www-palvelimiin:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Jos Webcitiä halutaan halutaan ajaa jonkin asennetun Apachen www-palvelimen " +"kautta, valitse se listasta. Muussa tapauksessa valitse ”Sisäinen” " +"ottaaksesi käyttöön Webcitin omat HTTP-palvelintoiminnot." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Webcitin HTTP-portti:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Valitse portti, jota Webcitin tavallisen HTTP-palvelimen tulisi kuunnella. " +"Käytä porttia 80, jos käytössä ei ole muita www-palvelimia. Syötä -1 " +"poistaaksesi palvelimen käytöstä." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Webcitin HTTPS-portti:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Anna portti, jota Webcitin SSL-suojatun HTTP-palvelimen tulisi kuunnella. " +"Syötä -1 poistaaksesi sen käytöstä." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Käyttäjän määrittelemä" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Tanska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Saksa" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Englanti" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Espanja" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Ranska" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italia" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Hollanti" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Brasilian portugali" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Rajoita Webcitin kirjautumiskielien valintaa:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +#, fuzzy +#| msgid "" +#| "Select language the Webcit server should run in. UNLIMITED leaves this " +#| "choice to the user at the login prompt." +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Valitse kieli, jolla Webcit-palvelinta ajetaan. Vaihtoehto \"Rajoittamaton\" " +"antaa käyttäjän tehdä valinnan kirjautumisruudussa." + +#~ msgid "Apache2, Internal" +#~ msgstr "Apache2, Sisäinen" + +#~ msgid "UNLIMITED, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" +#~ msgstr "" +#~ "Rajoittamaton, da_DA, de_DE, en_GB, es_ES, fr_FR, it_IT, nl_NL, pt_BR" --- webcit-7.86-dfsg.orig/debian/po/es.po +++ webcit-7.86-dfsg/debian/po/es.po @@ -0,0 +1,173 @@ +# webcit po-debconf translation to Spanish +# Copyright (C) 2010 Software in the Public Interest +# This file is distributed under the same license as the webcit package. +# +# Changes: +# - Initial translation +# Francisco Javier Cuadrado , 2010 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: webcit 7.72-dfsg-1\n" +"Report-Msgid-Bugs-To: webcit@packages.debian.org\n" +"POT-Creation-Date: 2010-07-21 10:10+0200\n" +"PO-Revision-Date: 2010-04-15 13:32+0100\n" +"Last-Translator: Francisco Javier Cuadrado \n" +"Language-Team: Debian l10n Spanish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:1001 +msgid "Internal" +msgstr "Interno" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "Integration with Apache webservers:" +msgstr "Integración con los servidores web Apache:" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:1002 +msgid "" +"If you want Webcit to run alongside with one of your other installed Apache " +"webservers, select it from the list, else use Internal to make Webcit use " +"its own HTTP server facilities." +msgstr "" +"Si quiere que Webcit se ejecute con uno de sus otros servidores web Apache " +"instalados, escójalo de la lista o use interno para que Webcit utilice su " +"propio servidor de HTTP." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "Webcit HTTP port:" +msgstr "Puerto HTTP de Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:2001 +msgid "" +"Select the port which the plain HTTP Webcit server should listen on. Use " +"port 80 if you don't have another webserver running or enter -1 to disable " +"it." +msgstr "" +"Escoja el puerto en el que el servidor de HTTP de Webcit debería escuchar. " +"Utilice el puerto 80 si no tiene otro servidor web ejecutándose o introduzca " +"-1 para desactivarlo." + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "Webcit HTTPS port:" +msgstr "Puerto HTTPS de Webcit:" + +#. Type: string +#. Description +#: ../citadel-webcit.templates:3001 +msgid "" +"Select the port which the SSL HTTP Webcit server should listen on or enter " +"-1 to disable it." +msgstr "" +"Escoja el puerto en el que el servidor de HTTP con SSL de Webcit debería " +"escuchar o introduzca -1 para desactivarlo." + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "User-defined" +msgstr "Definido por el usuario" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Danish" +msgstr "Danés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "German" +msgstr "Alemán" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "English" +msgstr "Inglés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Spanish" +msgstr "Español" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "French" +msgstr "Francés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Italian" +msgstr "Italiano" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Dutch" +msgstr "Holandés" + +#. Type: select +#. Choices +#: ../citadel-webcit.templates:4001 +msgid "Brazilian Portuguese" +msgstr "Portugués brasileño" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "Limit Webcit's login language selection" +msgstr "Limite la selección del idioma en la identificación de Webcit" + +#. Type: select +#. Description +#: ../citadel-webcit.templates:4002 +msgid "" +"Select language the Webcit server should run in. User-defined leaves this " +"choice to the user at the login prompt." +msgstr "" +"Escoja el idioma que el debería usar el servidor de Webcit. La opción " +"«definido por el usuario» deja que el usuario pueda escoger el idioma en la " +"identificación." --- webcit-7.86-dfsg.orig/debian/source/format +++ webcit-7.86-dfsg/debian/source/format @@ -0,0 +1 @@ +1.0