pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases/pgadmin3 pgAdmin 1.16.1 has been released, o...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7bcee0b34fd3
branches:  trunk
changeset: 621876:7bcee0b34fd3
user:      richard <richard%pkgsrc.org@localhost>
date:      Sat Jul 20 05:10:42 2013 +0000

description:
pgAdmin 1.16.1 has been released, offering 19 bug fixes over the previous version.
 The list of bug fixes is available in the CHANGELOG.

 The following are the recent Changes
 ------------------------------------

 Date       Dev Ver     Change details
 ---------- --- ------  --------------
 2012-12-03 DP  1.16.1  Prevent a crash that could happen if further changes
                        were made on a dialogue after using the Apply button.
                        [Akshay Joshi]
 2012-11-29 GL  1.16.1  Save new comments on already existing columns when
                        editing a table. Per a report from Jeff Janes.
 2012-11-29 GL  1.16.1  Fix the query editor behaviour when executing COPY TO
                        stdout and COPY FROM stdin [Heikki Linnakangas]
 2012-11-28 AV  1.16.1  Date picker controls returns a full timestamp by
                        default, which can cause inadvertent date changes
                        on jobs and role validty dates. Ignore the time part.
 2012-11-26 MH  1.16.1  Fix query for database descriptions
 2012-11-15 DP  1.16.1  Avoid querying the catalogs for toast table settings
                        for every table in the database. This gives a huge
                        performance gain with large schemas.
 2012-11-08 DP  1.16.1  Prevent a crash when refreshing a node which has a
                        child with an open dialogue [Dhiraj Chawla]
 2012-11-08 DP  1.16.1  Fix dropping/renaming of indexes [Akshay Joshi]
 2012-11-08 DP  1.16.1  Avoid updating the GQB model on every key press in
                        the query tool [Dhiraj Chawla]
 2012-11-02 DP  1.16.1  Fix a crash that can occur when renaming objects.
                        [Ashesh Vashi/Sachin Srivastava]
 2012-11-01 DP  1.16.1  Fix dropping of constraints [Akshay Joshi]
 2012-10-31 DP  1.16.1  Fix the "blocked by" column in the server status
                        dialogue on 9.2 servers [Sachin Srivastava]
 2012-10-11 DP  1.16.1  Prevent a crash if the query tool is closed whilst a
                        file is loading [Akshay Joshi]
 2012-10-09 AV  1.16.1  Fix setting of comments on PPAS procedures.
 2012-10-08 DP  1.16.1  Don't autosize the search results columns if no
                        results are found [Akshay Joshi]
 2012-10-08 AV  1.16.1  Prevent a crash if opening a second config file in
                        the editor.
 2012-10-08 DP  1.16.1  Prevent the SSL options combo box displaying
                        duplicate options if the server dialogue is
                        reopened [Akshay Joshi]
 2012-09-14 GL  1.16.1  Fix trigger query when connected to PostgreSQL 8.2 or
                        lower, per a report from Jon Roberts.
 2012-09-12 GL  1.16.1  Fix message when executing an empty query, per Marc
                        Mamin.

diffstat:

 databases/pgadmin3/Makefile                                         |   43 +-
 databases/pgadmin3/PLIST                                            |  570 ++++-----
 databases/pgadmin3/distinfo                                         |   17 +-
 databases/pgadmin3/patches/patch-Makefile.am                        |   27 +
 databases/pgadmin3/patches/patch-aa                                 |   14 -
 databases/pgadmin3/patches/patch-ab                                 |   13 -
 databases/pgadmin3/patches/patch-ac                                 |   13 -
 databases/pgadmin3/patches/patch-acinclude.m4                       |   17 +
 databases/pgadmin3/patches/patch-ad                                 |   10 -
 databases/pgadmin3/patches/patch-configure                          |   18 +
 databases/pgadmin3/patches/patch-pgadmin_gqb_gqbView.cpp            |   15 +
 databases/pgadmin3/patches/patch-xtra_pgscript_file_test_execute.sh |   15 +
 12 files changed, 375 insertions(+), 397 deletions(-)

diffs (truncated from 927 to 300 lines):

diff -r 5925ca6098b6 -r 7bcee0b34fd3 databases/pgadmin3/Makefile
--- a/databases/pgadmin3/Makefile       Sat Jul 20 05:07:48 2013 +0000
+++ b/databases/pgadmin3/Makefile       Sat Jul 20 05:10:42 2013 +0000
@@ -1,21 +1,50 @@
-# $NetBSD: Makefile,v 1.38 2013/06/06 12:54:11 wiz Exp $
+# $NetBSD: Makefile,v 1.39 2013/07/20 05:10:42 richard Exp $
 
