--- drupal5-5.19.orig/debian/README.Debian +++ drupal5-5.19/debian/README.Debian @@ -0,0 +1,190 @@ +Drupal for Debian +----------------- + +1. Introduction +2. Manual initial database generation and configuration +3. Database population script +4. Deleting the Drupal database +5. Apache config file and php4 Apache module +6. Apache config file and php4 CGI version +7. Securing your portal +8. Upgrading database from previous versions +9. Virtual hosts +10. Additional themes and modules +11. Privacy of session cookies + +A. Customizing themes +B. Links for more support + + +1. Introduction +--------------- +The latest version of Drupal can always be found at +. + +A running database server is needed for this package to work. It +doesn't matter whether the DBMS runs on the same machine as the +web server. MySQL and PostgreSQL servers are supported by this package. + +You can change the DBMS configuration after installation by running +"dpkg-reconfigure drupal" + + +2. Manual initial database generation and configuration +------------------------------------------------------- +This is only necessary if you chose not to automatically create the +database at installation time or if automatic creation failed. + +Directions on how to create a database for you drupal portal can be found +in INSTALL.mysql.txt and INSTALL.pgsql.txt files in /usr/share/doc/drupal5. + + +3. Database population script +----------------------------- +Once a database is set up and configured, drupal needs to create tables and +insert default records into it. + +This can be done running the install.php script on portal web site, e.g. + + http://localhost/install.php + +If you encounter problems running this script, check PHP configuration as +stated in section 5 of this file. + + +4. Deleting the Drupal database +-------------------------------- +The database may be deleted automatically on purging the package +(debconf prompt the user asking to do it or not). + +If you want to purge the data stored at MySQl database manually you +can use the following command: + +'mysqladmin -p drop drupal5' + +being the user who admin MySQL. + + +5. Apache config file and php4 Apache module +-------------------------------------------- +If you are using the php4 apache module, in order for this and any PHP +based script to work in Apache, you need to load PHP module, +uncommenting the next line in /etc/apache/httpd.conf + + LoadModule php4_module /usr/lib/apache/1.3/libphp4.so + +Also you need to add "index.php" to the "DirectoryIndex" directive +line for Apache to show index.php as initial page, and also the line + + AddType application/x-httpd-php .php + +for Apache to know about php mime type. + +Drupal scripts may need more than 8MB of RAM to execute. If needed adjust +memory_limit setting in php.ini. + + +6. Apache config file and php4 CGI version +------------------------------------------ +This package is configured to automatically use the php4 Apache +module. It sets up the system to avoid showing the php files in plain +text by default. It is possible to use the php4 CGI version, instead. +However, you need to make sure that the CGI interpreter uses the +following settings: + +magic_quotes_gpc = Off +session.save_handler = user + + +7. Securing your portal +----------------------- +It is very good security measure to restrict access to admin.php only +to trusted IP's and localhost (you can see an example at +/etc/drupal/5/htaccess) As an added security measure, is a good idea to +set up a ssl-enabled web server in your apache, and allow access to +admin page only to ssl streams. + + +8. Upgrading database from previous versions +-------------------------------------------- +From version 4.7.4 drupal packages will be separated for each major version. +Automatic upgrading the database will not be attempted anymore. + +To upgrade an existing version of drupal, install the new package and manually +configure the database to point to the existing database, then execute the +upstream upgrade script by pointing a web browser to + + + +Then remove the old package. + +WARNING: be sure to _NOT_ remove the old package's database. + + +9. Virtual hosts +---------------- +Drupal supports a setup with multiple virtual hosts. Each virtual host +has its own configuration directory in /etc/drupal/5/sites/_virtualhost_. +At install time the 'default' virtual host is created with the required +settings.php configuration file. + +To create new virtual hosts simply duplicate the default virtual host directory +and adjust the settings.php and dbconfig.php configuration files. + +This package supports running cron scripts on each virtual host, as long as you +define the $base_url variable in the virtual host settings.php configuration +file. + + +10. Additional modules and themes +-------------------------------- + +Drupal looks for modules and themes in the modules/ and themes/ +subdirectories, respectively. However, it would be a bad idea to put +additional modules and themes into those directories because they +might be overwritten on upgrades. Instead, create links to another +directory that won't be touched by dpkg, e.g. in the /usr/local +hierarchy: + + # ln -s /usr/local/share/drupal/modules /usr/share/drupal/modules/local + # ln -s /usr/local/share/drupal/themes /usr/share/drupal/themes/local + + +11. Privacy of session cookies +------------------------------ + +Drupal does not set the secure flag for the session cookie in an https +session, which can cause the cookie to be sent in http requests and make +it easier for remote attackers to capture this cookie. + +If you are using drupal on an https connection you can fix this issue +setting the session.cookie_secure PHP properties to on either in the +global PHP configuration file or adding the following line to +/etc/drupal/5/htaccess: + + php_value session.cookie_secure 1 + + +A. Customizing themes +--------------------- +To create or customize a theme for your site, I recommend to start +with an existing theme (as exmaple), copy it to a different location ( +#cp -ai /etc/drupal/5/themes/example /etc/drupal/5/themes/Custom ) and +modify this new created theme. You can now select your "Custom" theme +in the Preferences menu from the admin interface. + +You should not modify and use an included theme in the package +directly, as your changes could be overwritten next time you upgrade +drupal. + + +B. Links for more support +------------------------- +* http://www.drupal.org/ + - Drupal's project page for those willing to get involved in the + ongoing development + +* http://www.drupal.org/node.php?id=253 + - online installation guidelines + + -- Luigi Gangitano , Fri Dec 1 17:44:14 2006 --- drupal5-5.19.orig/debian/templates.master +++ drupal5-5.19/debian/templates.master @@ -0,0 +1,5 @@ +Template: drupal5/webserver +Type: multiselect +Choices: apache, apache-ssl, apache-perl, apache2 +Default: apache +_Description: Web server(s) that should be configured automatically: --- drupal5-5.19.orig/debian/compat +++ drupal5-5.19/debian/compat @@ -0,0 +1 @@ +4 --- drupal5-5.19.orig/debian/dirs +++ drupal5-5.19/debian/dirs @@ -0,0 +1,6 @@ +etc/drupal/5/sites/default +var/lib/drupal5/files +var/lib/drupal5/backups +usr/share/doc/drupal5 +usr/share/dbconfig-common/data/drupal5/install +usr/share/lintian/overrides --- drupal5-5.19.orig/debian/drupal5.config +++ drupal5-5.19/debian/drupal5.config @@ -0,0 +1,51 @@ +#!/bin/bash + +# Debconf config script for Drupal + +set -e + + +# Source debconf library +. /usr/share/debconf/confmodule + +if [ -f /usr/share/dbconfig-common/dpkg/config ]; then + # we support mysql and pgsql + dbc_dbtypes="mysql, pgsql" + dbc_dbname=drupal5 + dbc_dbuser=drupal5 + + # source dbconfig-common stuff + . /usr/share/dbconfig-common/dpkg/config + dbc_go drupal5 $@ +fi + +if [ "$DPKG_DEBUG" = "developer" ]; then + set -x +fi + +################################################## +# Begin installation directories definition block# +################################################## +package_name="drupal5" +datadir="/var/lib/${package_name}" +backupdir="${datadir}/backups/" +docdir="/usr/share/doc/${package_name}" +upgradesdir="${docdir}/upgrades" +configdir="/etc/drupal/5" +configfile="${configdir}/conf.php" +includefile="${configdir}/apache.conf" +################################################ +# End installation directories definition block # +################################################ + +######################################################################## +# The actual configuration + +OLDVERSION="$2" + +db_input "high" "${package_name}/webserver" || true +db_go || true + +db_stop + +exit 0 --- drupal5-5.19.orig/debian/drupal5.postrm +++ drupal5-5.19/debian/drupal5.postrm @@ -0,0 +1,98 @@ +#! /bin/bash +# postrm script for ${package_name} +# + +set -e + +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi + +# source dbconfig-common stuff +if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then + . /usr/share/dbconfig-common/dpkg/postrm + dbc_go drupal5 $@ +fi + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +if [ "$DPKG_DEBUG" = "developer" ]; then + set -x +fi + +package_name="drupal5" +datadir="/var/lib/${package_name}/" +backupdir="${datadir}backups/" +nukedir="/usr/share/${package_name}/" +docdir="/usr/share/doc/${package_name}/" +sqlfile="${docdir}database/database.mysql" +upgradesdir="${docdir}upgrades/" +configdir="/etc/drupal/5/" +configfile="${configdir}conf.php" +includefile="${configdir}apache.conf" +dbconfigfile="${configdir}/sites/default/dbconfig.php" +cronfile="/etc/cron.d/${package_name}" + +# Make sure that notifications are sent to user + +db_get ${package_name}/webserver || true +webserver=`echo $RET|sed -e 's/, */ /g'` + +case "$1" in + purge|remove) + + # Un-configure webservers + for i in $webserver; do + if [ -L /etc/$i/conf.d/drupal.conf ]; then + rm -f /etc/$i/conf.d/drupal.conf || true + restart="$i $restart" + fi + done + + servers="apache apache-ssl apache-perl apache2" + . /usr/share/wwwconfig-common/restart.sh + + + # Remove configuration files (conf.php, $SITE.php) +# rm -f /etc/drupal/*.php + rm -f /etc/drupal/sites/default/settings.php + + if [ "$1" = "purge" ]; then + rm -f ${dbconfigfile} + if which ucf >/dev/null 2>&1; then + ucf --purge ${dbconfigfile} + fi + + db_purge || true + + fi + + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- drupal5-5.19.orig/debian/drupal5.install +++ drupal5-5.19/debian/drupal5.install @@ -0,0 +1,10 @@ +*.php usr/share/drupal5 +includes usr/share/drupal5 +modules usr/share/drupal5 +themes usr/share/drupal5 +misc usr/share/drupal5 +robots.txt usr/share/drupal5 +profiles etc/drupal/5 +debian/etc/apache.conf etc/drupal/5 +debian/etc/settings.php etc/drupal/5/sites/default +debian/cron.sh usr/share/drupal5/scripts --- drupal5-5.19.orig/debian/cron.d +++ drupal5-5.19/debian/cron.d @@ -0,0 +1 @@ +0 * * * * www-data [ -x /usr/share/drupal5/scripts/cron.sh ] && /usr/share/drupal5/scripts/cron.sh --- drupal5-5.19.orig/debian/examples +++ drupal5-5.19/debian/examples @@ -0,0 +1,2 @@ +sites/default/settings.php + --- drupal5-5.19.orig/debian/docs +++ drupal5-5.19/debian/docs @@ -0,0 +1,5 @@ +MAINTAINERS.txt +UPGRADE.txt +INSTALL.mysql.txt +INSTALL.pgsql.txt +scripts --- drupal5-5.19.orig/debian/rules +++ drupal5-5.19/debian/rules @@ -0,0 +1,82 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 + +PACKAGE=drupal5 + +include /usr/share/dpatch/dpatch.make + +ifeq (,$(wildcard /usr/bin/po2debconf)) +PO2DEBCONF := no +MINDEBCONFVER := 0.5 +else +PO2DEBCONF := yes +MINDEBCONFVER := 1.2.0 +endif + +build: patch + +clean-patched: + dh_testdir + dh_testroot + dh_clean + +clean: clean-patched unpatch + +ifeq ($(PO2DEBCONF),yes) +# Hack for woody compatibility. This makes sure that the +# debian/templates file shipped in the source package doesn't +# specify encodings, which woody's debconf can't handle. If building +# on a system with po-debconf installed (conveniently debhelper (>= +# 4.1.16) depends on it), the binary-arch target will generate a +# better version for sarge. + echo 1 > debian/po/output + po2debconf debian/templates.master > debian/templates + rm -f debian/po/output +endif + +install:build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs -X.svn -XCVS + dh_install -XCVS -X.svn + # fix permissions + find $(CURDIR)/debian/$(PACKAGE)/usr/share/drupal5/themes \ + -name '*.png' -o -name '*.jpg' | xargs chmod a-x + chmod +x $(CURDIR)/debian/$(PACKAGE)/usr/share/drupal5/scripts/* + rm $(CURDIR)/debian/$(PACKAGE)/usr/share/drupal5/misc/jquery.js + + + install -m640 .htaccess debian/drupal5/etc/drupal/5/htaccess + #install -m644 database/database.4.1.mysql debian/drupal5/usr/share/dbconfig-common/data/drupal5/install/mysql + #install -m644 database/database.pgsql debian/drupal5/usr/share/dbconfig-common/data/drupal5/install/pgsql + install -m644 debian/drupal5.lintian debian/drupal5/usr/share/lintian/overrides/drupal5 +# Everything else is handled by dh_install + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG.txt + dh_installdocs -XCVS -X.svn + dh_installexamples + dh_installdebconf + dh_installcron + dh_link + dh_compress + dh_fixperms + dh_installdeb +ifeq ($(PO2DEBCONF),yes) + po2debconf -e utf8 debian/templates.master > debian/templates +endif + dh_gencontrol -- -V'debconf-depends=debconf (>= $(MINDEBCONFVER))' + dh_md5sums + dh_builddeb + +binary: binary-indep +.PHONY: build clean binary-indep binary install #PHONY_CONFIGURE# --- drupal5-5.19.orig/debian/watch +++ drupal5-5.19/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://ftp.osuosl.org/pub/drupal/files/projects/drupal-(5[\d\.]+)\.tar\.gz --- drupal5-5.19.orig/debian/drupal5.postinst +++ drupal5-5.19/debian/drupal5.postinst @@ -0,0 +1,77 @@ +#!/bin/bash +# postinst script for drupal + +set -e + +dbc_generate_include='php:/etc/drupal/5/sites/default/dbconfig.php' +dbc_generate_include_owner='root:www-data' +dbc_generate_include_perms='640' + +. /usr/share/debconf/confmodule +# source dbconfig-common stuff +. /usr/share/dbconfig-common/dpkg/postinst +dbc_go drupal5 $@ + +if [ "$DPKG_DEBUG" = "developer" ]; then + set -x +fi + +package_name="drupal5" +datadir="/var/lib/${package_name}" +filesdir="${datadir}/files" +backupdir="${datadir}/backups" +pkgdir="/usr/share/${package_name}" +docdir="/usr/share/doc/${package_name}" +upgradesdir="${docdir}/upgrades" +configdir="/etc/drupal/5" +default_configfile="${configdir}/sites/default/settings.php" +includefile="${configdir}/apache.conf" +cronfile="/etc/cron.d/${package_name}" + +OLDVERSION="$2" + +case "$1" in + configure) + + # Get Debconf variables + + db_get ${package_name}/webserver || true + webserver="$RET" + + webserver=`echo $webserver|sed -e 's/, */ /g'` + + for i in $webserver; do + if [ ! -d /etc/$i/conf.d/ ]; then + install -d -m755 /etc/$i/conf.d/ + fi + if [ ! -e /etc/$i/conf.d/drupal.conf ]; then + ln -s ${includefile} \ + /etc/$i/conf.d/drupal.conf + restart="$i $restart" + fi + done + + servers="apache apache-ssl apache-perl apache2" + . /usr/share/wwwconfig-common/restart.sh + + # Permissions + dpkg-statoverride --list $filesdir || dpkg-statoverride --add --force --update www-data www-data 0750 $filesdir + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- drupal5-5.19.orig/debian/drupal5.lintian +++ drupal5-5.19/debian/drupal5.lintian @@ -0,0 +1,2 @@ +drupal5: package-contains-upstream-install-documentation usr/share/doc/drupal5/INSTALL.mysql.txt +drupal5: package-contains-upstream-install-documentation usr/share/doc/drupal5/INSTALL.pgsql.txt --- drupal5-5.19.orig/debian/templates +++ drupal5-5.19/debian/templates @@ -0,0 +1,21 @@ +Template: drupal5/webserver +Type: multiselect +Choices: apache, apache-ssl, apache-perl, apache2 +Default: apache +Description: Web server(s) that should be configured automatically: +Description-cs.UTF-8: Webové servery, které se mají nastavit automaticky: +Description-de.UTF-8: Webserver, die automatisch konfiguriert werden sollen: +Description-es.UTF-8: El(Los) servidor(es) web que se debe(n) configurar automáticamente: +Description-eu.UTF-8: Automatikoki birkonfiguratu behar diren web zerbitzariak: +Description-fr.UTF-8: Serveur(s) web à configurer automatiquement : +Description-gl.UTF-8: Servidores web a configurar automaticamente: +Description-hu.UTF-8: Az automatikusan beállítandó web szerver(ek): +Description-it.UTF-8: Server web da configurare automaticamente: +Description-ja.UTF-8: web サーバが自動的に設定されます: +Description-nb.UTF-8: Nettjener(e) som skal konfigureres automatisk: +Description-nl.UTF-8: Webserver(s) die automatisch geconfigureerd dienen te worden: +Description-no.UTF-8: Nettjener(e) som skal konfigureres automatisk: +Description-pt.UTF-8: Servidor(es) web que devem ser configurados automaticamente: +Description-ru.UTF-8: Настроить автоматически web-сервер(ы) : +Description-sv.UTF-8: Webbserver/webbservrar som ska konfigureras automatiskt: +Description-ta.UTF-8: தானியங்கியாக வடிவமைக்கப் பட வேண்டிய வலை சேவையகம் (சேவையகங்கள்): --- drupal5-5.19.orig/debian/links +++ drupal5-5.19/debian/links @@ -0,0 +1,5 @@ +etc/drupal/5/htaccess usr/share/drupal5/.htaccess +etc/drupal/5/sites usr/share/drupal5/sites +etc/drupal/5/profiles usr/share/drupal5/profiles +var/lib/drupal5/files usr/share/drupal5/files +usr/share/javascript/jquery/jquery.js usr/share/drupal5/misc/jquery.js --- drupal5-5.19.orig/debian/control +++ drupal5-5.19/debian/control @@ -0,0 +1,25 @@ +Source: drupal5 +Section: web +Priority: extra +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Luigi Gangitano +Build-Depends: debhelper (>= 4), dpatch +Standards-Version: 3.8.0 +Homepage: http://www.drupal.org +Xs-Vcs-Svn: svn://alioth.debian.org/svn/pkg-drupal/branches/drupal-5.0 +Xs-Vcs-Browser: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal-5.0 + +Package: drupal5 +Architecture: all +Depends: ${debconf-depends}, ${misc:Depends}, apache2 | httpd, php5, php5-mysql | php5-pgsql, php5-gd, postfix | mail-transport-agent, wwwconfig-common (>= 0.0.37), mysql-client | virtual-mysql-client | postgresql-client, dbconfig-common, curl, libjs-jquery +Recommends: mysql-server | postgresql +Description: a fully-featured content management framework + Drupal is a dynamic web site platform which allows an individual or + community of users to publish, manage and organize a variety of + content. Drupal integrates many popular features of content + management systems, weblogs, collaborative tools and discussion-based + community software into one easy-to-use package. + . + This package contains version 5 of Drupal. + . + More information about Drupal is available at http://www.drupal.org --- drupal5-5.19.orig/debian/cron.sh +++ drupal5-5.19/debian/cron.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# $Id: cron.sh 1930 2008-10-08 17:08:13Z luigi $ + +for site in /etc/drupal/5/sites/* ; do + BASE_URL="" + for file in $site/baseurl.php $site/settings.php; do + [ -f "$file" ] && BASE_URL=`grep '^$base_url' $file | cut -d"'" -f2` + [ "X$BASE_URL" != "X" ] && break + done + + curl --silent --compressed --location $BASE_URL/cron.php +done + +# no site found with base_url - fall back to localhost (only once) +if [ "X$BASE_URL" = "X" ] ; then + curl --silent --compressed --location http://localhost/drupal5/cron.php +fi --- drupal5-5.19.orig/debian/changelog +++ drupal5-5.19/debian/changelog @@ -0,0 +1,950 @@ +drupal5 (5.19-0ubuntu1) jaunty; urgency=low + + * New upstream release + + Fixes weakness allowing password exposure via URL. + - References: SA-CORE-2009-007, CVE-2009-2374 + - LP: #395006 + + debian/control + - Updated Maintainer, fixed minor punctuation and + grammar errors. + + debian/patches/02_htaccess + - Updated to current package version. + + debian/patches/10_cronjob + - Updated to current package version. + + -- T. Scott Testerman Thu, 10 Sep 2009 01:44:45 -0400 + +drupal5 (5.15-1ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: LP: #317774 + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Add Homepage field. + + Fix for debian/watch. + - Bump version from 2 to 3 + + -- Bhavani Shankar Fri, 16 Jan 2009 12:55:01 +0530 + +drupal5 (5.15-1) unstable; urgency=low + + [ Luigi Gangitano ] + * New upstream release + - Fixes an SQL injection vulnerability (Ref: SA-CORE-2009-001, CVE-TBD) + + -- Luigi Gangitano Fri, 16 Jan 2009 01:41:25 +0100 + +drupal5 (5.14-1ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: LP: #315544 + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Add Homepage field. + + Fix for debian/watch. + - Bump version from 2 to 3 + + -- Bhavani Shankar Fri, 09 Jan 2009 21:55:33 +0530 + +drupal5 (5.14-1) unstable; urgency=low + + * New upstream release (Closes: #508472) + + * debian/po/es.po + - Updated Spanish debconf translation, thanks to Francisco Javier Cuadrado + (Closes: #503306) + + * debian/control + - Added dependency on ${misc:Depends} to make lintian happy + + -- Luigi Gangitano Thu, 08 Jan 2009 20:29:59 +0100 + +drupal5 (5.12-2ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: (LP: #304334) + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Fix for debian/watch. + - add Homepage field. + + -- Stefan Lesicnik Tue, 02 Dec 2008 11:31:44 +0200 + +drupal5 (5.12-2) unstable; urgency=low + + * debian/control + - Fixed typo in libjs-jquery (Closes: #507590) + + -- Luigi Gangitano Mon, 03 Dec 2008 03:40:18 +0100 + +drupal5 (5.12-1) unstable; urgency=low + + * New upstream release + - Removed security patches integrate upstream + + 11_SA-2008-060 + + 12_SA-2008-067 + + * debian/patches/10_cronjob.dpatch + - Added patch descritpion to make lintian happy + + * debian/drupal5.postrm + - Fixed missing -e option to make lintian happy + + * debian/control + - Bumped Standard-Version to 3.8.0, no change needed + + * debian/{control,rules,links} + - Added dependency on libjs-jquery and use jquery.js from it + + -- Luigi Gangitano Mon, 01 Dec 2008 00:09:54 +0100 + +drupal5 (5.10-3ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Fix for debian/watch. + - Fixed lintian warnings. + - add Homepage field. + + -- Emanuele Gentili Fri, 07 Nov 2008 05:33:19 +0100 + +drupal5 (5.10-3) unstable; urgency=high + + [Luigi Gangitano] + * Urgency high due to security fixes + + * debian/patches/12_SA-2008-067 + - Added upstream patch fixing several security vulnerabilities + (Ref: SA-2008-067, CVE-TBA) (Closes: #503217) + + * debian/patches/11_SA-2008-060 + - Fixed patch file name to follow convention + + -- Luigi Gangitano Mon, 24 Oct 2008 23:09:01 +0200 + +drupal5 (5.10-2) unstable; urgency=high + + [Luigi Gangitano] + * Urgency high due to security fixes + + * debian/po/it.po + - Updated Italian debconf translation, thanks to Luca Monducci + (Closes: #494537) + + * debian/cron.sh + - Fixed error when BASE_URL is not cleaned (Closes: #494208, #498806) + + * debian/README.Debian + - Added a notice about cookie security and session.cookie_secure + configuration (Ref: CVE-2008-3661) (Closes: #501063) + + * debian/patches/11-SA-2008-060 + - Added upstream patch fixing several security vulnerabilities + (Ref: SA-2008-060, CVE-2008-4789, CVE-2008-4790, CVE-2008-4791, + CVE-2008-4792, CVE-2008-4793) (Closes: #501635) + + * debian/etc/settings.php + - Added exception to Debian PHP session customization allowing for + session table rows aging and removal, thanks to Kamthorn Krairaksa + and Theppitak Karoonboonyanan. (Closes: #495027) + + -- Luigi Gangitano Fri, 14 Oct 2008 15:45:38 +0200 + +drupal5 (5.10-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Fix for debian/watch. + - Fixed lintian warnings. + - add Homepage field. + + -- Emanuele Gentili Fri, 15 Aug 2008 16:15:10 +0200 + +drupal5 (5.10-1) unstable; urgency=low + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes several XSS vulnerabilities + (Ref: SA-2008-047, CVE-2008-3741, CVE-2008-3742, CVE-2008-3743, + CVE-2008-3744, CVE-2008-3744) (Closes: #495122) + + -- Luigi Gangitano Fri, 15 Aug 2008 01:35:50 +0200 + +drupal5 (5.9-1ubuntu3) intrepid; urgency=low + + * debian/control: + + add Homepage field. + + -- Emanuele Gentili Tue, 12 Aug 2008 17:52:41 +0200 + +drupal5 (5.9-1ubuntu2) intrepid; urgency=low + + * Fix for debian/watch. + * fixed lintian warnings. + + -- Emanuele Gentili Sat, 09 Aug 2008 04:27:00 +0200 + +drupal5 (5.9-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + + -- Emanuele Gentili Fri, 25 Jul 2008 19:32:37 +0200 + +drupal5 (5.9-1) unstable; urgency=high + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes Security Fixation vulnerability that was not completely addressed + in drupal 5.8 (Ref: SA-2008-046, CVE-2008-3222) + + -- Luigi Gangitano Thu, 24 Jul 2008 10:47:27 +0200 + +drupal5 (5.8-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + debian/control: + - Update Standards Version. + + -- Emanuele Gentili Fri, 18 Jul 2008 02:41:35 +0200 + +drupal5 (5.8-1) unstable; urgency=high + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes XSS, Section Fixation and SQL Injection vulnerabilities + (Ref: SA-2008-044, CVE-2008-3222) (Closes: #490559, #490298) + + -- Luigi Gangitano Thu, 17 Jul 2008 15:36:46 +0200 + +drupal5 (5.7-2ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: (LP: #237515) + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Emanuele Gentili Thu, 05 Jun 2008 04:20:22 +0200 + +drupal5 (5.7-2) unstable; urgency=low + + [ Luigi Gangitano ] + * debian/watch + - Fixed watch file to ignore 6.x versions (Closes: #468647) + + * debian/cron.sh + - Fixed cron script for multisite setups (Closes: #471230) + + -- Luigi Gangitano Mon, 2 Jun 2008 19:14:12 +0100 + +drupal5 (5.7-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes (LP: #191621): + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Emanuele Gentili Wed, 13 Feb 2008 18:37:02 +0100 + +drupal5 (5.7-1) unstable; urgency=low + + [ Luigi Gangitano ] + * New upstream release + - Fixes several non-security related bugs (Closes: #464876) + + * debian/po/hu.po + - Updated Hungarian debconf templates translation (Thanks to Miklos + Lukacs) (Closes: #459378) + + * debian/cron.sh + - Fixed cron script for multisite setup (thanks to Fernando Lucas + Rodriguez) (Closes: #464599) + + * debian/watch + - Removed unused 'uupdate' token + + -- Luigi Gangitano Tue, 12 Feb 2008 11:40:29 +0100 + +drupal5 (5.6-2ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes (LP: #182291): + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Emanuele Gentili Sun, 28 Jan 2008 19:01:55 +0000 + +drupal5 (5.6-2) unstable; urgency=low + + [ Luigi Gangitano ] + * debian/cron.d + - Fix typo in cron script that makes it running every minutes, set it + to one hour (Closes: #456182) + + -- Luigi Gangitano Sat, 26 Jan 2008 20:51:39 +0100 + +drupal5 (5.6-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes (LP: #182291): + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Emanuele Gentili Sat, 12 Jan 2008 14:00:18 +0100 + +drupal5 (5.6-1) unstable; urgency=high + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes Cross site request forgery in Aggregator module + (Ref: SA-2008-005, CVE-TBA) + - Fixes Cross site scripting vulnerability with IE6 and user submitted + UTF8 input (Ref: SA-2008-006, CVE-TBA) + + * debian/cron.d + - Run cron script every hour and not every 5 minutes (Closes: #456182) + + * debian/rules + - Removed binary-arch section, moved all actions to binary-indep + + * debian/control + - Swapped httpd | apache2 order to comply with policy + - Bumped Standard-Version to 3.7.3, no change needed + + -- Luigi Gangitano Fri, 11 Jan 2008 15:02:09 +0100 + +drupal5 (5.5-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Stephan Hermann Sun, 23 Dec 2007 11:48:06 +0100 + +drupal5 (5.5-1) unstable; urgency=high + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes SQL Injection vulnerability in contributed modules + (Ref: DRUPAL-SA-2007-031, CVE-2007-6299) + + * debian/cron.sh + - Added check of BASE_URL in baseurl.php (Closes: #448774) + + -- Luigi Gangitano Fri, 07 Dec 2007 21:29:18 +0100 + +drupal5 (5.3-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + debian/control: + - Replace exim4 with postfix in Depends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Stephan Hermann Thu, 15 Nov 2007 08:54:10 +0100 + +drupal5 (5.3-1) unstable; urgency=high + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes several security vulnerabilities + + DRUPAL-SA-2007-024 (Ref: CVE-2007-5595) + + DRUPAL-SA-2007-025 (Ref: CVE-2007-5593) + + DRUPAL-SA-2007-026 (Ref: CVE-2007-5596) + + DRUPAL-SA-2007-029 (Ref: CVE-2007-5594) + + DRUPAL-SA-2007-030 (Ref: CVE-2007-5597) + + + -- Luigi Gangitano Sat, 20 Oct 2007 09:52:38 +0200 + +drupal5 (5.2-3) unstable; urgency=low + + * debian/drupal5.install + - Install default robots.txt (Closes: #440291) + + * debian/control + - Changed Recommends to postgresql + + -- Luigi Gangitano Thu, 23 Aug 2007 15:44:15 +0200 + +drupal5 (5.2-2ubuntu2) gutsy; urgency=low + + * debian/patches/02_htaccess: + - Add RewriteBase /drupal5 + + -- Ante Karamatic Sun, 30 Sep 2007 21:29:42 +0200 + +drupal5 (5.2-2) unstable; urgency=low + + * debian/README.Debian + - Fixed references to configuration directory + + * debian/etc/settings.php + - Apply fixes from upstream version (Closes: #435433) + + -- Luigi Gangitano Fri, 27 Jul 2007 02:12:20 +0200 + +drupal5 (5.2-1ubuntu1) gutsy; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/control: + - Replace exim4 with postfix in Depends. + - Replace postgresql-server with postgresql-8.2 in Recommends. + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Michael Bienia Fri, 27 Jul 2007 20:14:39 +0200 + +drupal5 (5.2-1) unstable; urgency=high + + [ Luigi Gangitano ] + * Urgency high due to security fixes + + * New upstream release + - Fixes XSS in server variables (Ref: DRUPAL-SA-2007-018, CVE-2007-4064) + - Fixes XSRF in Forms API (Ref: DRUPAL-SA-2007-017, CVE-2007-4063) + + * debian/copyright + - Fixed FSF address to make lintian happy + + * debian/control + - Removed dependencies on php4 + - Updated httpd real package dependency to apache2 + - Changed Build-Depend-Indep to Build-Depend (policy 7.6) + + -- Luigi Gangitano Fri, 27 Jul 2007 01:48:04 +0200 + +drupal5 (5.1-3) unstable; urgency=low + + [ Luigi Gangitano ] + * debian/control + - Removed dependencies on 8.1 version of postgresql packages + - Fixed typo in postgresql-server package (Closes: #429229) + + -- Luigi Gangitano Wed, 29 Jun 2007 21:39:33 +0200 + +drupal5 (5.1-2ubuntu1) gutsy; urgency=low + + * debian/control: + - Replace apache with apache2, postgresql-client-8.1 with + postgresql-client-8.2 and exim4 with postfix in Depends + - Replace postgresql-server-8.1 | postgresl-server with postgresql-8.2 in + Recommends + - Remove all php4 dependencies. + - Rename Build-Depends-Indep to Build-Depends (both debhelper and dpatch + are needed for the clean target) + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Michael Bienia Fri, 29 Jun 2007 12:31:10 +0200 + +drupal5 (5.1-2) unstable; urgency=low + + [ Luigi Gangitano ] + - debian/control + * Added Xs-Vcs-{Svn,Browser} tags + + - debian/README.Debian + * Added istructions on Postgres database install and PHP memory limit + (Closes: #427001) + + [ Bart Cornelis (cobaco) ] + - New Norwegian Bokmael translation by Hans Fredrik Nordhaug + + -- Luigi Gangitano Tue, 13 Mar 2007 00:21:14 +0100 + +drupal5 (5.1-1) unstable; urgency=low + + [ Luigi Gangitano ] + * New upstream release (Closes: #409522) + + * debian/{links,drupal5.install,cron.d,etc/apache.conf} + - Applied patch from Karl-Heinz Nirschl fixing paths + + [ Bart Cornelis ] + Translations + * Updated Dutch translation by Bart Cornelis + * Updated Japanese translation by Hideki Yamane + * Updated German translation by Helge Kreutzmann (Closes: #413891) + * Updated Portuguese translation by Miguel Figueiredo (Closes: #413905) + * New Swedisch Translation by Daniel Nylander + * New Tamil translation by Tirumurti Vasudevan (Closes: #413824) + * New Czech translation by Miroslav Kure (Closes: #413798) + * New Russion translation by Yuriy Talakan (Closes: #414063) + * New Basque translation by Piarres Beobide (Closes: #413966) + * New Galician translation by Jacobo Tarrio (Closes: #413764) + + -- Luigi Gangitano Sat, 10 Mar 2007 20:04:24 +0100 + +drupal5 (5.0-1) UNRELEASED; urgency=low + + * (NOT RELEASED YET) New upstream release + + * debian/* + - Rename file and directories from 4.7 to 5 + - In debian/control switch to Source: drupal5 + - Add watch file + + * debian/control + - Removed Suggests on ssl enabled packages + - Removed dependencies on apache and added dependency on httpd | apache + - Added dependency on php4-gd | php5-gd + + * debian/{rules,drupal5.install} + - Removed reference to not-existing directory 'database' + + * debian/patches/10_cronjob.dpatch + - Updated patch to new cron script + + -- Luigi Gangitano Fri, 26 Jan 2007 20:04:24 +0100 + +drupal (4.7.5-2) UNRELEASED; urgency=low + + [ Luigi Gangitano ] + * NOT RELEASED YET + + * debian/control + - Bumped Standards-Version to 3.7.2 (no change needed) + - Removed dependency on postgsql-{client,server}-8.0 which is not in + the archive anymore + + * Translations + - Updated Dutch translations by Bart Cornelis + + -- Bart Cornelis (cobaco) Tue, 23 Jan 2007 11:50:45 +0100 + +drupal (4.7.5-1) unstable; urgency=low + + * New upstream release + - Fixes Denial of Service (DRUPAL-SA-2007-002) + - Fixes CSS Vulnerability (DRUPAL-SA-2007-001) + + -- Luigi Gangitano Sun, 7 Jan 2007 00:33:33 +0100 + +drupal (4.7.4-3) unstable; urgency=low + + * debian/po/fr.po + - Updated French debconf templates translation (Thanks to Thomas Huriaux) + (Closes: #404967) + + * debian/control + - Add php5 dependency (Closes: #405162) + + -- Luigi Gangitano Sun, 7 Jan 2007 00:13:36 +0100 + +drupal (4.7.4-2) unstable; urgency=low + + * debian/control + - Fixed dependency on postgresql-client + - Removed dependency on makepasswd (not needed since we use + dbconfig.common) + - Removed dependency on php4-cli (not needed with new cron script) + - Promote Recommends: php4 to Depends: php4 + + * debian/etc/settings.php + - Fix warning if baseurl.php does not exists + + * debian/copyright + - Fixed copyright information as requested by ftp-master + + -- Luigi Gangitano Tue, 5 Dec 2006 15:37:25 +0100 + +drupal (4.7.4-1) unstable; urgency=low + + * Prepare package for new inclusion in Debian + - Thanks to Karl-Heinz Nirschl for keeping this package in his repository + and allowing me to start from his work + - Change (binary) package name to drupal-4.7 allowing for multiple version + to be installed concurrently, so admins can control upgrade between + releases + - Add dependency on dbconfig-common and switch custom config script to use + functions provided by dbconfig-common (Closes: #366692) + - Removed unused templates + - Added dependency on curl for cron script execution + - Take over removal request (Closes: #375496) + - Update to latest revision (Closes: #307821, #365047, #365709) + + -- Luigi Gangitano Thu, 23 Nov 2006 21:53:19 +0100 + +drupal (4.7.4-0brainlog1) unstable; urgency=low + + * new upstream release because patches do not apply cleanly + * fixes: DRUPAL-SA-2006-024, DRUPAL-SA-2006-025, DRUPAL-SA-2006-026 + + -- Karl-Heinz Nirschl Fri, 20 Oct 2006 19:26:16 +0200 + +drupal (4.7.2-0brainlog4) unstable; urgency=low + + * add security fix DRUPAL-SA-2006-011 + XSS Vulnerability in user module + * move scripts dir to doc + + -- Karl-Heinz Nirschl Thu, 3 Aug 2006 19:46:57 +0200 + +drupal (4.7.2-0brainlog3) unstable; urgency=low + + * fix initial database generation - now checks for mysql version + + -- Karl-Heinz Nirschl Sat, 8 Jul 2006 13:13:12 +0200 + +drupal (4.7.2-0brainlog2) unstable; urgency=low + + * Using a fresh tarball and no .svn files. + * Fix x. permissions. + * Use debian mysql maint password for mysql install + + -- Tzafrir Cohen Fri, 7 Jul 2006 15:59:41 +0300 + +drupal (4.7.2-0brainlog1) unstable; urgency=low + + * new upstream release + * add patch handling to package + - make cron job less verbose + + -- Karl-Heinz Nirschl Fri, 16 Jun 2006 17:13:50 +0200 + +drupal (4.7.1-0brainlog1) unstable; urgency=low + + * new upstream version + + -- Karl-Heinz Nirschl Mon, 29 May 2006 14:01:48 +0200 + +drupal (4.6.5-0brainlog1) unstable; urgency=low + + * update to drupal 4.6.5 (new upstream) + + -- Karl-Heinz Nirschl Mon, 29 May 2006 13:58:55 +0200 + +drupal (4.6.3-0brainlog1) unstable; urgency=low + + * New upstream version (Closes: #307821) + * based on the drupal 4.5.2-4 debian package + * remove the auto update database stuff + * added debconf entry for the base_url + + -- Karl-Heinz Nirschl Thu, 29 Sep 2005 19:10:17 +0200 + +drupal (4.5.2-4) unstable; urgency=low + + * [Miguel Figueiredo ] Added Portuguese translation + (Closes: #301394) + * [Valentina Commissari ] Added Italian translation + (Closes: #301946) + * [Gleydson Mazioli da Silva ] Updated Brazilian + Portuguese translation. + * Fixed typo in package description (Closes: #306997) + + -- Hilko Bengen Thu, 19 May 2005 21:23:27 +0200 + +drupal (4.5.2-3) unstable; urgency=high + + * Fixes "Bypass access via comments" problem mentioned in + http://drupal.org/node/19009. Patch from Gerhard Killesreiter, thanks. + I consider this a critical bug, hence urgency=high. + * [Sergio Talens-Oliag ] Updated Spanish and Catalan + Debconf translations and converted them to UTF-8. + + -- Hilko Bengen Tue, 22 Mar 2005 11:14:36 +0100 + +drupal (4.5.2-2) unstable; urgency=low + + * Changed includes/bootstrap.inc: conf.php (or $site.php) is loaded from + /etc/drupal directly, without the need for any link. + * Removed indentations from sed script which is used to edit the + configuration file. + * Rolled back session.inc to version found in 4.5.1; fixes bug documented + in http://drupal.org/node/15666 + * Added documentation about manual update procedure in README.Debian + and Debconf templates (Closes: #293804) + * Added documentation about adding modules and themes that are not + part of the package. + * NEWS.Debian mentions where to get Marvin and UnConeD themes that used + to be part of the Drupal distribution. + + -- Hilko Bengen Tue, 15 Mar 2005 15:16:26 +0100 + +drupal (4.5.2-1) unstable; urgency=low + + * New upstream version (Closes: #290745; That was fast, wasn't it?) + * Updates Japanese Debconf template, thanks to Hideki Yamane + (Closes: #290439) + * The config file /etc/drupal/conf.php is only generated if it hasn't + existed. It is no longer edited. + + -- Hilko Bengen Sun, 16 Jan 2005 14:49:50 +0100 + +drupal (4.5.1-2) unstable; urgency=low + + * /etc/drupal/conf.php is no longer a conffile (Closes: #289624) + * Should install with mysql-client-4.1 now (Closes: #285733) + + -- Hilko Bengen Wed, 12 Jan 2005 02:16:28 +0100 + +drupal (4.5.1-1) unstable; urgency=low + + * New upstream version (Closes: #277547, #289216, #278345) + * Marvin and UnConeD have been split off into separate packages, as they + are not officially supported by upstream any longer. + * Added Japanese Debconf template (Closes: #288040) + + -- Hilko Bengen Sun, 9 Jan 2005 04:21:03 +0100 + +drupal (4.4.2-2) unstable; urgency=low + + * Bump version dependency to 0.0.37 where better support for PostgreSQL + is included (Closes: 263730) + * Another patch to node.module for DB-independennce (Closes: 258015) + + -- Hilko Bengen Wed, 18 Aug 2004 00:39:58 +0200 + +drupal (4.4.2-1) unstable; urgency=low + + * New upstream bugfix release + - PostgreSQL support fixed in node.module + (Closes: #258015, #258016) + * Fixed sed statement in postinst so it will work with woody's sed. + (Closes: #257529) + * Depends: sharutils (Closes: #258156) + * Cron script checks whether /usr/share/drupal/scripts/cron.sh exists + and is executable (Closes: #251853) + + -- Hilko Bengen Tue, 20 Jul 2004 00:03:06 +0200 + +drupal (4.4.1-3) unstable; urgency=low + + * Included Marvin and Unconed themes from contrib (Closes: #255039) + + -- Hilko Bengen Mon, 28 Jun 2004 14:34:40 +0200 + +drupal (4.4.1-2) unstable; urgency=high + + * Applied admin_node.patch from + against the "Invalid argument supplied for foreach() in + /usr/share/drupal/modules/node.module" error (Closes: #242992) + * Fixed removal of links in webserver directories + * Shut up cron.sh (Closes: #251853) + * Install misc/ directory (images and css) (Closes: #253550) + * Fixed PostgreSQL removal, added some docs (Closes: #253282) + + -- Hilko Bengen Thu, 10 Jun 2004 16:06:47 +0200 + +drupal (4.4.1-1) unstable; urgency=low + + * New upstream version (Closes: #246307) + * Added to cron.d (Closes: #242199) + * Create language in database/database.pgsql (Closes: #242572) + * Fixed dependencies (Closes: #242622): + - Depends on php4-cgi (since it's used by maintainer scripts) + - Recommends: php4 | libapache2-mod-php4 (After all, one _can_ run + Drupal with a PHP-CGI setup + * Fixed generation of links in webserver directories (Closes: #249488) + * Out-of-the-box support for multiple sites (Closes: #246009) + * Put themes directory under /usr/share/drupal. Themes are no longer + handled as conffiles. + * Fixed path to database.mysql in README.Debian (Closes: #246414) + + -- Hilko Bengen Tue, 25 May 2004 10:12:34 +0200 + +drupal (4.3.2-3) unstable; urgency=low + + * Rewrote README.Debian, copying substantial parts from the INSTALL file + (Closes: #240505) + * Re-added a (commented-out) directive for restricting access to + admin.php to htaccess file + + -- Hilko Bengen Sun, 28 Mar 2004 17:38:11 +0200 + +drupal (4.3.2-2) unstable; urgency=low + + * [Bart Cornelis ] Added Dutch debconf translation + (Closes: #232230) + * [Sergio Talens-Oliag ] Added Spanish and Catalan + debconf translations (Closes: #235018 + * [Gleydson Mazioli da Silva ] Added Brazilian + Portugese debconf translation (Closes: #185829) + * [Christian Perrier ] Added French debconf translation + (Closes: #200722) + * Added German debconf translation + + -- Hilko Bengen Tue, 16 Mar 2004 00:43:55 +0100 + +drupal (4.3.2-1) unstable; urgency=low + + * New maintainer (Closes: #227771) + * New upstream release (Closes: #204241, #220066) + - Test shows that kuro5hin RSS feed can be imported just fine + (Closes: #184252) + - The encoding bug in ping.module appears to have been fixed + (Closes: #215643) + * Revamped installation and automatic upgrade procedure + - Update sets password in config.php _and_ database (Closes: #193545) + - It's possible to install the package without performing any database + setup at all (Closes: #201202) + * Fixed /etc/drupal/apache.conf (Closes: #219143) + * Basic PostgreSQL support -- user and database are created + (Closes: #186563) + * Should work with apache2 (Closes: #235912) + + -- Hilko Bengen Thu, 11 Mar 2004 17:30:11 +0100 + +drupal (4.1.0-10) unstable; urgency=low + + * Maintainer field set to QA Group + * New Brazilian Portuguese debconf template translation, provided by + Andre Luis Lopes . Closes: #228109 + + -- Emanuele Rocca Sun, 1 Feb 2004 20:35:04 +0100 + +drupal (4.1.0-9.1) unstable; urgency=low + + * NMU + * French debconf templates translation. Closes: #200722 + * Correction to english templates for (I guess) better english and + formulations. Closes: #186566 + * Brazilian portuguese debconf tempaltes translation. Closes: #185829 + + -- Christian Perrier Tue, 16 Sep 2003 08:55:38 +0200 + +drupal (4.1.0-9) unstable; urgency=low + + * Two corrections in postinst to allow manually setting up the DB + on upgrade. + + -- Hugo Espuny Wed, 19 Mar 2003 22:02:50 +0100 + +drupal (4.1.0-8) unstable; urgency=low + + * Added patch from drupal.org (Closes: #185217) + * Minor typo on apache.conf + * Now htaccess is set up dynamically. + * Example of restricted admin.php is now at htaccess + * Debconf now does not repeat questions after preconfiguring. + + -- Hugo Espuny Wed, 19 Mar 2003 20:09:45 +0100 + +drupal (4.1.0-7) unstable; urgency=high + + * Added securing point to README.Debian + * Alias directive on /etc/drupal/apache.conf now is changed + dynamically according with debconf question. + + -- Hugo Espuny Fri, 14 Mar 2003 20:33:29 +0100 + +drupal (4.1.0-6) unstable; urgency=high + + * Corrected postrm problem whe downgrading to certain versions. + + -- Hugo Espuny Fri, 14 Mar 2003 19:38:15 +0100 + +drupal (4.1.0-5) unstable; urgency=low + + * Corrected mv themes order in rules file. + + -- Hugo Espuny Fri, 14 Mar 2003 19:22:12 +0100 + +drupal (4.1.0-4) unstable; urgency=low + + * Corrected themes moving engine. (Closes: #184752) + * Themes are now configfiles (since 4.1.0-2). I forgot to say... + + -- Hugo Espuny Fri, 14 Mar 2003 17:30:45 +0100 + +drupal (4.1.0-3) unstable; urgency=low + + * Updated to policy version 3.5.9 + + -- Hugo Espuny Fri, 14 Mar 2003 00:28:18 +0100 + +drupal (4.1.0-2) unstable; urgency=low + + * Corrected directive "AllowOverride None" to "AllowOverride All" in + /etc/drupal/apache.conf. (Closes: #184183) + * Corrected directive to in + /etc/drupal/apache.conf. + * Corrected cron file, postinst and templates. Now debconf asks for the + whole URL, not only TCP port. (Closes: #184182) (Closes: #184182) + Thanks to John Goerzen to point me those. + * News feed now works properly. (Closes: #184252) (Closes: #184253) + + -- Hugo Espuny Wed, 12 Mar 2003 18:25:35 +0100 + +drupal (4.1.0-1) unstable; urgency=high + + * New upstream version (Closes: #178506) (Closes: #173107) + * Moved to use po-debconf. + * Fixed README.Debian (Closes: #173103) (Closes: #184111) + + -- Hugo Espuny Fri, 7 Mar 2003 21:09:02 +0100 + +drupal (4.0-4) unstable; urgency=low + + * Corrected a bug on cron.d file. + + -- Hugo Espuny Wed, 11 Dec 2002 22:39:16 +0100 + +drupal (4.0-3) unstable; urgency=low + + * Corrected /etc/cron.d/drupal (thanx to Paul van Tilburg + ). (Closes: #172153) + * Corrected link in README.Debian. (Closes: #169949) + * Changed priority to extra. + * postrm now executes an abort install properly. + * Updated policy standars to 3.5.8 + + -- Hugo Espuny Tue, 10 Dec 2002 00:38:36 +0100 + +drupal (4.0-2) unstable; urgency=low + + * Minor typo correction in templates file. + * Minor bug correction about webserver port in postinst. + * Added versioned dependency on wget to support HTTPS + * Moved update.php to /usr/share/doc/drupal/upgrades + + -- Hugo Espuny Wed, 30 Oct 2002 16:54:06 +0100 + +drupal (4.0-1) unstable; urgency=low + + * New debian package. (Closes: #164676) + * Code taken from phpnuke package. + + -- Hugo Espuny Tue, 29 Oct 2002 21:21:26 +0100 + --- drupal5-5.19.orig/debian/copyright +++ drupal5-5.19/debian/copyright @@ -0,0 +1,44 @@ +This package was debianized by Hugo Espuny on +Sat, 29 Jun 2002 22:13:16 +0200. + +The current Debian Maintainer is Luigi Gangitano + +It was downloaded from http://www.drupal.org + +Upstream authors: Dries Buytaert +James Walker +Moshe Weitzman +Charlie Lowe +Steven Wittens +Károly Négyesi +Gabor Hojtsy +Richard Archer +Matt Westgate +Piotr Krukowiecki +Károly Négyesi +Jeremy Andrews +Károly Négyesi +Hilko Bengen +Gerhard Killesreiter + +Copyright: 2000-2006 Dries Buytaert + + This program 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. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License with + the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; + if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth + Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. + +The Debian packaging is (C) 2006, Luigi Gangitano and +is licensed under the GPL, see above. --- drupal5-5.19.orig/debian/drupal5.prerm +++ drupal5-5.19/debian/drupal5.prerm @@ -0,0 +1,14 @@ +#! /bin/bash +# prerm script for ${package_name} +# + +set -e + +. /usr/share/debconf/confmodule +. /usr/share/dbconfig-common/dpkg/prerm +dbc_go drupal5 $@ + +#DEBHELPER# + +exit 0 + --- drupal5-5.19.orig/debian/TODO +++ drupal5-5.19/debian/TODO @@ -0,0 +1,18 @@ + +Before 4.3.x-1 +-------------- + +* Get automagic database upgrade from 4.x working + +After 4.3.x-1 +------------- + +* Get full Postgres support working +* Better README.Debian +* Implement virtual server support +* Translations + +4.4.2 +----- + +* Multi-site database backup --- drupal5-5.19.orig/debian/patches/00list +++ drupal5-5.19/debian/patches/00list @@ -0,0 +1,2 @@ +02_htaccess +10_cronjob --- drupal5-5.19.orig/debian/patches/02_htaccess.dpatch +++ drupal5-5.19/debian/patches/02_htaccess.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_htaccess.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: patch for allow modrewrite + +@DPATCH@ +diff -urNad drupal5-5.19~/.htaccess drupal5-5.19/.htaccess +--- drupal5-5.19~/.htaccess 2009-02-26 02:03:29.000000000 -0500 ++++ drupal5-5.19/.htaccess 2009-09-10 01:43:17.000000000 -0400 +@@ -91,7 +91,7 @@ + # VirtualDocumentRoot and the rewrite rules are not working properly. + # For example if your site is at http://example.com/drupal uncomment and + # modify the following line: +- # RewriteBase /drupal ++ RewriteBase /drupal5 + # + # If your site is running in a VirtualDocumentRoot at http://example.com/, + # uncomment the following line: --- drupal5-5.19.orig/debian/patches/10_cronjob.dpatch +++ drupal5-5.19/debian/patches/10_cronjob.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 10_cronjob.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Disable reporting to system log every cron run. + +@DPATCH@ +diff -urNad drupal5-5.19~/includes/common.inc drupal5-5.19/includes/common.inc +--- drupal5-5.19~/includes/common.inc 2009-05-13 13:10:36.000000000 -0400 ++++ drupal5-5.19/includes/common.inc 2009-09-10 01:43:44.000000000 -0400 +@@ -2155,7 +2155,7 @@ + + // Record cron time + variable_set('cron_last', time()); +- watchdog('cron', t('Cron run completed.'), WATCHDOG_NOTICE); ++ #watchdog('cron', t('Cron run completed.'), WATCHDOG_NOTICE); + + // Release cron semaphore + variable_del('cron_semaphore'); --- drupal5-5.19.orig/debian/etc/settings.php +++ drupal5-5.19/debian/etc/settings.php @@ -0,0 +1,172 @@ + 'main_', + * 'users' => 'shared_', + * 'sessions' => 'shared_', + * 'role' => 'shared_', + * 'authmap' => 'shared_', + * 'sequences' => 'shared_', + * ); + * + * Database URL format: + * $db_url = 'mysql://username:password@localhost/databasename'; + * $db_url = 'mysqli://username:password@localhost/databasename'; + * $db_url = 'pgsql://username:password@localhost/databasename'; + */ +require_once('dbconfig.php'); +if (!isset($dbserver) || empty($dbserver)) + $dbserver='localhost'; +$db_url = "$dbtype://$dbuser:$dbpass@$dbserver/$dbname"; +$db_prefix = ''; + +/** + * Base URL (optional). + * + * If you are experiencing issues with different site domains, + * uncomment the Base URL statement below (remove the leading hash sign) + * and fill in the URL to your Drupal installation. + * + * You might also want to force users to use a given domain. + * See the .htaccess file for more information. + * + * Examples: + * $base_url = 'http://www.example.com'; + * $base_url = 'http://www.example.com:8888'; + * $base_url = 'http://www.example.com/drupal'; + * $base_url = 'https://www.example.com:8888/drupal'; + * + * It is not allowed to have a trailing slash; Drupal will add it + * for you. + */ +# $base_url = 'http://www.example.com'; // NO trailing slash! +if (file_exists('baseurl.php')) + include_once('baseurl.php'); + +/** + * PHP settings: + * + * To see what PHP settings are possible, including whether they can + * be set at runtime (ie., when ini_set() occurs), read the PHP + * documentation at http://www.php.net/manual/en/ini.php#ini.list + * and take a look at the .htaccess file to see which non-runtime + * settings are used there. Settings defined here should not be + * duplicated there so as to avoid conflict issues. + */ +ini_set('arg_separator.output', '&'); +ini_set('magic_quotes_runtime', 0); +ini_set('magic_quotes_sybase', 0); +ini_set('session.cache_expire', 200000); +ini_set('session.cache_limiter', 'none'); +ini_set('session.cookie_lifetime', 2000000); +ini_set('session.gc_maxlifetime', 200000); +ini_set('session.save_handler', 'user'); +ini_set('session.use_only_cookies', 1); +ini_set('session.use_trans_sid', 0); +ini_set('url_rewriter.tags', ''); +ini_set('session.gc_probability', 1); +ini_set('session.gc_divisor', 100); + +/** + * Drupal automatically generates a unique session cookie name for each site + * based on on its full domain name. If you have multiple domains pointing at + * the same Drupal site, you can either redirect them all to a single domain + * (see comment in .htaccess), or uncomment the line below and specify their + * shared base domain. Doing so assures that users remain logged in as they + * cross between your various domains. + */ +# $cookie_domain = 'example.com'; + +/** + * Variable overrides: + * + * To override specific entries in the 'variable' table for this site, + * set them here. You usually don't need to use this feature. This is + * useful in a configuration file for a vhost or directory, rather than + * the default settings.php. Any configuration setting from the 'variable' + * table can be given a new value. + * + * Remove the leading hash signs to enable. + */ +# $conf = array( +# 'site_name' => 'My Drupal site', +# 'theme_default' => 'minnelli', +# 'anonymous' => 'Visitor', +# ); + --- drupal5-5.19.orig/debian/etc/apache.conf +++ drupal5-5.19/debian/etc/apache.conf @@ -0,0 +1,8 @@ +Alias /drupal5 /usr/share/drupal5 + + + Options +FollowSymLinks + AllowOverride All + order allow,deny + allow from all + --- drupal5-5.19.orig/debian/po/sv.po +++ drupal5-5.19/debian/po/sv.po @@ -0,0 +1,23 @@ +# Swedish translation for drupal debconf. +# Copyright (C) 2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the drupal package. +# Daniel Nylander , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-06 22:57+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Webbserver/webbservrar som ska konfigureras automatiskt:" + --- drupal5-5.19.orig/debian/po/ta.po +++ drupal5-5.19/debian/po/ta.po @@ -0,0 +1,24 @@ +# translation of drupal.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-07 05:50+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \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: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "தானியங்கியாக வடிவமைக்கப் பட வேண்டிய வலை சேவையகம் (சேவையகங்கள்):" + --- drupal5-5.19.orig/debian/po/hu.po +++ drupal5-5.19/debian/po/hu.po @@ -0,0 +1,24 @@ +# translation of drupal5_5.5-1_templates.po to Hungarian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Miklos LUKACS , 2008. +msgid "" +msgstr "" +"Project-Id-Version: drupal5_5.5-1_templates\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-07 09:15+0100\n" +"PO-Revision-Date: 2008-01-06 00:25+0100\n" +"Last-Translator: Miklos LUKACS \n" +"Language-Team: Hungarian \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: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Az automatikusan beállítandó web szerver(ek):" + --- drupal5-5.19.orig/debian/po/cs.po +++ drupal5-5.19/debian/po/cs.po @@ -0,0 +1,22 @@ +# Czech translation of drupal debconf messages. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the drupal package. +# Miroslav Kure, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-07 07:44+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Webové servery, které se mají nastavit automaticky:" --- drupal5-5.19.orig/debian/po/templates.pot +++ drupal5-5.19/debian/po/templates.pot @@ -0,0 +1,23 @@ +# 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: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-07 09:15+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "" --- drupal5-5.19.orig/debian/po/gl.po +++ drupal5-5.19/debian/po/gl.po @@ -0,0 +1,21 @@ +# Galician translation of drupal's debconf templates +# This file is distributed under the same license as the drupal package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-07 00:59+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Servidores web a configurar automaticamente:" --- drupal5-5.19.orig/debian/po/it.po +++ drupal5-5.19/debian/po/it.po @@ -0,0 +1,25 @@ +# Italian translation of debconf for Drupal. +# This file is distributed under the same license as the Drupal package. +# Copyright 2005 by Valentina Commissari . +# Copyright 2008 by Luca Monducci . +# +msgid "" +msgstr "" +"Project-Id-Version: drupal5 5.9\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2008-08-10 15:50+0200\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Italian\n" +"X-Poedit-Country: ITALY\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Server web da configurare automaticamente:" --- drupal5-5.19.orig/debian/po/ru.po +++ drupal5-5.19/debian/po/ru.po @@ -0,0 +1,25 @@ +# translation of ru.po to Russian +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Yuriy Talakan' , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: ru\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-09 08:54+0900\n" +"Last-Translator: Yuriy Talakan' \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\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: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Настроить автоматически web-сервер(ы) :" + --- drupal5-5.19.orig/debian/po/es.po +++ drupal5-5.19/debian/po/es.po @@ -0,0 +1,132 @@ +# drupal5 po-debconf translation to Spanish +# Copyright (C) 2005, 2008 +# This file is distributed under the same license as the drupal5 package. +# +# Changes: +# - Initial translation +# Sergio Talens-Oliag , 2005 +# Francisco Javier Cuadrado +# +# Traductores, si no conoce 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 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: drupal5 5.10-1\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-07 09:15+0100\n" +"PO-Revision-Date: 2008-10-11 16:52+0100\n" +"Last-Translator: Francisco Javier Cuadrado \n" +"Language-Team: Debian Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "El(Los) servidor(es) web que se debe(n) configurar automáticamente:" + +# Type: boolean +# Description +#~ msgid "Automatically create Drupal database?" +#~ msgstr "¿Crear automáticamente una base de datos de Drupal?" +#~ msgid "" +#~ "Drupal needs access to a database, along with initialized data structures " +#~ "in order to function properly. This can be created automatically by this " +#~ "package, for MySQL or PostgreSQL databases." +#~ msgstr "" +#~ "Para funcionar correctamente Drupal necesita aceso a una base de datos " +#~ "con estructuras de datos inicializadas. Esto puede ser creado " +#~ "automáticamente por este paquete para bases de datos MySQL o PostgreSQL." +#~ msgid "" +#~ "Automatically creating the database does not make sense if a Drupal " +#~ "database already exists or if no database server has been setup when " +#~ "Drupal is installed." +#~ msgstr "" +#~ "La creación automática de la base de datos no tiene sentido si ya existe " +#~ "una base de datos de Drupal o si no se ha configurado un servidor de base " +#~ "de datos cuando se ha instalado Drupal." +#~ msgid "Database engine to be used with Drupal" +#~ msgstr "Motor de base de datos a usar con Drupal" +#~ msgid "Database server for Drupal's database" +#~ msgstr "Servidor de base de datos para la base de datos de Drupal" +#~ msgid "Database server administrator user name on host ${host}" +#~ msgstr "" +#~ "Nombre de usuario del administrador del servidor de bases de datos en el " +#~ "equipo ${host}" +#~ msgid "Password for database server administrator ${user} on host ${host}" +#~ msgstr "" +#~ "Contraseña para el administrador del servidor de bases de datos ${user} " +#~ "en el equipo ${host}" +#~ msgid "The answer will not be stored anywhere permanently." +#~ msgstr "La respuesta no se guardará en ningún sitio de modo permanente." +#~ msgid "Drupal database owner username" +#~ msgstr "Nombre de usuario del propietario de la base de datos de Drupal" +#~ msgid "" +#~ "This username will be used by Drupal to connect to the database server." +#~ msgstr "" +#~ "Este nombre de usuario será usado por Drupal para conectar al servidor de " +#~ "bases de datos." +#~ msgid "Drupal database owner password" +#~ msgstr "Clave del usuario propietario de la base de Datos de Drupal" +#~ msgid "" +#~ "If no password is specified here, a random password will be generated." +#~ msgstr "" +#~ "Si no se especifica ninguna contraseña aquí, se generará una " +#~ "aleatoriamente." +#~ msgid "Drupal database name" +#~ msgstr "Nombre de la base de datos de Drupal" +#, fuzzy +#~ msgid "Drupal Base Url" +#~ msgstr "Nombre de la base de datos de Drupal" +#~ msgid "Remove Drupal database when the package is removed?" +#~ msgstr "¿Borrar la base de datos de Drupal cuando el paquete sea eliminado?" +#~ msgid "Remove former database backups when the package is removed?" +#~ msgstr "" +#~ "¿Eliminar copias de seguridad anteriores de la base de datos cuando el " +#~ "paquete sea eliminado?" +#~ msgid "" +#~ "These backups are stored in /var/lib/drupal/backups. This will not remove " +#~ "the current database from the DBMS." +#~ msgstr "" +#~ "Estas copias de seguridad están almacenadas en /var/lib/drupal/backups. " +#~ "Esto no eliminará la base de datos actual del sistema de gestión de bases " +#~ "de datos." + +#, fuzzy +#~ msgid "Database update neccesary. Continue?" +#~ msgstr "¿Ejecutar el guión de actualización de la base de datos?" +#~ msgid "User creation failed" +#~ msgstr "Ha fallado la creación del usuario" +#~ msgid "Attempt to modify config file ${conffile} failed" +#~ msgstr "" +#~ "Ha fallado el intento de modificar el fichero de configuración ${conffile}" +#~ msgid "Database creation failed" +#~ msgstr "Ha fallado la creación de la base de datos" +#~ msgid "Database initialization failed" +#~ msgstr "Ha fallado la inicialización de la base de datos" +#~ msgid "Database removal failed" +#~ msgstr "Ha fallado la eliminación de la base de datos" +#~ msgid "Script output:" +#~ msgstr "Salida del guión:" +#~ msgid "${result}" +#~ msgstr "${result}" +#~ msgid "Run database update script?" +#~ msgstr "¿Ejecutar el guión de actualización de la base de datos?" + --- drupal5-5.19.orig/debian/po/eu.po +++ drupal5-5.19/debian/po/eu.po @@ -0,0 +1,25 @@ +# translation of drupal-templates.po to librezale +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2007. +msgid "" +msgstr "" +"Project-Id-Version: drupal-templates\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-08 10:29+0100\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: librezale \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=2; plural=(n != 1)\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Automatikoki birkonfiguratu behar diren web zerbitzariak:" + --- drupal5-5.19.orig/debian/po/POTFILES.in +++ drupal5-5.19/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates.master --- drupal5-5.19.orig/debian/po/pt.po +++ drupal5-5.19/debian/po/pt.po @@ -0,0 +1,180 @@ +# Portuguese translation od Drupal's debconf messages. +# 2005, Miguel Figueiredo +# 21-05-2005 - Miguel Figueiredo +# +# Miguel Figueiredo , 2005,2007 + +msgid "" +msgstr "" +"Project-Id-Version: drupal 5.0-1\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-07 20:20+0000\n" +"Last-Translator: Miguel Figueiredo >\n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Servidor(es) web que devem ser configurados automaticamente:" + +#~ msgid "Automatically create Drupal database?" +#~ msgstr "Criar automaticamente a base de dados do Drupal?" + +#~ msgid "" +#~ "Drupal needs access to a database, along with initialized data structures " +#~ "in order to function properly. This can be created automatically by this " +#~ "package, for MySQL or PostgreSQL databases." +#~ msgstr "" +#~ "O Drupal necessita de aceder a uma base de dados, assim como a estruturas " +#~ "de dados inicializadas de modo a funcionar correctamente. Isto pode ser " +#~ "criado automaticamente por este pacote, para bases de dados MySQL ou " +#~ "PostgreSQL." + +#~ msgid "" +#~ "Automatically creating the database does not make sense if a Drupal " +#~ "database already exists or if no database server has been setup when " +#~ "Drupal is installed." +#~ msgstr "" +#~ "Criar automaticamente a base de dados não faz sentido se já existir uma " +#~ "base de dados do Drupal ou se não foi preparado nenhum servidor de bases " +#~ "de dados quando o Drupal foi instalado." + +#~ msgid "Database engine to be used with Drupal" +#~ msgstr "Motor da base de dados para ser utilizado com o Drupal" + +#~ msgid "Database server for Drupal's database" +#~ msgstr "Servidor de base de dados para a base de dados do Drupal" + +#~ msgid "Database server administrator user name on host ${host}" +#~ msgstr "" +#~ "Nome de utilizador do administrador do servidor de bases de dados no host " +#~ "${host}" + +#~ msgid "Password for database server administrator ${user} on host ${host}" +#~ msgstr "" +#~ "Password do administrador ${user} do servidor de bases de dados no host " +#~ "${host}" + +#~ msgid "The answer will not be stored anywhere permanently." +#~ msgstr "A resposta não será guardada em qualquer local de forma permanente." + +#~ msgid "Drupal database owner username" +#~ msgstr "Nome de utilizador do dono da base de dados do Drupal" + +#~ msgid "" +#~ "This username will be used by Drupal to connect to the database server." +#~ msgstr "" +#~ "Este nome de utilizador será utilizado pelo Drupal para se ligar ao " +#~ "servidor de bases de dados." + +#~ msgid "Drupal database owner password" +#~ msgstr "Password do dono da base de dados do Drupal" + +#~ msgid "" +#~ "If no password is specified here, a random password will be generated." +#~ msgstr "" +#~ "Se nenhuma password for especificada aqui, será gerada uma password " +#~ "aleatória." + +#~ msgid "Drupal database name" +#~ msgstr "Nome da base de dados do Drupal" + +#, fuzzy +#~ msgid "Drupal Base Url" +#~ msgstr "Nome da base de dados do Drupal" + +#~ msgid "Remove Drupal database when the package is removed?" +#~ msgstr "Remover a base de dados do Drupal quando o pacote for removido?" + +#~ msgid "Remove former database backups when the package is removed?" +#~ msgstr "" +#~ "Remover backups antigos da base de dados quando o pacote for removido?" + +#~ msgid "" +#~ "These backups are stored in /var/lib/drupal/backups. This will not remove " +#~ "the current database from the DBMS." +#~ msgstr "" +#~ "Estes backups são guardados em /var/lib/drupal/backups. Isto não irá " +#~ "remover a base de dados actual do SGDB." + +#, fuzzy +#~ msgid "Database update neccesary. Continue?" +#~ msgstr "Correr o script de actualização da base de dados?" + +#~ msgid "User creation failed" +#~ msgstr "A criação do utilizador falhou" + +#~ msgid "Attempt to modify config file ${conffile} failed" +#~ msgstr "" +#~ "Falhou a tentativa de modificar o ficheiro de configuração ${conffile}" + +#~ msgid "Database creation failed" +#~ msgstr "Falhou a criação da base de dados" + +#~ msgid "Database initialization failed" +#~ msgstr "Falhou a inicialização da base de dados" + +#~ msgid "Database removal failed" +#~ msgstr "Falhou a remoção da base de dados" + +#~ msgid "Script output:" +#~ msgstr "Saída do script:" + +#~ msgid "${result}" +#~ msgstr "${result}" + +#~ msgid "Run database update script?" +#~ msgstr "Correr o script de actualização da base de dados?" + +#~ msgid "" +#~ "If you are upgrading Drupal from an older upstream version, the database " +#~ "structure needs to be updated. This package can perform this task " +#~ "automatically." +#~ msgstr "" +#~ "Se estiver a actualizar o Drupal a partir de uma versão upstream mais " +#~ "antiga, a estrutura da base de dados necessita ser actualizada. Este " +#~ "pacote pode executar essa tarefa automaticamente." + +#~ msgid "" +#~ "A manual update procedure is available by pointing a web browser to " +#~ "." +#~ msgstr "" +#~ "Um procedimento de actualização manual está disponível apontando um " +#~ "browser da web para ." + +#~ msgid "The database will be backed up to prevent data loss." +#~ msgstr "A base de dados será salvaguardada para prevenir a perda de dados." + +#~ msgid "Automatic database update failed" +#~ msgstr "Falhou a actualização automática da base de dados" + +#~ msgid "The automatic update script failed to update the database." +#~ msgstr "" +#~ "O script de actualização automática falhou a actualização da base de " +#~ "dados." + +#~ msgid "Automatic update script can not be run" +#~ msgstr "O script de actualização automática não pode ser corrido" + +#~ msgid "" +#~ "Configuration files of a Drupal package ${oldversion} have been found, " +#~ "but the package itself has been removed. Therefore, it is not possible to " +#~ "run the automatic update script." +#~ msgstr "" +#~ "Foram encontrados ficheiros de configuração de um pacote Drupal " +#~ "${oldversion}, mas o pacote em si foi removido. Por isso, não é possível " +#~ "correr o script de actualização automática." + +#~ msgid "" +#~ "Please run it by hand after the package has been successfully installed. " +#~ "Either point your web browser to ${site_root}/update.php or run /usr/" +#~ "share/drupal/scripts/debian-update.php from a shell." +#~ msgstr "" +#~ "Por favor corra-o manualmente após o pacote ter sido instalado com " +#~ "sucesso. Ou aponte o seu browser web para ${site_root}/update.php ou " +#~ "corra a partir da shell /usr/share/drupal/scripts/debian-update.php." --- drupal5-5.19.orig/debian/po/fr.po +++ drupal5-5.19/debian/po/fr.po @@ -0,0 +1,31 @@ +# translation of fr.po to French +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Christian Perrier , 2003 +# +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2006-12-29 19:20+0100\n" +"PO-Revision-Date: 2005-05-19 21:40+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Serveur(s) web à configurer automatiquement :" --- drupal5-5.19.orig/debian/po/pt_BR.po +++ drupal5-5.19/debian/po/pt_BR.po @@ -0,0 +1,172 @@ +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2005-05-19 21:41+0200\n" +"Last-Translator: Gleydson Mazioli da Silva \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +#, fuzzy +msgid "Web server(s) that should be configured automatically:" +msgstr "O servidor Web que deverá ser configurado automaticamente" + +#~ msgid "Automatically create Drupal database?" +#~ msgstr "Criar automaticamente o banco de dados do Drupal?" + +#~ msgid "" +#~ "Drupal needs access to a database, along with initialized data structures " +#~ "in order to function properly. This can be created automatically by this " +#~ "package, for MySQL or PostgreSQL databases." +#~ msgstr "" +#~ "O Drupal precisa ter acesso a um banco de dados e também as estruturas de " +#~ "dados já inicializadas para funcionar adequadamente. Isto poderá ser " +#~ "criado automaticamente por este pacote, para bases de dados MySQL ou " +#~ "PostgreSQL." + +#~ msgid "" +#~ "Automatically creating the database does not make sense if a Drupal " +#~ "database already exists or if no database server has been setup when " +#~ "Drupal is installed." +#~ msgstr "" +#~ "A criação automática do banco de dados não faz sentido se um banco de " +#~ "dados drupal já existe ou se um servidor de banco de dados foi " +#~ "configurado para ser usado pelo drupal após a instalação." + +#~ msgid "Database engine to be used with Drupal" +#~ msgstr "Tipo de banco de dados que será usado com o Drupal" + +#~ msgid "Database server for Drupal's database" +#~ msgstr "Servidor de banco de dados do banco de dados do Drupal" + +#~ msgid "Database server administrator user name on host ${host}" +#~ msgstr "Nome do administrador do banco de dados na máquina ${host}" + +#~ msgid "Password for database server administrator ${user} on host ${host}" +#~ msgstr "" +#~ "Senha para o banco de dados do administrador ${user} na máquina ${host}" + +#~ msgid "The answer will not be stored anywhere permanently." +#~ msgstr "A resposta não será armazenada em qualquer lugar permanentemente." + +#~ msgid "Drupal database owner username" +#~ msgstr "Nome do dono da base de dados do Drupal" + +#~ msgid "" +#~ "This username will be used by Drupal to connect to the database server." +#~ msgstr "" +#~ "Este nome de usuário será usado pelo Drupal para se conectar ao servidor " +#~ "dobanco de dados." + +#~ msgid "Drupal database owner password" +#~ msgstr "Senha do dono da base de dados do Drupal" + +#~ msgid "" +#~ "If no password is specified here, a random password will be generated." +#~ msgstr "" +#~ "Caso nenhuma senha seja especificada aqui, uma senha qualquer será gerada." + +#~ msgid "Drupal database name" +#~ msgstr "Nome da base de dados do Drupal" + +#, fuzzy +#~ msgid "Drupal Base Url" +#~ msgstr "Nome da base de dados do Drupal" + +#~ msgid "Remove Drupal database when the package is removed?" +#~ msgstr "Remover a base de dados do Drupal quando o pacote for removido?" + +#~ msgid "Remove former database backups when the package is removed?" +#~ msgstr "Remover os backups da base de dados quando o pacote for removido?" + +#~ msgid "" +#~ "These backups are stored in /var/lib/drupal/backups. This will not remove " +#~ "the current database from the DBMS." +#~ msgstr "" +#~ "Estes backups estão armazenados em /var/lib/drupal/backups. Isto não " +#~ "removerá o banco de dados atual do DBMS." + +#, fuzzy +#~ msgid "Database update neccesary. Continue?" +#~ msgstr "Executar o script de atualização do banco de dados?" + +#~ msgid "User creation failed" +#~ msgstr "Ocorreu uma falha durante a criação do usuário" + +#~ msgid "Attempt to modify config file ${conffile} failed" +#~ msgstr "" +#~ "Falha na tentativa de modificar o arquivo de configuração ${conffile}" + +#~ msgid "Database creation failed" +#~ msgstr "Falha na criação do banco de dados" + +#~ msgid "Database initialization failed" +#~ msgstr "Falha na inicialização do banco de dados" + +#~ msgid "Database removal failed" +#~ msgstr "Falha na remoção da base de dados" + +#~ msgid "Script output:" +#~ msgstr "Saida do script:" + +#~ msgid "${result}" +#~ msgstr "${result}" + +#~ msgid "Run database update script?" +#~ msgstr "Executar o script de atualização do banco de dados?" + +#~ msgid "" +#~ "If you are upgrading Drupal from an older upstream version, the database " +#~ "structure needs to be updated. This package can perform this task " +#~ "automatically." +#~ msgstr "" +#~ "Se estiver atualizando o Drupal de uma versão upstream antiga, a " +#~ "estrutura do banco de dados precisará ser atualizada. Este pacote poderá " +#~ "fazer esta tarefa automaticamente." + +#~ msgid "" +#~ "A manual update procedure is available by pointing a web browser to " +#~ "." +#~ msgstr "" +#~ "Um procedimento de atualização manual está disponível apontando seu " +#~ "navegadorweb para ." + +#~ msgid "The database will be backed up to prevent data loss." +#~ msgstr "" +#~ "Será feito um backup do banco de dados para se evitar uma perda de dados." + +#~ msgid "Automatic database update failed" +#~ msgstr "Falha na atualização automática do banco de dados" + +#~ msgid "The automatic update script failed to update the database." +#~ msgstr "" +#~ "O script de atualização automática falhou ao tentar atualizar o banco de " +#~ "dados." + +#~ msgid "Automatic update script can not be run" +#~ msgstr "O script de atualização automática não pode ser executado" + +#~ msgid "" +#~ "Configuration files of a Drupal package ${oldversion} have been found, " +#~ "but the package itself has been removed. Therefore, it is not possible to " +#~ "run the automatic update script." +#~ msgstr "" +#~ "Foram emcontrados arquivos de configuração do pacote Drupal " +#~ "${oldversion}, mas o pacote foi removido. No entanto, é possível executar " +#~ "o script automático de atualização." + +#~ msgid "" +#~ "Please run it by hand after the package has been successfully installed. " +#~ "Either point your web browser to ${site_root}/update.php or run /usr/" +#~ "share/drupal/scripts/debian-update.php from a shell." +#~ msgstr "" +#~ "Por favor execute manualmente após o pacote ser instalado com sucesso. Ou " +#~ "apontando seu navegador para ${site_root}/update.php ou executando /usr/" +#~ "share/drupal/scripts/debian-update.php a partir de um shell." --- drupal5-5.19.orig/debian/po/nl.po +++ drupal5-5.19/debian/po/nl.po @@ -0,0 +1,31 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-07 09:21+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Webserver(s) die automatisch geconfigureerd dienen te worden:" + --- drupal5-5.19.orig/debian/po/de.po +++ drupal5-5.19/debian/po/de.po @@ -0,0 +1,172 @@ +# Translation of drupal debconf templates to German +# Copyright (C) Hilko Bengen +# Copyright (C) Helge Kreutzmann , 2007. +# This file is distributed under the same license as the drupal package. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal 4.7.6-1\n" +"Report-Msgid-Bugs-To: drupal@packages.debian.org\n" +"POT-Creation-Date: 2007-01-31 04:30+0100\n" +"PO-Revision-Date: 2007-03-07 18:48+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Webserver, die automatisch konfiguriert werden sollen:" + +#~ msgid "Automatically create Drupal database?" +#~ msgstr "Datenbank fr Drupal automatisch erstellen?" + +#~ msgid "" +#~ "Drupal needs access to a database, along with initialized data structures " +#~ "in order to function properly. This can be created automatically by this " +#~ "package, for MySQL or PostgreSQL databases." +#~ msgstr "" +#~ "Drupal bentigt zu einer Datenbank und vorbereiteten Datenstrukturen " +#~ "Zugang. Diese Datenbank kann automatisch von diesem Paket angelegt werden; " +#~ "zur Auswahl stehen MySQL- oder PostgreSQL-Datenbanken." + +#~ msgid "" +#~ "Automatically creating the database does not make sense if a Drupal " +#~ "database already exists or if no database server has been setup when " +#~ "Drupal is installed." +#~ msgstr "" +#~ "Automatisches Anlegen der Datenbank ist nicht sinnvoll, falls bereits eine " +#~ "Drupal-Datenbank existiert oder falls zur Installationszeit kein " +#~ "Datenbanksystem installiert und eingerichtet ist." + +#~ msgid "Database engine to be used with Drupal" +#~ msgstr "Datenbanksoftware, die mit Drupal verwendet werden soll" + +#~ msgid "Database server for Drupal's database" +#~ msgstr "Server fr die Drupal-Datenbank" + +#~ msgid "Database server administrator user name on host ${host}" +#~ msgstr "Benutzername des Datenbankadministrators auf Server ${host}" + +#~ msgid "Password for database server administrator ${user} on host ${host}" +#~ msgstr "Passwort des Datenbankadministrators ${user} auf Server ${host}" + +#~ msgid "The answer will not be stored anywhere permanently." +#~ msgstr "Die Antwort wird nicht permanent gespeichert." + +#~ msgid "Drupal database owner username" +#~ msgstr "Benutzername fr die Drupal-Datenbank" + +#~ msgid "" +#~ "This username will be used by Drupal to connect to the database server." +#~ msgstr "" +#~ "Drupal wird diesen Benutzernamen zum Zugriff auf die Datenbank verwenden." + +#~ msgid "Drupal database owner password" +#~ msgstr "Passwort fr den Drupal-Benutzer" + +#~ msgid "" +#~ "If no password is specified here, a random password will be generated." +#~ msgstr "" +#~ "Wenn kein Passwort angegeben wird, so wird ein zuflliges Passwort " +#~ "generiert werden." + +#~ msgid "Drupal database name" +#~ msgstr "Name der Drupal-Datenbank" + +#~ msgid "Drupal Base Url" +#~ msgstr "Basis-URL von Drupal" + +#~ msgid "Remove Drupal database when the package is removed?" +#~ msgstr "Drupal-Datenbank entfernen, wenn diese Paket entfernt wird?" + +#~ msgid "Remove former database backups when the package is removed?" +#~ msgstr "" +#~ "Datenbank-Sicherheitskopien entfernen, wenn dieses Paket entfernt wird?" + +#~ msgid "" +#~ "These backups are stored in /var/lib/drupal/backups. This will not remove " +#~ "the current database from the DBMS." +#~ msgstr "" +#~ "Diese Sicherheitskopien liegen in /var/lib/drupal/backups. Die Datenbank " +#~ "wird hierdurch nicht entfernt werden." + +#~ msgid "Database update neccesary. Continue?" +#~ msgstr "Datenbankaktualisierung notwendig. Fortfahren?" + +#~ msgid "User creation failed" +#~ msgstr "Anlegen des Benutzers fehlgeschlagen" + +#~ msgid "Attempt to modify config file ${conffile} failed" +#~ msgstr "nderung an der Konfigurationsdatei ${conffile} fehlgeschlagen" + +#~ msgid "Database creation failed" +#~ msgstr "Anlegen der Datenbank fehlgeschlagen" + +#~ msgid "Database initialization failed" +#~ msgstr "Einrichten der Datenbank fehlgeschlagen" + +#~ msgid "Database removal failed" +#~ msgstr "Entfernung der Datenbank fehlgeschlagen" + +#~ msgid "Script output:" +#~ msgstr "Ausgabe des Skripts:" + +#~ msgid "${result}" +#~ msgstr "${result}" + +#~ msgid "Run database update script?" +#~ msgstr "Datenbank-Updateskript ausfhren?" + +#~ msgid "" +#~ "If you are upgrading Drupal from an older upstream version, the database " +#~ "structure needs to be updated. This package can perform this task " +#~ "automatically." +#~ msgstr "" +#~ "Wenn Sie ein Upgrade von einer frheren Drupal-Version durchfhren, ist es " +#~ "notwendig, die Datenbankstrukturen anzupassen. Dieses Paket kann das " +#~ "automatisch erledigen." + +#~ msgid "" +#~ "A manual update procedure is available by pointing a web browser to " +#~ "." +#~ msgstr "" +#~ "Alternativ knnen Sie die Datenbankstrukturen an die neue Version anpassen " +#~ "lassen, indem Sie mit einem Webbrowser aufrufen." + +#~ msgid "The database will be backed up to prevent data loss." +#~ msgstr "" +#~ "Eine Sicherheitskopie der Datenbank wird erstellt werden, um Verlust der " +#~ "Daten zu verhindern." + +#~ msgid "Automatic database update failed" +#~ msgstr "Automatische Datenbank-Aktualisierung fehlgeschlagen" + +#~ msgid "The automatic update script failed to update the database." +#~ msgstr "" +#~ "Das automatische Aktualisierungs-Skript konnte die Datenbank nicht anpassen" + +#~ msgid "Automatic update script can not be run" +#~ msgstr "" +#~ "Das automatische Aktualisierungs-Skript kann nicht ausgefhrt werden." + +#~ msgid "" +#~ "Configuration files of a Drupal package ${oldversion} have been found, " +#~ "but the package itself has been removed. Therefore, it is not possible to " +#~ "run the automatic update script." +#~ msgstr "" +#~ "Konfigurationsdateien eines frheren Drupal-Pakets ${oldversion} wurden " +#~ "gefunden, aber das Paket selbst wurde entfernt. Daher ist es nicht " +#~ "mglich, das Skript auszufhren." + +#~ msgid "" +#~ "Please run it by hand after the package has been successfully installed. " +#~ "Either point your web browser to ${site_root}/update.php or run /usr/" +#~ "share/drupal/scripts/debian-update.php from a shell." +#~ msgstr "" +#~ "Bitte fhren Sie es von Hand aus, nachdem das Paket installiert wurde. " +#~ "Entweder laden Sie ${site_root}/update.php in einem Webbrowser, oder " +#~ "starten Sie /usr/share/drupal/scripts/debian-update.php in einer Shell." --- drupal5-5.19.orig/debian/po/ca.po +++ drupal5-5.19/debian/po/ca.po @@ -0,0 +1,236 @@ +# Catalan translation of drupal +# Copyright (c) 2004 Software in the Public Interest, Inc. +# This file is distributed under the same license as the drupal package. +# Josep Monés i Teixidor , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2005-03-21 11:09+0100\n" +"Last-Translator: Sergio Talens-Oliag \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +# Type: multiselect +# Description +#. Type: multiselect +#. Description +#: ../templates.master:1001 +#, fuzzy +msgid "Web server(s) that should be configured automatically:" +msgstr "Servidor(s) web que han de ser configurats automàticament" + +# Type: boolean +# Description +#~ msgid "Automatically create Drupal database?" +#~ msgstr "Voleu crear automàticament una base de dades del Drupal?" + +# Type: boolean +# Description +#~ msgid "" +#~ "Drupal needs access to a database, along with initialized data structures " +#~ "in order to function properly. This can be created automatically by this " +#~ "package, for MySQL or PostgreSQL databases." +#~ msgstr "" +#~ "Al Drupal li cal una base de dades configurada amb estructures de dades " +#~ "inicialitzades per a funcionar correctament. Aixó pot ser creat " +#~ "automàticament per aquest paquet per a bases de dades MySQL o PostgreSQL." + +# Type: boolean +# Description +#~ msgid "" +#~ "Automatically creating the database does not make sense if a Drupal " +#~ "database already exists or if no database server has been setup when " +#~ "Drupal is installed." +#~ msgstr "" +#~ "Crear automàticament la base de dades no te trellat si ja existeix una " +#~ "base de dades del Drupal o si no s'ha configurat cap servidor de bases de " +#~ "dades quan s'ha instal.lat el Drupal." + +# Type: select +# Description +#~ msgid "Database engine to be used with Drupal" +#~ msgstr "Motor de base de dades a fer servir amb el Drupal" + +# Type: string +# Description +#~ msgid "Database server for Drupal's database" +#~ msgstr "Servidor de bases de dades per a la base de dades del Drupal" + +# Type: string +# Description +#~ msgid "Database server administrator user name on host ${host}" +#~ msgstr "" +#~ "Nom d'usuari de l'administrador del servidor de base de dades al equip " +#~ "${host}" + +# Type: password +# Description +#~ msgid "Password for database server administrator ${user} on host ${host}" +#~ msgstr "" +#~ "Contrasenya per a l'administrador del servidor de base de dades ${user} " +#~ "al equip ${host}" + +# Type: password +# Description +#~ msgid "The answer will not be stored anywhere permanently." +#~ msgstr "La resposta no es guardarà en cap lloc permanentment." + +# Type: string +# Description +#~ msgid "Drupal database owner username" +#~ msgstr "Nom d'usuari del propietari de la base de dades del Drupal" + +# Type: string +# Description +#~ msgid "" +#~ "This username will be used by Drupal to connect to the database server." +#~ msgstr "" +#~ "Aquest nom d'usuari serà emprat per el Drupal per a conectar amb el " +#~ "servidor de bases de dades." + +#~ msgid "Drupal database owner password" +#~ msgstr "Contrasenya del propietari de la base de dades del Drupal" + +# Type: password +# Description +#~ msgid "" +#~ "If no password is specified here, a random password will be generated." +#~ msgstr "Si no es tria cap contrasenya ací, es generarà una aleatòriament." + +# Type: string +# Description +#~ msgid "Drupal database name" +#~ msgstr "Nom de la base de dades del Drupal" + +# Type: string +# Description +#, fuzzy +#~ msgid "Drupal Base Url" +#~ msgstr "Nom de la base de dades del Drupal" + +# Type: boolean +# Description +#~ msgid "Remove Drupal database when the package is removed?" +#~ msgstr "" +#~ "Eliminar les bases de dades del Drupal quan el paquet siga eliminat?" + +# Type: boolean +# Description +#~ msgid "Remove former database backups when the package is removed?" +#~ msgstr "" +#~ "Eliminar les còpies de les bases de dades anteriors quan el paquet siga " +#~ "eliminat?" + +# Type: boolean +# Description +#~ msgid "" +#~ "These backups are stored in /var/lib/drupal/backups. This will not remove " +#~ "the current database from the DBMS." +#~ msgstr "" +#~ "Les còpies de seguretat es guarden a /var/lib/drupal/backups. Aixó no " +#~ "eliminarà la base de dades actual del sistema de gestió de bases de dades." + +#, fuzzy +#~ msgid "Database update neccesary. Continue?" +#~ msgstr "Executar guió d'actualització de la base de dades?" + +# Type: note +# Description +#~ msgid "User creation failed" +#~ msgstr "Ha fallat la creació de l'usuari" + +#~ msgid "Attempt to modify config file ${conffile} failed" +#~ msgstr "" +#~ "Va fallar l'intent de modificar el fitxer de configuració ${conffile}" + +# Type: note +# Description +#~ msgid "Database creation failed" +#~ msgstr "Ha fallat la creació de la base de dades" + +# Type: note +# Description +#~ msgid "Database initialization failed" +#~ msgstr "Ha fallat la inicialització de la base de dades" + +# Type: note +# Description +#~ msgid "Database removal failed" +#~ msgstr "Ha fallat l'eliminació de la base de dades" + +#~ msgid "Script output:" +#~ msgstr "Eixida del guió:" + +#~ msgid "${result}" +#~ msgstr "${result}" + +#~ msgid "Run database update script?" +#~ msgstr "Executar guió d'actualització de la base de dades?" + +# Type: boolean +# Description +#~ msgid "" +#~ "If you are upgrading Drupal from an older upstream version, the database " +#~ "structure needs to be updated. This package can perform this task " +#~ "automatically." +#~ msgstr "" +#~ "Si està actualitzant Drupal des de una versió original antiga es necesari " +#~ "actualitzar l'estructura de la base de dades. Aquest paquet pot fer-ho " +#~ "automàticament per vosté." + +#~ msgid "" +#~ "A manual update procedure is available by pointing a web browser to " +#~ "." +#~ msgstr "" +#~ "Hi ha un procedimet d'actualització manual disponible accedint a la " +#~ "adreça amb un navegador." + +# Type: boolean +# Description +#~ msgid "The database will be backed up to prevent data loss." +#~ msgstr "" +#~ "Es farà una còpia de seguretat de la base de dades per a prevenir perdues " +#~ "d'informació." + +# Type: note +# Description +#~ msgid "Automatic database update failed" +#~ msgstr "Ha fallat l'actualització automàtica de la base de dades" + +# Type: note +# Description +#~ msgid "The automatic update script failed to update the database." +#~ msgstr "" +#~ "El guió d'actualització automàtica no ha actualitzat la base de dades." + +# Type: note +# Description +#~ msgid "Automatic update script can not be run" +#~ msgstr "El guió d'actualització automàtica no es pot executar" + +# Type: note +# Description +#~ msgid "" +#~ "Configuration files of a Drupal package ${oldversion} have been found, " +#~ "but the package itself has been removed. Therefore, it is not possible to " +#~ "run the automatic update script." +#~ msgstr "" +#~ "S'han trobat fitxers de configuració de Drupal ${old_version}, però el " +#~ "paquet ha estat el.liminat. Així que no es pot executar el guió " +#~ "d'actualització automàtica." + +# Type: note +# Description +#~ msgid "" +#~ "Please run it by hand after the package has been successfully installed. " +#~ "Either point your web browser to ${site_root}/update.php or run /usr/" +#~ "share/drupal/scripts/debian-update.php from a shell." +#~ msgstr "" +#~ "Per favor executa-ho manualment després que el paquet estiga correctament " +#~ "instal.lat. Apunteu amb el vostre navegador a ${site_root}/update.php o " +#~ "executa /usr/share/drupal/FIXME des d'una shell." --- drupal5-5.19.orig/debian/po/ja.po +++ drupal5-5.19/debian/po/ja.po @@ -0,0 +1,32 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# +msgid "" +msgstr "" +"Project-Id-Version: drupal 5.0-1\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-07 22:57+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "web サーバが自動的に設定されます:" + --- drupal5-5.19.orig/debian/po/nb.po +++ drupal5-5.19/debian/po/nb.po @@ -0,0 +1,22 @@ +# drupal. +# Copyright (C) 2007 +# This file is distributed under the same license as the drupal package. +# Hans Fredrik Nordhaug , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: drupal\n" +"Report-Msgid-Bugs-To: luigi@debian.org\n" +"POT-Creation-Date: 2007-03-06 14:23+0100\n" +"PO-Revision-Date: 2007-03-11 07:53+0100\n" +"Last-Translator: Hans Fredrik Nordhaug \n" +"Language-Team: Norwegian Bokml \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../templates.master:1001 +msgid "Web server(s) that should be configured automatically:" +msgstr "Nettjener(e) som skal konfigureres automatisk:"