debian/0000755000000000000000000000000012133747623007176 5ustar debian/install0000644000000000000000000000063712133740574010573 0ustar conf/config.inc.php etc/phppgadmin # files *.php usr/share/phppgadmin *.js usr/share/phppgadmin robots.txt usr/share/phppgadmin # directories classes usr/share/phppgadmin help usr/share/phppgadmin images usr/share/phppgadmin js usr/share/phppgadmin lang usr/share/phppgadmin libraries usr/share/phppgadmin plugins usr/share/phppgadmin themes usr/share/phppgadmin xloadtree usr/share/phppgadmin debian/phppgadmin.prerm0000644000000000000000000000047512133737472012403 0ustar #!/bin/sh set -e # conffile converted from symlink to plain file in 5.0.3-2 if test -x /usr/bin/dpkg-maintscript-helper && dpkg-maintscript-helper supports mv_conffile 2>/dev/null ; then dpkg-maintscript-helper mv_conffile /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin 5.0.3-1 -- "$@" fi #DEBHELPER# debian/README.Debian0000644000000000000000000000436412133746237011246 0ustar phpPgAdmin for Debian ===================== Usage ----- The application is available at http://localhost/phppgadmin/ after installation. Edit /etc/apache2/conf.d/phppgadmin if you want to change the default access policy or other Apache settings. Edit /etc/phppgadmin/config.inc.php to connect to databases on other hosts and ports, and to change other configuration settings of phpPgAdmin. Access Control -------------- By default phpPgAdmin connects to localhost port 5432. PostgreSQL installations on Debian authenticate this access with passwords by default, so you should give your database users passwords. You can do this by executing in a shell while being root: # su - postgres $ psql (and inside the psql shell) =# \password someuser =# \q In particular, you need to give the postgres user itself a password this way if you want to use phpPgAdmin for administration tasks using this superuser account. Additionally, you need to set extra_login_security to false in /etc/phppgadmin/config.inc.php. For further information about PostgreSQL users and passwords refer to the documentation available in the postgresql-doc package. Alternative Approach -------------------- In case you want to avoid password authentication for all users (for instance this might break some local applications which are designed to work with ident authentication) the following approach is suggested: Create a special phppgadmin user: su - postgres createuser --adduser --createdb --encrypted --pwprompt phppgadmin Insert the following line in your /etc/postgresql/x.y/zzz/pg_hba.conf file: local all phppgadmin md5 (make sure that it is above "local all all ident sameuser") Then, reload the PostgreSQL server with /etc/init.d/postgresql-x.y reload. You should be able to login with phppgadmin and the password chosen above into the phpPgAdmin interface. Reports Database ---------------- The "reports" functionality needs a database created. (The web interface will tell you to look for instructions in a file "INSTALL".) The necessary SQL file is located in /usr/share/phppgadmin/sql/reports-pgsql.sql. The default permissions are pretty broad, you might want to set up stricter permissions instead. debian/apache.conf0000644000000000000000000000125712133737472011274 0ustar Alias /phppgadmin /usr/share/phppgadmin DirectoryIndex index.php AllowOverride None order deny,allow deny from all allow from 127.0.0.0/255.0.0.0 ::1/128 # allow from all php_flag magic_quotes_gpc Off php_flag track_vars On #php_value include_path . AddType application/x-httpd-php .php Action application/x-httpd-php /cgi-bin/php AddType application/x-httpd-php .php Action application/x-httpd-php /cgi-bin/php debian/svn-deblayout0000644000000000000000000000002712133737472011715 0ustar origDir=../../upstream debian/dirs0000644000000000000000000000012112133737472010055 0ustar usr/share/phppgadmin usr/share/phppgadmin/conf etc/phppgadmin etc/apache2/conf.d debian/links0000644000000000000000000000010712133737472010240 0ustar etc/phppgadmin/config.inc.php usr/share/phppgadmin/conf/config.inc.php debian/patches/0000755000000000000000000000000012133742301010611 5ustar debian/patches/localhost.patch0000644000000000000000000000111212133737472013632 0ustar Go through localhost instead of Unix-domain socket because localhost allows password access by default on Debian; Unix-domain socket uses ident, which doesn't work through the web server. --- a/conf/config.inc.php-dist +++ b/conf/config.inc.php-dist @@ -15,7 +15,7 @@ // Hostname or IP address for server. Use '' for UNIX domain socket. // use 'localhost' for TCP/IP connection on this computer - $conf['servers'][0]['host'] = ''; + $conf['servers'][0]['host'] = 'localhost'; // Database port on server (5432 is the PostgreSQL default) $conf['servers'][0]['port'] = 5432; debian/patches/series0000644000000000000000000000002012133742301012016 0ustar localhost.patch debian/phppgadmin.lintian-overrides0000644000000000000000000000016612133737472014711 0ustar # INSTALL is half README phppgadmin: package-contains-upstream-install-documentation usr/share/doc/phppgadmin/INSTALL debian/phppgadmin.postinst0000644000000000000000000000063512133737472013137 0ustar #! /bin/sh set -e if [ "$1" = configure ]; then test ! -e /etc/init.d/apache2 || invoke-rc.d apache2 reload fi # conffile converted from symlink to plain file in 5.0.3-2 if test -x /usr/bin/dpkg-maintscript-helper && dpkg-maintscript-helper supports mv_conffile 2>/dev/null ; then dpkg-maintscript-helper mv_conffile /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin 5.0.3-1 -- "$@" fi #DEBHELPER# debian/docs0000644000000000000000000000006012133737472010046 0ustar CREDITS DEVELOPERS FAQ INSTALL TODO TRANSLATORS debian/source/0000755000000000000000000000000012133737472010477 5ustar debian/source/format0000644000000000000000000000001412133737472011705 0ustar 3.0 (quilt) debian/phppgadmin.preinst0000644000000000000000000000126512133737472012740 0ustar #!/bin/sh set -e # does not work yet #case $1 in # upgrade) # if dpkg --compare-versions $2 lt 5.0.2 ; then # # directory changed to symlink, dpkg doesn't like that # rm -rf /usr/share/phppgadmin/libraries/adodb # fi # ;; #esac # conffile converted from symlink to plain file in 5.0.3-2 if test -x /usr/bin/dpkg-maintscript-helper && dpkg-maintscript-helper supports mv_conffile 2>/dev/null ; then test -L /etc/apache2/conf.d/phppgadmin && rm /etc/apache2/conf.d/phppgadmin && \ echo "Moving /etc/phppgadmin/apache.conf to /etc/phppgadmin/apache.conf" dpkg-maintscript-helper mv_conffile /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin 5.0.3-1 -- "$@" fi #DEBHELPER# debian/copyright0000644000000000000000000001456712133737472011147 0ustar This package was debianized by Isaac Clerencia on Thu, 19 Jun 2003 10:27:23 +0200 It was downloaded from http://sourceforge.net/projects/phppgadmin/ Copyright (C) 2002, 2003, 2004, 2005 The PhpPgAdmin Project 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, or (at your option) any later version. 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 can find the license on Debian systems in the file /usr/share/common-licenses/GPL-2. Licenses of libraries included: ADOdb ------------------------------------------------------------------------ ADOdb is dual licensed using BSD and LGPL. In plain English, you do not need to distribute your application in source code form, nor do you need to distribute ADOdb source code, provided you follow the rest of terms of the BSD license. For more info about ADOdb, visit http://adodb.sourceforge.net/ BSD Style-License ================= Copyright (c) 2000, 2001, 2002, 2003, 2004 John Lim All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the John Lim nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. DISCLAIMER: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JOHN LIM OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. You can find the license on Debian systems in the file /usr/share/common-licenses/LGPL. xloadtree -------------------------------------------------------------------- Copyright (c) 1999 - 2005 Erik Arvidsson & Emil A Eklund This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software. This software is available under the three different licenses mentioned below. To use this software you must chose, and qualify, for one of those. The WebFX Non-Commercial License http://webfx.eae.net/license.html Permits anyone the right to use the software in a non-commercial context free of charge. The WebFX Commercial license http://webfx.eae.net/commercial.html Permits the license holder the right to use the software in a commercial context. Such license must be specifically obtained, however it's valid for any number of implementations of the licensed software. GPL - The GNU General Public License http://www.gnu.org/licenses/gpl.txt Permits anyone the right to use and modify the software without limitations as long as proper credits are given and the original and modified source code are included. Requires that the final product, software derivate from the original source or any software utilizing a GPL component, such as this, is also licensed under the GPL license. hilight ---------------------------------------------------------------------- /* This software is licensed through a BSD-style License. * http://www.opensource.org/licenses/bsd-license.php Copyright (c) 2003, 2004, Jacob D. Cohen All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of Jacob D. Cohen nor the names of his contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. jquery ----------------------------------------------------------------------- Copyright 2010, John Resig Dual licensed under the MIT or GPL Version 2 licenses. http://jquery.org/license Includes Sizzle.js http://sizzlejs.com/ Copyright 2010, The Dojo Foundation Released under the MIT, BSD, and GPL Licenses. debian/watch0000644000000000000000000000010212133737472010221 0ustar version=3 http://sf.net/phppgadmin/ phpPgAdmin-([0-9.]+)\.tar\.gz debian/control0000644000000000000000000000313012133737472010577 0ustar Source: phppgadmin Maintainer: Christoph Berg Uploaders: Peter Eisentraut Section: web Priority: extra Build-Depends: debhelper (>= 7.0.50~) Standards-Version: 3.9.3 Homepage: http://phppgadmin.sourceforge.net/ Vcs-Git: git://anonscm.debian.org/pkg-postgresql/phppgadmin.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-postgresql/phppgadmin.git Package: phppgadmin Architecture: all Depends: ${misc:Depends}, libapache2-mod-php5 | php5-cgi, php5-pgsql, apache2 | httpd, libjs-jquery Recommends: postgresql-doc Suggests: postgresql, slony1-bin Description: web-based administration tool for PostgreSQL phpPgAdmin is a web-based administration tool for PostgreSQL. It is perfect for PostgreSQL DBAs, newbies and hosting services. . Features: * Administer multiple servers * Support for PostgreSQL 7.4.x, 8.0.x, 8.1.x, 8.2.x, 8.3.x, 8.4.x, 9.0.x * Manage all aspects of: * Users & groups * Databases * Schemas * Tables, indexes, constraints, triggers, rules & privileges * Views, sequences & functions * Advanced objects * Reports * Easy data manipulation: * Browse tables, views & reports * Execute arbitrary SQL * Select, insert, update and delete * Dump table data in a variety of formats: SQL, COPY, XML, XHTML, CSV, Tabbed, pg_dump * Import SQL scripts, COPY data, XML, CSV and Tabbed * Supports the Slony master-slave replication engine * Excellent language support: * Available in 27 languages * No encoding conflicts. Edit Russian data using a Japanese interface! * Easy to install and configure debian/rules0000755000000000000000000000161412133741173010252 0ustar #!/usr/bin/make -f clean: dh_testdir dh_testroot dh_clean rm -f conf/config.inc.php build-arch: build build-indep: cp conf/config.inc.php-dist conf/config.inc.php override_dh_link: rm debian/phppgadmin/usr/share/phppgadmin/libraries/js/jquery.js ln -s /usr/share/javascript/jquery/jquery.js debian/phppgadmin/usr/share/phppgadmin/libraries/js # does not work yet # rm -rf debian/phppgadmin/usr/share/phppgadmin/libraries/adodb # ln -s /usr/share/php/adodb debian/phppgadmin/usr/share/phppgadmin/libraries dh_link install: build dh $@ cp debian/apache.conf debian/phppgadmin/etc/apache2/conf.d/phppgadmin rm debian/phppgadmin/usr/share/phppgadmin/libraries/adodb/*.txt rm debian/phppgadmin/usr/share/phppgadmin/lang/langcheck rm debian/phppgadmin/usr/share/phppgadmin/lang/synch binary-arch: binary binary-indep: install dh $@ .PHONY: build build-indep install clean binary binary-indep debian/compat0000644000000000000000000000000212133737472010375 0ustar 7 debian/changelog0000644000000000000000000004127312133746317011056 0ustar phppgadmin (5.1-1) unstable; urgency=low * New upstream release. + Fixes PHP 5.4 Strict errors. Closes: #693404. * Remove debian/patches/slony1-path.patch. * Fix path to apache config in README.Debian, thanks to Matthew Vernon for spotting. Closes: #683267. * Move packaging to git.debian.org. -- Christoph Berg Thu, 18 Apr 2013 12:04:59 +0200 phppgadmin (5.0.4-1) unstable; urgency=low * New upstream release. -- Christoph Berg Fri, 23 Mar 2012 09:50:08 +0100 phppgadmin (5.0.3-2) unstable; urgency=low * Install js subdirectory. Closes: #641127. * Isaac has retired from Debian, taking over as maintainer. Closes: #656002. * Convert apache config snipped from symlink to file, as the symlink is dead while phppgadmin is not yet configured (the file is still called .dpkg-new at this point). Closes: #511133. -- Christoph Berg Wed, 01 Feb 2012 18:24:54 +0100 phppgadmin (5.0.3-1) unstable; urgency=low * New upstream release, fixes XSS vulnerabilities. Closes: #644290, CVE-2011-3598. -- Christoph Berg Wed, 05 Oct 2011 21:47:32 +0200 phppgadmin (5.0.2-2) unstable; urgency=low * NMU changelog for 4.2.3-1.1 was not included in 5.0.2-1, fix that. (Changes went upstream.) -- Christoph Berg Sun, 19 Jun 2011 10:20:42 +0200 phppgadmin (5.0.2-1) unstable; urgency=low * New upstream release (closes: #612316) + Data export fixed (closes: #575396) + Correct appcharset in Czech localization (closes: #533242) + Supports post-8.3 per-table autovacuum configuration (closes: #550386) * Add instructions for the reports database to README.Debian; also install INSTALL file (closes: #627895) * Correct access instructions wrt the postgres user in README.Debian (closes: #519932) * Add php5-cgi code to apache config, only used if mod_php5 is not installed; disable FollowSymlinks (closes: #391397) * Depend on libjs-jquery instead of shipping our own copy. (Using libphp-adodb does not work at the moment.) * Include copyright terms of libraries included in debian/copyright. * Update description with current list of supported versions. * Bump to dh 7. * Add myself as co-maintainer -- Christoph Berg Wed, 15 Jun 2011 18:02:28 +0200 phppgadmin (4.2.3-1.1) unstable; urgency=high * Non-maintainer upload. * debian/patches - (php5.3-reference-value-fix.patch): New. Patch thanks to Alan Chandler . (grave; Closes: #571220). -- Jari Aalto Fri, 15 Oct 2010 17:05:27 +0300 phppgadmin (4.2.3-1) unstable; urgency=low * New upstream release - Fixes PHP 5.3 compatibility (closes: #571220) * Updated standards version * Use set -e in postinst, per Lintian * Converted to source format 3.0 (quilt) * Remove executable permissions from *.php files, per Lintian -- Peter Eisentraut Tue, 27 Apr 2010 23:32:42 +0300 phppgadmin (4.2.2-1) unstable; urgency=low * New upstream release - Fixes local file inclusion vulnerability (CVE-2008-5587) (closes: #508026) * Removed register_globals from debian/apache.conf (closes: #508026) -- Peter Eisentraut Wed, 31 Dec 2008 19:32:22 +0200 phppgadmin (4.2.1-1) unstable; urgency=low * New upstream release -- Peter Eisentraut Mon, 11 Aug 2008 12:16:00 +0300 phppgadmin (4.2-1) unstable; urgency=low * New upstream release * Added myself as comaintainer * Added to pkg-postgresql SVN (closes: #483606) * Added Homepage control field * Added watch file * Fixed slony1 paths (closes: #414986) * New config.inc.php version, patches managed with quilt * Put postgresql and slony1-bin into Suggests * Removed support for old web servers and PHP, dropped debconf use (closes: #485861) * Revised README.Debian * Updated standards version * Changed to Debhelper level 5 -- Peter Eisentraut Fri, 20 Jun 2008 15:52:34 +0200 phppgadmin (4.1.3-0.3) unstable; urgency=low * Non-maintainer upload to fix pending l10n issues * Debconf translations: - Italian. Closes: #460129 - Japanese. Closes: #463245 - Galician. Closes: #484095 - Turkish. Closes: #484518 - Basque. Closes: #484939 * [Lintian] Drop the (now?) useless build dependency on dpatch -- Christian Perrier Thu, 22 May 2008 17:58:34 +0200 phppgadmin (4.1.3-0.2) unstable; urgency=low * Non-maintainer upload * Added support for IPv6 in default Apache access configuration (closes: #397928) -- Peter Eisentraut Tue, 01 Apr 2008 13:45:53 +0200 phppgadmin (4.1.3-0.1) unstable; urgency=low * Non-maintainer upload from the Zurich BSP. * Fixes cross-site scripting vulnerability (CVE 2007-5728), closes: #449103. The only changes introduced upstream with this version were to fix this bug. -- Tobias Klauser Sun, 13 Jan 2008 17:52:27 +0100 phppgadmin (4.1.2-1) unstable; urgency=low * New upstream release * Fixes security bug (CVE-2007-2865), closes: #427151 * Update configuration files * Prefer php5 over php4 on install * NMU acknowledge, closes: #405849, #411057, #413772, #417007 -- Isaac Clerencia Sat, 02 Jun 2007 14:25:23 +0200 phppgadmin (4.0.1-3.2) unstable; urgency=high * Non-maintainer upload during BSP. * Fix unconditional use of debconf in postrm (Closes: #417007). * Update Portuguese debconf translation (Closes: #413772). -- Luk Claes Sat, 19 May 2007 18:45:10 +0200 phppgadmin (4.0.1-3.1) unstable; urgency=low * Non-maintainer upload to fix pending l10n issues. * Debconf translations: - Dutch. Closes: #405849 - German. Closes: #411057 -- Christian Perrier Tue, 27 Feb 2007 18:42:29 +0100 phppgadmin (4.0.1-3) unstable; urgency=low +++ Changes by Christian Perrier +++ * Debconf templates translations: - Portuguese added. Closes: #381431 - Dutch added. Closes: #383338 - Spanish updated. Closes: #383086 - Swedish updated. Sent during the call for updates of the NMU campaign. - Czech updated. Sent during the call for updates of the NMU campaign. - Russian added. Sent during the call for updates of the NMU campaign. - Brazilian Portuguese updated. Sent during the call for updates of the NMU campaign. - Vietnamese updated. Sent during the call for updates of the NMU campaign. * Lintian fixes: - Move debhelper and dpatch to Build-Depends - Rewrite debconf templates to fix the Developers Reference suggested write style -- Isaac Clerencia Thu, 7 Dec 2006 08:06:52 +0100 phppgadmin (4.0.1-2) unstable; urgency=low * Remove dangling links from conf.d dirs when removing the package, closes: #355508 -- Isaac Clerencia Mon, 6 Mar 2006 08:44:56 +0100 phppgadmin (4.0.1-1) unstable; urgency=low * New upstream release * Added debconf translation for Portuguese, closes: #336846 * Adjust install file * Bumped Standards-Version to 3.6.2, no changes required * Update debian/config.inc.php from new upstream config file -- Isaac Clerencia Wed, 16 Nov 2005 21:39:30 +0100 phppgadmin (3.5.6-1) unstable; urgency=low * New upstream release * Remove patches included upstream * Added debconf translation for Swedish, closes: #330646 * Allow to install phppgadmin with php5, closes: #325888 * Prefer apache2 over apache -- Isaac Clerencia Tue, 18 Oct 2005 19:45:00 +0200 phppgadmin (3.5.5-2) unstable; urgency=low * Further fixes for "Only variable references should be returned by reference", closes: #321921 -- Isaac Clerencia Mon, 29 Aug 2005 00:07:51 +0200 phppgadmin (3.5.5-1) unstable; urgency=low * New upstream release, closes: #321921, "Only variable references should be returned by reference" * Added dpatch to build-depends * Include a patch to fix a problem similar to #321921, "Only variables should be assigned by reference" * Provide alternative (and safer) auth schema in README.Debian, closes: #322682, provided by Andreas Tille * Added/updated debconf translations for Arabic, Czech and French, closes: #322417, #320774, #320304 -- Isaac Clerencia Fri, 19 Aug 2005 00:17:24 +0200 phppgadmin (3.5.4-1) unstable; urgency=low * New upstream release, fixes security bug CAN-2005-2256: #318284 * Updated Japanese po-debconf file, closes: #310087 * Added Vietnamese po-debconf file, closes: #316842 -- Isaac Clerencia Mon, 18 Jul 2005 11:19:26 +0200 phppgadmin (3.5.2-3) unstable; urgency=low * Added Apache 2 as a choice for autoconfiguration, closes: #297696 -- Isaac Clerencia Wed, 2 Mar 2005 16:12:44 +0100 phppgadmin (3.5.2-2) unstable; urgency=low * Configure apache via conf.d, closes: #296504 -- Isaac Clerencia Wed, 23 Feb 2005 02:39:49 +0100 phppgadmin (3.5.2-1) unstable; urgency=low * New upstream release, closes: #290604, #288551 * Fixed PHP depends, closes: #293441 * Removed bashism from postrm, closes: #292187 * Include initial Czech translation of debconf messages, closes: #293616 -- Isaac Clerencia Mon, 21 Feb 2005 13:42:20 +0100 phppgadmin (3.5.1-1) unstable; urgency=low * New upstream release * Remove some i18n tools from lang/ -- Isaac Clerencia Tue, 14 Dec 2004 14:33:03 +0100 phppgadmin (3.5-1) unstable; urgency=low * New upstream release -- Isaac Clerencia Mon, 15 Nov 2004 10:57:18 +0100 phppgadmin (3.4.1-1) unstable; urgency=low * New upstream release -- Isaac Clerencia Tue, 6 Jul 2004 15:46:09 +0200 phppgadmin (3.4-3) unstable; urgency=low * Added show_comments option to the default config file, closes: #254299 -- Isaac Clerencia Mon, 14 Jun 2004 20:53:46 +0200 phppgadmin (3.4-2) unstable; urgency=low * Moved db_stop after #DEBHELPER# in postrm since debhelper uses debconf to purge, closes: #252882 * Renamed templates file to phppgadmin.templates -- Isaac Clerencia Sat, 5 Jun 2004 20:54:31 +0200 phppgadmin (3.4-1) unstable; urgency=low * New upstream release * Renamed some phppgadmin.foobar files to foobar * Removed the disappeared BUGS file from debian/docs -- Isaac Clerencia Fri, 4 Jun 2004 15:10:15 +0200 phppgadmin (3.3.1-2) unstable; urgency=low * Added libapache2-mod-php as an alternative for php4 in order to have phppgadmin usable with apache2, closes: #248845 * Added #DEBHELPER# to all maintainer scripts -- Isaac Clerencia Fri, 14 May 2004 16:27:13 +0200 phppgadmin (3.3.1-1) unstable; urgency=low * New upstream release * Added Catalan (ca) debconf template translation, sent by Aleix Badia, closes: #236637 * DH_COMPAT in rules moved to debian/compat * conffile file removed, because files in /etc are automatically conffiles with DH_COMPAT 4 * removing po-debconf Build-Depend, since debhelper >= 4.1.16 implies it -- Isaac Clerencia Sat, 13 Mar 2004 10:17:22 +0100 phppgadmin (3.3-2) unstable; urgency=low * Added German (de) debconf template translation, sent by Peter Eisentraut -- Isaac Clerencia Wed, 3 Mar 2004 11:58:10 +0100 phppgadmin (3.3-1) unstable; urgency=low * New upstream release * Add Brazilian Portuguese (pt_BR) debconf template translation closes: #231715, translation sent by Andre Luis Lopes * Upstream: Checkbox to LIMIT output rows from SQL box added, closes: #217426 SQL query from link (not box) can be edited after "Go", closes: #217430 -- Isaac Clerencia Wed, 25 Feb 2004 11:31:35 +0100 phppgadmin (3.2.1-2) unstable; urgency=low * Now the package doesn't overwrite the old configuration silently -- Isaac Clerencia Sat, 10 Jan 2004 22:31:26 +0100 phppgadmin (3.2.1-1) unstable; urgency=low * New upstream release * Added Japanese debconf translation, closes: #222285 * LIMIT conflict in reports fixed upstream, closes: #217433 -- Isaac Clerencia Sat, 29 Nov 2003 23:57:48 +0100 phppgadmin (3.1+beta1-3) unstable; urgency=low * Changed _Choices to __Choices in templates file, closes: #211058 * Added two missing files, indexes.js and robots.txt, closes: #211689 -- Isaac Clerencia Friday, 19 September 2003 17:30:15 +0100 phppgadmin (3.1+beta1-2) unstable; urgency=low * Added French debconf translation, closes: #210639 * Fixed debconf error in preconfigure and postinst, closes: #210723 * Added po-debconf to Build-Depends-Indep * Changed Standards-Version from 3.5.9.0 to 3.6.1.0 (no changes needed) * Removed php3 stuff from debian/apache.conf * Added apache as real package that provides httpd * Removed starting "A " from Description * Transition from cp to install to avoid umask problems in debian/rules * Added missing binary-arch and build targets in debian/rules -- Isaac Clerencia Saturday, 13 September 2003 11:30:15 +0100 phppgadmin (3.1+beta1-1) unstable; urgency=low * New upstream release * Changed dependency on apache to dependency on httpd, closes: #203742 * Switched to the gettext debconf format, closes: #210489 -- Isaac Clerencia Friday, 12 September 2003 00:18:15 +0100 phppgadmin (3.0-1) unstable; urgency=low * New upstream release, closes: #203329, #197806, #202099, #197281, #127837 * Created with debhelper -- Isaac Clerencia Sunday, 22 June 2003 16:48:15 +0100 phppgadmin (2.4.2-2) unstable; urgency=low * Forgot to close "new upstream" and "spanish debconf" bugs, closes: #162075, #153072 * Build-depend to yada, closes: #152186 * Fixes error in documentation URL (cfgManualBase), closes: #147140 -- Isaac Clerencia Saturday, 26 October 2002 15:01:15 +0100 phppgadmin (2.4.2-1) unstable; urgency=low * New upstream release * Spanish debconf template * Adopted, closes: #162570 -- Isaac Clerencia Friday, 25 October 2002 15:45:50 +0100 phppgadmin (2.4.1-3) unstable; urgency=high * left.js was missing from binary package, closes: #145458 * The default policy is now "allow from localhost", closes: #135411 -- Piotr Roszatycki Tue, 7 May 2002 10:50:18 +0200 phppgadmin (2.4.1-2) unstable; urgency=low * Fixes typo in README, closes: #142519 * Fixes wwwconfig-common stuff. -- Piotr Roszatycki Thu, 18 Apr 2002 12:07:22 +0200 phppgadmin (2.4.1-1) unstable; urgency=low * New upstream release * phppgadmin doesn't depend php3, closes: #142165 * Fixed postrm script if package is not configured yet, closes: #131658 * Russian debconf template, closes: #137673 -- Piotr Roszatycki Fri, 12 Apr 2002 11:56:27 +0200 phppgadmin (2.4-1) unstable; urgency=low * New upstream release -- Piotr Roszatycki Tue, 29 Jan 2002 16:58:03 +0100 phppgadmin (2.3.1-2.4-beta-1-1) unstable; urgency=low * New upstream release, closes: #122589 * Fixed spelling error in description, closes: #125244 -- Piotr Roszatycki Tue, 18 Dec 2001 14:45:27 +0100 phppgadmin (2.3-5) unstable; urgency=low * German template, closes: #114077 -- Piotr Roszatycki Tue, 16 Oct 2001 15:52:45 +0200 phppgadmin (2.3-4) unstable; urgency=low * Fix documentation files suffix, closes: #113049 * Don't use file_exists and include "./$goto" * DebConf and wwwconfig-common for automatic webserver reconfiguration. -- Piotr Roszatycki Mon, 24 Sep 2001 17:26:10 +0200 phppgadmin (2.3-3) unstable; urgency=low * left.php now display tables which has 'pg' substring, closes: #101593 * Depends: httpd -- Piotr Roszatycki Sat, 7 Jul 2001 17:11:04 +0200 phppgadmin (2.3-2) unstable; urgency=medium * Modified very unsecure method of advanced authentication. Now, the stduser/stdpass pair is not required for enabled adv_auth. * Slightly modified config.inc.php * Updated README.Debian * Clean up some old dh_clean in debian/packages * FAQ in /usr/share/doc -- Piotr Roszatycki Mon, 21 May 2001 12:20:02 +0200 phppgadmin (2.3-1) unstable; urgency=high * New upstream release -- Piotr Roszatycki Wed, 9 May 2001 12:39:03 +0200 phppgadmin (2.2.1.pl1-1) unstable; urgency=low * Initial Debian version, closes: #89617 -- Piotr Roszatycki Tue, 10 Apr 2001 13:58:05 +0200