-DISTNAME=      pgadmin3-1.12.1
-PKGREVISION=   17
+DISTNAME=      pgadmin3-1.16.1
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=pgadmin3/release/v${PKGVERSION_NOREV}/src/}
 
 MAINTAINER=    joerg%NetBSD.org@localhost
 HOMEPAGE=      http://www.pgadmin.org/
 COMMENT=       Graphical PostgreSQL client and administration tool
+LICENSE=       postgresql-license
 
-PGSQL_VERSIONS_ACCEPTED=90 84
+USE_LANGUAGES=         c99 c++
+USE_TOOLS+=            automake autoreconf gmake msgfmt
+GNU_CONFIGURE=         yes
+
+PKG_OPTIONS_VAR=        PKG_OPTIONS.pgadmin3
+PKG_SUPPORTED_OPTIONS= pgadmin-db-designer doc
+PKG_SUGGESTED_OPTIONS= pgadmin-db-designer
+
+.include "../../mk/bsd.options.mk"
+
+PLIST_VARS=    doc
 
-USE_LANGUAGES=         c c++
-USE_TOOLS+=            gmake msgfmt
-GNU_CONFIGURE=         yes
+###
+### Database Designer support
+###
+.if !empty(PKG_OPTIONS:Mpgadmin-db-designer)
+CONFIGURE_ARGS+=        --enable-databasedesigner
+.endif
+
+.if !empty(PKG_OPTIONS:Mdoc)
+PLIST.doc=     yes
+PYTHON_FOR_BUILD_ONLY=yes
+.include "../../lang/python/pyversion.mk"
+BUILD_DEPENDS+=                ${PYPKGPREFIX}-sphinx>=1.0:../../textproc/py-sphinx
+.else
+CONFIGURE_ENV+=                ac_cv_path_SPHINX_BUILD=
+.endif
+
 CONFIGURE_ARGS+=       --with-wx=${BUILDLINK_PREFIX.wxGTK28}
+CONFIGURE_ARGS+=       --with-libxml2=${BUILDLINK_PREFIX.libxml2}
+CONFIGURE_ARGS+=       --with-libxslt=${BUILDLINK_PREFIX.libxslt}
 
+pre-configure:
+       cd ${WRKSRC} && autoreconf -vfi
+
+.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
 .include "../../textproc/libxml2/buildlink3.mk"
 .include "../../textproc/libxslt/buildlink3.mk"
 .include "../../x11/wxGTK28/buildlink3.mk"
diff -r 5925ca6098b6 -r 7bcee0b34fd3 databases/pgadmin3/PLIST
--- a/databases/pgadmin3/PLIST  Sat Jul 20 05:07:48 2013 +0000
+++ b/databases/pgadmin3/PLIST  Sat Jul 20 05:10:42 2013 +0000
@@ -1,22 +1,7 @@
-@comment $NetBSD: PLIST,v 1.8 2010/11/05 20:21:17 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2013/07/20 05:10:42 richard Exp $
 bin/pgadmin3
+bin/png2c
 share/pgadmin3/branding/branding.ini
-share/pgadmin3/docs/cs_CZ/appendices.html
-share/pgadmin3/docs/cs_CZ/backup.html
-share/pgadmin3/docs/cs_CZ/bugreport.html
-share/pgadmin3/docs/cs_CZ/commandline.html
-share/pgadmin3/docs/cs_CZ/connect-error.html
-share/pgadmin3/docs/cs_CZ/connect.html
-share/pgadmin3/docs/cs_CZ/control-server.html
-share/pgadmin3/docs/cs_CZ/debugger.html
-share/pgadmin3/docs/cs_CZ/default-xsl.html
-share/pgadmin3/docs/cs_CZ/editgrid.html
-share/pgadmin3/docs/cs_CZ/export.html
-share/pgadmin3/docs/cs_CZ/extend.html
-share/pgadmin3/docs/cs_CZ/gqb.html
-share/pgadmin3/docs/cs_CZ/grantwiz.html
-share/pgadmin3/docs/cs_CZ/gridopts.html
-share/pgadmin3/docs/cs_CZ/guruhints.html
 share/pgadmin3/docs/cs_CZ/hints/autovacuum.html
 share/pgadmin3/docs/cs_CZ/hints/conn-hba.html
 share/pgadmin3/docs/cs_CZ/hints/conn-ident.html
@@ -31,93 +16,7 @@
 share/pgadmin3/docs/cs_CZ/hints/saving-passwords.html
 share/pgadmin3/docs/cs_CZ/hints/vacuum.html
 share/pgadmin3/docs/cs_CZ/hints/view-without-pk.html
-share/pgadmin3/docs/cs_CZ/images/backup.png
-share/pgadmin3/docs/cs_CZ/images/debugger.png
-share/pgadmin3/docs/cs_CZ/images/editgrid.png
-share/pgadmin3/docs/cs_CZ/images/export.png
-share/pgadmin3/docs/cs_CZ/images/gqb.png
-share/pgadmin3/docs/cs_CZ/images/grantwiz.png
-share/pgadmin3/docs/cs_CZ/images/gridopt-filter.png
-share/pgadmin3/docs/cs_CZ/images/gridopt-sort.png
-share/pgadmin3/docs/cs_CZ/images/guru-connect.png
-share/pgadmin3/docs/cs_CZ/images/main.png
-share/pgadmin3/docs/cs_CZ/images/maintenance.png
-share/pgadmin3/docs/cs_CZ/images/manage-macros.png
-share/pgadmin3/docs/cs_CZ/images/no-hba.png
-share/pgadmin3/docs/cs_CZ/images/not-running.png
-share/pgadmin3/docs/cs_CZ/images/options-display.png
-share/pgadmin3/docs/cs_CZ/images/options-general.png
-share/pgadmin3/docs/cs_CZ/images/options-logging.png
-share/pgadmin3/docs/cs_CZ/images/options-pref.png
-share/pgadmin3/docs/cs_CZ/images/options-query.png
-share/pgadmin3/docs/cs_CZ/images/password.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-jobdetails.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-jobproperties.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-jobstats.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-scheduledetails1.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-scheduledetails2.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-scheduledetails3.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-scheduleproperties.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-stepdetails.png
-share/pgadmin3/docs/cs_CZ/images/pgagent-stepstats.png
-share/pgadmin3/docs/cs_CZ/images/query-analyze.png
-share/pgadmin3/docs/cs_CZ/images/query-connect.png
-share/pgadmin3/docs/cs_CZ/images/query.png
-share/pgadmin3/docs/cs_CZ/images/reporttool-html.png
-share/pgadmin3/docs/cs_CZ/images/reporttool-xml.png
-share/pgadmin3/docs/cs_CZ/images/restore.png
-share/pgadmin3/docs/cs_CZ/images/server.png
-share/pgadmin3/docs/cs_CZ/images/slony-create.png
-share/pgadmin3/docs/cs_CZ/images/slony-execute.png
-share/pgadmin3/docs/cs_CZ/images/slony-join.png
-share/pgadmin3/docs/cs_CZ/images/slony-listen.png
-share/pgadmin3/docs/cs_CZ/images/slony-overview.png
-share/pgadmin3/docs/cs_CZ/images/slony-path.png
-share/pgadmin3/docs/cs_CZ/images/slony-sequence.png
-share/pgadmin3/docs/cs_CZ/images/slony-set.png
-share/pgadmin3/docs/cs_CZ/images/slony-subscription.png
-share/pgadmin3/docs/cs_CZ/images/slony-table.png
-share/pgadmin3/docs/cs_CZ/images/slony-upgrade.png
-share/pgadmin3/docs/cs_CZ/images/status.png
-share/pgadmin3/docs/cs_CZ/index.html
-share/pgadmin3/docs/cs_CZ/kerberos.html
-share/pgadmin3/docs/cs_CZ/licence.html
-share/pgadmin3/docs/cs_CZ/macros.html
-share/pgadmin3/docs/cs_CZ/main.html
-share/pgadmin3/docs/cs_CZ/maintenance.html
-share/pgadmin3/docs/cs_CZ/openssl.html
-share/pgadmin3/docs/cs_CZ/options-tab1.html
-share/pgadmin3/docs/cs_CZ/options-tab2.html
-share/pgadmin3/docs/cs_CZ/options-tab3.html
-share/pgadmin3/docs/cs_CZ/options-tab4.html
-share/pgadmin3/docs/cs_CZ/options-tab5.html
-share/pgadmin3/docs/cs_CZ/options.html
-share/pgadmin3/docs/cs_CZ/password.html
 share/pgadmin3/docs/cs_CZ/pgadmin3.css
-share/pgadmin3/docs/cs_CZ/pgadmin3.hhc
-share/pgadmin3/docs/cs_CZ/pgadmin3.hhp
-share/pgadmin3/docs/cs_CZ/pgagent-install.html
-share/pgadmin3/docs/cs_CZ/pgagent-jobs.html
-share/pgadmin3/docs/cs_CZ/pgagent-schedules.html
-share/pgadmin3/docs/cs_CZ/pgagent-steps.html
-share/pgadmin3/docs/cs_CZ/pgagent.html
-share/pgadmin3/docs/cs_CZ/pgscript.html
-share/pgadmin3/docs/cs_CZ/query.html
-share/pgadmin3/docs/cs_CZ/reports.html
-share/pgadmin3/docs/cs_CZ/restore.html
-share/pgadmin3/docs/cs_CZ/sample-xml.html
-share/pgadmin3/docs/cs_CZ/slony-example.html
-share/pgadmin3/docs/cs_CZ/slony-execute.html
-share/pgadmin3/docs/cs_CZ/slony-functions.html
-share/pgadmin3/docs/cs_CZ/slony-install.html
-share/pgadmin3/docs/cs_CZ/slony-overview.html
-share/pgadmin3/docs/cs_CZ/slony-path.html
-share/pgadmin3/docs/cs_CZ/slony-set.html
-share/pgadmin3/docs/cs_CZ/slony.html
-share/pgadmin3/docs/cs_CZ/status.html
-share/pgadmin3/docs/cs_CZ/team.html
-share/pgadmin3/docs/cs_CZ/translation_team.html
-share/pgadmin3/docs/cs_CZ/using.html
 share/pgadmin3/docs/de_DE/hints/autovacuum.html
 share/pgadmin3/docs/de_DE/hints/conn-hba.html
 share/pgadmin3/docs/de_DE/hints/conn-ident.html
@@ -132,22 +31,184 @@
 share/pgadmin3/docs/de_DE/hints/saving-passwords.html
 share/pgadmin3/docs/de_DE/hints/vacuum.html
 share/pgadmin3/docs/de_DE/hints/view-without-pk.html
-share/pgadmin3/docs/en_US/appendices.html
-share/pgadmin3/docs/en_US/backup.html
-share/pgadmin3/docs/en_US/bugreport.html
-share/pgadmin3/docs/en_US/commandline.html
-share/pgadmin3/docs/en_US/connect-error.html
-share/pgadmin3/docs/en_US/connect.html
-share/pgadmin3/docs/en_US/control-server.html
-share/pgadmin3/docs/en_US/debugger.html
-share/pgadmin3/docs/en_US/default-xsl.html
-share/pgadmin3/docs/en_US/editgrid.html
-share/pgadmin3/docs/en_US/export.html
-share/pgadmin3/docs/en_US/extend.html
-share/pgadmin3/docs/en_US/gqb.html
-share/pgadmin3/docs/en_US/grantwiz.html
-share/pgadmin3/docs/en_US/gridopts.html
-share/pgadmin3/docs/en_US/guruhints.html
+share/pgadmin3/docs/de_DE/pgadmin3.css
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup-2.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup-3.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup-4.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/backup.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/debugger.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/editgrid.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/export.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/gqb.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/grantwiz.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/gridopt-filter.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/gridopt-sort.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/guru-connect.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/main.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/maintenance.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/manage-macros.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/no-hba.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/not-running.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-binary_paths.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-colours.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-database_designer.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-display.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-favourites.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-guru_hints.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-help_paths.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-history_file.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-logging.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-macros.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-properties.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-query_editor.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-query_file.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-results_grid.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-server_status.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-ui_miscellaneous.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options-user_interface.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/options.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/password.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-jobdetails.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-jobproperties.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-jobstats.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduledetails1.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduledetails2.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduledetails3.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-scheduleproperties.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-stepdetails.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/pgagent-stepstats.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/query-analyze.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/query-connect.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/query.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/reporttool-html.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/reporttool-xml.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore-2.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore-3.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore-4.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/restore.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/search.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/server.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-create.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-execute.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-join.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-listen.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-overview.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-path.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-sequence.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-set.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-subscription.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-table.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/slony-upgrade.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_images/status.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/ajax-loader.gif
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup-2.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup-3.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup-4.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/backup.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/basic.css
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/comment-bright.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/comment-close.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/comment.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/connect.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/debugger.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/default.css
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/doctools.js
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/down-pressed.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/down.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/editgrid.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/export.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/file.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/gqb.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/grantwiz.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/gridopt-filter.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/gridopt-sort.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/guru-connect.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/jquery.js
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/locks.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/logfile.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/main.png
+${PLIST.doc}share/pgadmin3/docs/en_US/_static/maintenance.png



Home | Main Index | Thread Index | Old Index