diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2004-10-29 09:06:05 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2004-10-29 09:06:05 +0000 |
| commit | 3add449a170be706377b66bee46af25633bc945c (patch) | |
| tree | 7415df14a37624ff0b24fd40bde079927a88c28a /databases/pgadmin3-12 | |
| parent | 975af646f278430e563b72219a2c3055b211eb1a (diff) | |
Diffstat (limited to 'databases/pgadmin3-12')
20 files changed, 0 insertions, 1182 deletions
diff --git a/databases/pgadmin3-12/Makefile b/databases/pgadmin3-12/Makefile deleted file mode 100644 index 6e7c6644c4bd..000000000000 --- a/databases/pgadmin3-12/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: pgadmin3 -# Date created: November 4, 2003 -# Whom: Max Khon -# -# $FreeBSD$ -# - -PORTNAME= pgadmin3 -PORTVERSION= 1.0.2 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_PGSQL} -MASTER_SITE_SUBDIR= pgadmin3/release/src - -MAINTAINER= fjoe@FreeBSD.org -COMMENT= PostgreSQL database design and management system - -LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} - -USE_REINPLACE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-wx=${X11BASE} -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - PTHREAD_LIBS="${PTHREAD_LIBS}" - -POSTGRESQL_PORT?= databases/postgresql7 - -post-patch: - @${FIND} ${WRKSRC}/src \( -name '*.cpp' -or -name '*.h' \) -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -e 's,wxNotifyEvent,wxCommandEvent,g' - -.include <bsd.port.pre.mk> - -.if defined(WITH_UNICODE) -.if ${OSVERSION} < 500000 -IGNORE= Systems prior to FreeBSD 5.0 currently out of support -.else -LIB_DEPENDS+= wx_gtk2u_stc-2.5.2:${PORTSDIR}/x11-toolkits/wxgtk2-unicode-contrib-devel -CONFIGURE_ARGS+=--with-wx-config=wxgtk2u-2.5-config -.endif -.else -LIB_DEPENDS+= wx_gtk2_stc-2.5.2:${PORTSDIR}/x11-toolkits/wxgtk2-contrib-devel -CONFIGURE_ARGS+=--with-wx-config=wxgtk2-2.5-config -.endif # WITH_UNICODE - -.include <bsd.port.post.mk> diff --git a/databases/pgadmin3-12/distinfo b/databases/pgadmin3-12/distinfo deleted file mode 100644 index 55610c932bb8..000000000000 --- a/databases/pgadmin3-12/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (pgadmin3-1.0.2.tar.gz) = 6f0c61d2d0736d057b80a319b8148fd2 -SIZE (pgadmin3-1.0.2.tar.gz) = 3321033 diff --git a/databases/pgadmin3-12/files/patch-configure b/databases/pgadmin3-12/files/patch-configure deleted file mode 100644 index 45fe8d0cd755..000000000000 --- a/databases/pgadmin3-12/files/patch-configure +++ /dev/null @@ -1,31 +0,0 @@ ---- configure.orig Fri Nov 28 17:36:36 2003 -+++ configure Mon Jun 28 01:33:07 2004 -@@ -5017,7 +5017,7 @@ - LIBS="$LIBS -lwx_gtk2d_stc-${WX_VERSION} -lwx_gtk2d_xrc-${WX_VERSION}" - LIBS="$LIBS $WX_NEW_LDFLAGS" - ;; -- *wx_gtk2u-*) -+ *wx_gtk2u*) - LIBS="$LIBS -lwx_gtk2u_stc-${WX_VERSION} -lwx_gtk2u_xrc-${WX_VERSION}" - LIBS="$LIBS $WX_NEW_LDFLAGS" - ;; -@@ -5033,13 +5033,18 @@ - LIBS="$LIBS -lwx_gtk_stc-${WX_VERSION} -lwx_gtk_xrc-${WX_VERSION}" - LIBS="$LIBS $WX_NEW_LDFLAGS" - ;; -+ *wx_gtk2*) -+ LIBS="$LIBS -lwx_gtk2_stc-${WX_VERSION} -lwx_gtk2_xrc-${WX_VERSION}" -+ LIBS="$LIBS $WX_NEW_LDFLAGS" -+ ;; - *) - ;; - esac - fi -+ LIBS="$LIBS $PTHREAD_LIBS" - - WX_NEW_CPPFLAGS=`${WX_CONFIG} --cxxflags` -- CPPFLAGS="$CPPFLAGS $WX_NEW_CPPFLAGS -I${WX_HOME}/include" -+ CPPFLAGS="$CPPFLAGS $WX_NEW_CPPFLAGS -I${WX_HOME}/include ${PTHREAD_CFLAGS}" - case "${host}" in - *-apple-darwin*) - CPPFLAGS="$CPPFLAGS -no-cpp-precomp -fno-rtti" diff --git a/databases/pgadmin3-12/files/patch-src-include-dlgForeignKey.h b/databases/pgadmin3-12/files/patch-src-include-dlgForeignKey.h deleted file mode 100644 index 5b0f93795398..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-dlgForeignKey.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/include/dlgForeignKey.h.orig Mon Jun 28 01:12:17 2004 -+++ src/include/dlgForeignKey.h Mon Jun 28 01:12:29 2004 -@@ -35,7 +35,7 @@ - - void OnChange(wxNotifyEvent &ev); - void OnCheckDeferrable(wxNotifyEvent &ev); -- void OnSelChangeCol(wxNotifyEvent &ev); -+ void OnSelChangeCol(wxListEvent &ev); - void OnSelChangeRef(wxNotifyEvent &ev); - void OnSelChangeRefCol(wxNotifyEvent &ev); - void OnAddRef(wxNotifyEvent &ev); diff --git a/databases/pgadmin3-12/files/patch-src-include-dlgFunction.h b/databases/pgadmin3-12/files/patch-src-include-dlgFunction.h deleted file mode 100644 index 519ae51d784d..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-dlgFunction.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/include/dlgFunction.h.orig Mon Jun 28 00:49:55 2004 -+++ src/include/dlgFunction.h Mon Jun 28 00:50:16 2004 -@@ -33,6 +33,7 @@ - pgFunction *function; - - void OnChange(wxNotifyEvent &ev); -+ void OnChangeStyled(wxStyledTextEvent &ev); - void OnSelChangeLanguage(wxNotifyEvent &ev); - void OnSelChangeArg(wxNotifyEvent &ev); - void OnSelChangeType(wxNotifyEvent &ev); diff --git a/databases/pgadmin3-12/files/patch-src-include-dlgRule.h b/databases/pgadmin3-12/files/patch-src-include-dlgRule.h deleted file mode 100644 index 95c28f0451ec..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-dlgRule.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/include/dlgRule.h.orig Mon Jun 28 00:58:04 2004 -+++ src/include/dlgRule.h Mon Jun 28 00:58:20 2004 -@@ -34,6 +34,7 @@ - wxString oldDefinition; - - void OnChange(wxNotifyEvent &ev); -+ void OnChangeStyled(wxStyledTextEvent &ev); - - bool didChange(); - diff --git a/databases/pgadmin3-12/files/patch-src-include-dlgTable.h b/databases/pgadmin3-12/files/patch-src-include-dlgTable.h deleted file mode 100644 index 357ba5424224..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-dlgTable.h +++ /dev/null @@ -1,31 +0,0 @@ ---- src/include/dlgTable.h.orig Mon Aug 11 17:36:55 2003 -+++ src/include/dlgTable.h Mon Jun 28 00:41:25 2004 -@@ -32,19 +32,19 @@ - pgSchema *schema; - pgTable *table; - -- void OnChange(wxNotifyEvent &ev); -+ void OnChange(wxCommandEvent &ev); - -- void OnAddTable(wxNotifyEvent &ev); -- void OnRemoveTable(wxNotifyEvent &ev); -- void OnSelChangeTable(wxListEvent &ev); -+ void OnAddTable(wxCommandEvent &ev); -+ void OnRemoveTable(wxCommandEvent &ev); -+ void OnSelChangeTable(wxCommandEvent &ev); - -- void OnAddCol(wxNotifyEvent &ev); -- void OnChangeCol(wxNotifyEvent &ev); -- void OnRemoveCol(wxNotifyEvent &ev); -+ void OnAddCol(wxCommandEvent &ev); -+ void OnChangeCol(wxCommandEvent &ev); -+ void OnRemoveCol(wxCommandEvent &ev); - void OnSelChangeCol(wxListEvent &ev); - -- void OnAddConstr(wxNotifyEvent &ev); -- void OnRemoveConstr(wxNotifyEvent &ev); -+ void OnAddConstr(wxCommandEvent &ev); -+ void OnRemoveConstr(wxCommandEvent &ev); - void OnSelChangeConstr(wxListEvent &ev); - - void FillConstraint(); diff --git a/databases/pgadmin3-12/files/patch-src-include-dlgView.h b/databases/pgadmin3-12/files/patch-src-include-dlgView.h deleted file mode 100644 index 8d77181ae8f1..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-dlgView.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/include/dlgView.h.orig Mon Jun 28 00:53:54 2004 -+++ src/include/dlgView.h Mon Jun 28 00:54:12 2004 -@@ -34,6 +34,7 @@ - wxString oldDefinition; - - void OnChange(wxNotifyEvent &ev); -+ void OnChangeStyled(wxStyledTextEvent &ev); - - ctlSQLBox *sqlBox; - diff --git a/databases/pgadmin3-12/files/patch-src-include-frmQuery.h b/databases/pgadmin3-12/files/patch-src-include-frmQuery.h deleted file mode 100644 index 1c9862ea2e0f..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-frmQuery.h +++ /dev/null @@ -1,11 +0,0 @@ ---- src/include/frmQuery.h.orig Mon Aug 4 04:39:32 2003 -+++ src/include/frmQuery.h Mon Jun 28 00:41:25 2004 -@@ -48,7 +48,7 @@ - void OnSave(wxCommandEvent& event); - void OnSaveAs(wxCommandEvent& event); - void OnExport(wxCommandEvent& event); -- void OnChange(wxNotifyEvent& event); -+ void OnChange(wxStyledTextEvent& event); - void OnExit(wxCommandEvent& event); - void OnRecent(wxCommandEvent& event); - void OnCut(wxCommandEvent& event); diff --git a/databases/pgadmin3-12/files/patch-src-include-frmStatus.h b/databases/pgadmin3-12/files/patch-src-include-frmStatus.h deleted file mode 100644 index dc7df8db2fd2..000000000000 --- a/databases/pgadmin3-12/files/patch-src-include-frmStatus.h +++ /dev/null @@ -1,12 +0,0 @@ ---- src/include/frmStatus.h.orig Mon Jun 28 01:16:59 2004 -+++ src/include/frmStatus.h Mon Jun 28 01:21:48 2004 -@@ -35,7 +35,9 @@ - void OnHelp(wxCommandEvent& ev); - void OnClose(wxCommandEvent &event); - void OnRefresh(wxCommandEvent &event); -+ void OnRefreshTimer(wxTimerEvent &event); - void OnRateChange(wxCommandEvent &event); -+ void OnRateChangeSpin(wxSpinEvent &event); - frmMain *mainForm; - pgConn *connection; - long backend_pid; diff --git a/databases/pgadmin3-12/files/patch-src-ui-dlgForeignKey.cpp b/databases/pgadmin3-12/files/patch-src-ui-dlgForeignKey.cpp deleted file mode 100644 index 65acd54c72a4..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-dlgForeignKey.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- src/ui/dlgForeignKey.cpp.orig Mon Jun 28 01:12:47 2004 -+++ src/ui/dlgForeignKey.cpp Mon Jun 28 01:13:06 2004 -@@ -87,7 +87,7 @@ - } - - --void dlgForeignKey::OnSelChangeCol(wxNotifyEvent &ev) -+void dlgForeignKey::OnSelChangeCol(wxListEvent &ev) - { - btnRemoveRef->Enable(); - } diff --git a/databases/pgadmin3-12/files/patch-src-ui-dlgFunction.cpp b/databases/pgadmin3-12/files/patch-src-ui-dlgFunction.cpp deleted file mode 100644 index 68cf8f7178b3..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-dlgFunction.cpp +++ /dev/null @@ -1,23 +0,0 @@ ---- src/ui/dlgFunction.cpp.orig Mon Jun 28 00:48:47 2004 -+++ src/ui/dlgFunction.cpp Mon Jun 28 00:49:42 2004 -@@ -61,7 +61,7 @@ - EVT_CHECKBOX(XRCID("chkSecureDefiner"), dlgFunction::OnChange) - EVT_TEXT(XRCID("txtObjectFile"), dlgFunction::OnChange) - EVT_TEXT(XRCID("txtLinkSymbol"), dlgFunction::OnChange) -- EVT_STC_MODIFIED(CTL_SQLBOX, dlgFunction::OnChange) -+ EVT_STC_MODIFIED(CTL_SQLBOX, dlgFunction::OnChangeStyled) - - EVT_TEXT(XRCID("cbReturntype"), dlgFunction::OnChange) - EVT_TEXT(XRCID("cbDatatype"), dlgFunction::OnSelChangeType) -@@ -251,6 +251,11 @@ - } - } - -+ -+void dlgFunction::OnChangeStyled(wxStyledTextEvent &ev) -+{ -+ OnChange(ev); -+} - - void dlgFunction::ReplaceSizer(wxWindow *w, bool isC, int border) - { diff --git a/databases/pgadmin3-12/files/patch-src-ui-dlgRule.cpp b/databases/pgadmin3-12/files/patch-src-ui-dlgRule.cpp deleted file mode 100644 index 15f7d79c8e4b..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-dlgRule.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- src/ui/dlgRule.cpp.orig Mon Jun 28 00:57:12 2004 -+++ src/ui/dlgRule.cpp Mon Jun 28 00:57:52 2004 -@@ -47,7 +47,7 @@ - EVT_CHECKBOX(XRCID("chkDelete"), dlgRule::OnChange) - EVT_CHECKBOX(XRCID("chkDoInstead"), dlgRule::OnChange) - EVT_RADIOBOX(XRCID("rbxEvent"), dlgRule::OnChange) -- EVT_STC_MODIFIED(CTL_SQLBOX, dlgRule::OnChange) -+ EVT_STC_MODIFIED(CTL_SQLBOX, dlgRule::OnChangeStyled) - END_EVENT_TABLE(); - - -@@ -166,6 +166,12 @@ - - EnableOK(enable); - } -+} -+ -+ -+void dlgRule::OnChangeStyled(wxStyledTextEvent &ev) -+{ -+ OnChange(ev); - } - - diff --git a/databases/pgadmin3-12/files/patch-src-ui-dlgTable.cpp b/databases/pgadmin3-12/files/patch-src-ui-dlgTable.cpp deleted file mode 100644 index 218edf5e2e24..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-dlgTable.cpp +++ /dev/null @@ -1,114 +0,0 @@ ---- src/ui/dlgTable.cpp.orig Tue Oct 7 17:20:42 2003 -+++ src/ui/dlgTable.cpp Mon Jun 28 00:41:25 2004 -@@ -491,7 +491,7 @@ - } - - --void dlgTable::OnChange(wxNotifyEvent &ev) -+void dlgTable::OnChange(wxCommandEvent &ev) - { - if (table) - { -@@ -520,7 +520,7 @@ - } - - --void dlgTable::OnAddTable(wxNotifyEvent &ev) -+void dlgTable::OnAddTable(wxCommandEvent &ev) - { - int sel=cbTables->GetSelection(); - if (sel >= 0) -@@ -552,7 +552,7 @@ - } - - --void dlgTable::OnRemoveTable(wxNotifyEvent &ev) -+void dlgTable::OnRemoveTable(wxCommandEvent &ev) - { - int sel=lbTables->GetSelection(); - if (sel >= 0) -@@ -576,13 +576,13 @@ - } - - --void dlgTable::OnSelChangeTable(wxListEvent &ev) -+void dlgTable::OnSelChangeTable(wxCommandEvent &ev) - { - btnRemoveTable->Enable(); - } - - --void dlgTable::OnChangeCol(wxNotifyEvent &ev) -+void dlgTable::OnChangeCol(wxCommandEvent &ev) - { - long pos=GetListSelected(lstColumns); - pgColumn *column=(pgColumn*) StrToLong(GetListText(lstColumns, pos, 4)); -@@ -596,30 +596,30 @@ - lstColumns->SetItem(pos, 1, col.GetDefinition()); - lstColumns->SetItem(pos, 3, col.GetSql()); - } -- wxNotifyEvent event; -+ wxCommandEvent event; - OnChange(event); - } - - --void dlgTable::OnAddCol(wxNotifyEvent &ev) -+void dlgTable::OnAddCol(wxCommandEvent &ev) - { - dlgColumn col(mainForm, NULL, table); - col.CenterOnParent(); - col.SetConnection(connection); - if (col.Go(true) >= 0) - AppendListItem(lstColumns, col.GetName(), col.GetDefinition(), PGICON_COLUMN); -- wxNotifyEvent event; -+ wxCommandEvent event; - OnChange(event); - } - - --void dlgTable::OnRemoveCol(wxNotifyEvent &ev) -+void dlgTable::OnRemoveCol(wxCommandEvent &ev) - { - lstColumns->DeleteItem(GetListSelected(lstColumns)); - - btnRemoveCol->Disable(); - -- wxNotifyEvent event; -+ wxCommandEvent event; - OnChange(event); - } - -@@ -634,7 +634,7 @@ - } - - --void dlgTable::OnAddConstr(wxNotifyEvent &ev) -+void dlgTable::OnAddConstr(wxCommandEvent &ev) - { - int sel=cbConstrType->GetSelection(); - if (hasPK) -@@ -687,12 +687,12 @@ - break; - } - } -- wxNotifyEvent event; -+ wxCommandEvent event; - OnChange(event); - } - - --void dlgTable::OnRemoveConstr(wxNotifyEvent &ev) -+void dlgTable::OnRemoveConstr(wxCommandEvent &ev) - { - int pos=GetListSelected(lstConstraints); - if (pos < 0) -@@ -711,7 +711,7 @@ - - lstConstraints->DeleteItem(pos); - btnRemoveConstr->Disable(); -- wxNotifyEvent event; -+ wxCommandEvent event; - OnChange(event); - } - diff --git a/databases/pgadmin3-12/files/patch-src-ui-dlgView.cpp b/databases/pgadmin3-12/files/patch-src-ui-dlgView.cpp deleted file mode 100644 index 5d7ac2be643e..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-dlgView.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- src/ui/dlgView.cpp.orig Mon Jun 28 00:52:41 2004 -+++ src/ui/dlgView.cpp Mon Jun 28 00:53:38 2004 -@@ -36,7 +36,7 @@ - BEGIN_EVENT_TABLE(dlgView, dlgSecurityProperty) - EVT_TEXT(XRCID("txtName"), dlgView::OnChange) - EVT_TEXT(XRCID("txtComment"), dlgView::OnChange) -- EVT_STC_MODIFIED(CTL_SQLBOX, dlgView::OnChange) -+ EVT_STC_MODIFIED(CTL_SQLBOX, dlgView::OnChangeStyled) - END_EVENT_TABLE(); - - -@@ -117,6 +117,12 @@ - - EnableOK(enable); - } -+} -+ -+ -+void dlgView::OnChangeStyled(wxStyledTextEvent &ev) -+{ -+ OnChange(ev); - } - - diff --git a/databases/pgadmin3-12/files/patch-src-ui-events.cpp b/databases/pgadmin3-12/files/patch-src-ui-events.cpp deleted file mode 100644 index 1797bf938f3e..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-events.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/ui/events.cpp.orig Mon Jun 28 01:22:51 2004 -+++ src/ui/events.cpp Mon Jun 28 01:22:38 2004 -@@ -18,6 +18,7 @@ - #include <wx/imaglist.h> - #include <wx/tipdlg.h> - #include <wx/stc/stc.h> -+#include <wx/spinctrl.h> - - // App headers - #include "pgAdmin3.h" diff --git a/databases/pgadmin3-12/files/patch-src-ui-frmQuery.cpp b/databases/pgadmin3-12/files/patch-src-ui-frmQuery.cpp deleted file mode 100644 index e4f290a8db03..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-frmQuery.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- src/ui/frmQuery.cpp.orig Mon Sep 8 17:36:08 2003 -+++ src/ui/frmQuery.cpp Mon Jun 28 00:41:25 2004 -@@ -587,7 +587,7 @@ - } - - --void frmQuery::OnChange(wxNotifyEvent& event) -+void frmQuery::OnChange(wxStyledTextEvent& event) - { - if (!changed) - { diff --git a/databases/pgadmin3-12/files/patch-src-ui-frmStatus.cpp b/databases/pgadmin3-12/files/patch-src-ui-frmStatus.cpp deleted file mode 100644 index 2704d96408ac..000000000000 --- a/databases/pgadmin3-12/files/patch-src-ui-frmStatus.cpp +++ /dev/null @@ -1,39 +0,0 @@ ---- src/ui/frmStatus.cpp.orig Mon Jun 28 01:15:25 2004 -+++ src/ui/frmStatus.cpp Mon Jun 28 01:25:17 2004 -@@ -26,9 +26,9 @@ - BEGIN_EVENT_TABLE(frmStatus, wxDialog) - EVT_BUTTON(XRCID("btnRefresh"), frmStatus::OnRefresh) - EVT_BUTTON (XRCID("btnClose"), frmStatus::OnClose) -- EVT_SPINCTRL(XRCID("spnRefreshRate"), frmStatus::OnRateChange) -+ EVT_SPINCTRL(XRCID("spnRefreshRate"), frmStatus::OnRateChangeSpin) - EVT_TEXT(XRCID("spnRefreshRate"), frmStatus::OnRateChange) -- EVT_TIMER(TIMER_ID, frmStatus::OnRefresh) -+ EVT_TIMER(TIMER_ID, frmStatus::OnRefreshTimer) - END_EVENT_TABLE(); - - -@@ -112,6 +112,11 @@ - } - - -+void frmStatus::OnRateChangeSpin(wxSpinEvent &event) -+{ -+ OnRateChangeSpin(event); -+} -+ - - void frmStatus::OnRefresh(wxCommandEvent &event) - { -@@ -158,4 +163,12 @@ - dataSet->MoveNext(); - } - } -+} -+ -+ -+void frmStatus::OnRefreshTimer(wxTimerEvent &event) -+{ -+ wxCommandEvent nullEvent; -+ -+ OnRefresh(nullEvent); - } diff --git a/databases/pgadmin3-12/pkg-descr b/databases/pgadmin3-12/pkg-descr deleted file mode 100644 index 7114828f836a..000000000000 --- a/databases/pgadmin3-12/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -pgAdmin III is a comprehensive PostgreSQL database design and management -system for *nix and Windows systems. It is freely available under the -terms of the Artistic Licence and may be redistributed provided the terms -of the licence are adhered to. The project is managed by the pgAdmin -Development Team. - -WWW: http://www.pgadmin.org/ diff --git a/databases/pgadmin3-12/pkg-plist b/databases/pgadmin3-12/pkg-plist deleted file mode 100644 index a73023ce3ae6..000000000000 --- a/databases/pgadmin3-12/pkg-plist +++ /dev/null @@ -1,745 +0,0 @@ -bin/pgadmin3 -share/pgadmin3/docs/en_US/bugreport.html -share/pgadmin3/docs/en_US/connect.html -share/pgadmin3/docs/en_US/cvs.html -share/pgadmin3/docs/en_US/editgrid.html -share/pgadmin3/docs/en_US/export.html -share/pgadmin3/docs/en_US/freebsd_notes.html -share/pgadmin3/docs/en_US/images/connect.jpg -share/pgadmin3/docs/en_US/images/editgrid.jpg -share/pgadmin3/docs/en_US/images/export.jpg -share/pgadmin3/docs/en_US/images/main.jpg -share/pgadmin3/docs/en_US/images/options-tab1.jpg -share/pgadmin3/docs/en_US/images/options-tab2.jpg -share/pgadmin3/docs/en_US/images/options-tab3.jpg -share/pgadmin3/docs/en_US/images/password.jpg -share/pgadmin3/docs/en_US/images/query.jpg -share/pgadmin3/docs/en_US/images/status.jpg -share/pgadmin3/docs/en_US/ime_setting.html -share/pgadmin3/docs/en_US/index.html -share/pgadmin3/docs/en_US/licence.html -share/pgadmin3/docs/en_US/locating_resources.html -share/pgadmin3/docs/en_US/main.html -share/pgadmin3/docs/en_US/maintenance.html -share/pgadmin3/docs/en_US/options-tab1.html -share/pgadmin3/docs/en_US/options-tab2.html -share/pgadmin3/docs/en_US/options-tab3.html -share/pgadmin3/docs/en_US/options.html -share/pgadmin3/docs/en_US/password.html -share/pgadmin3/docs/en_US/pg/LEGALNOTICE.html -share/pgadmin3/docs/en_US/pg/admin.html -share/pgadmin3/docs/en_US/pg/app-clusterdb.html -share/pgadmin3/docs/en_US/pg/app-createdb.html -share/pgadmin3/docs/en_US/pg/app-createlang.html -share/pgadmin3/docs/en_US/pg/app-createuser.html -share/pgadmin3/docs/en_US/pg/app-dropdb.html -share/pgadmin3/docs/en_US/pg/app-droplang.html -share/pgadmin3/docs/en_US/pg/app-dropuser.html -share/pgadmin3/docs/en_US/pg/app-ecpg.html -share/pgadmin3/docs/en_US/pg/app-initdb.html -share/pgadmin3/docs/en_US/pg/app-initlocation.html -share/pgadmin3/docs/en_US/pg/app-ipcclean.html -share/pgadmin3/docs/en_US/pg/app-pg-ctl.html -share/pgadmin3/docs/en_US/pg/app-pg-dumpall.html -share/pgadmin3/docs/en_US/pg/app-pgconfig.html -share/pgadmin3/docs/en_US/pg/app-pgcontroldata.html -share/pgadmin3/docs/en_US/pg/app-pgdump.html -share/pgadmin3/docs/en_US/pg/app-pgresetxlog.html -share/pgadmin3/docs/en_US/pg/app-pgrestore.html -share/pgadmin3/docs/en_US/pg/app-pgtclsh.html -share/pgadmin3/docs/en_US/pg/app-pgtksh.html -share/pgadmin3/docs/en_US/pg/app-postgres.html -share/pgadmin3/docs/en_US/pg/app-postmaster.html -share/pgadmin3/docs/en_US/pg/app-psql.html -share/pgadmin3/docs/en_US/pg/app-vacuumdb.html -share/pgadmin3/docs/en_US/pg/appendixes.html -share/pgadmin3/docs/en_US/pg/applevel-consistency.html -share/pgadmin3/docs/en_US/pg/arrays.html -share/pgadmin3/docs/en_US/pg/auth-methods.html -share/pgadmin3/docs/en_US/pg/backup-file.html -share/pgadmin3/docs/en_US/pg/backup.html -share/pgadmin3/docs/en_US/pg/biblio.html -share/pgadmin3/docs/en_US/pg/bki-commands.html -share/pgadmin3/docs/en_US/pg/bki-example.html -share/pgadmin3/docs/en_US/pg/bki.html -share/pgadmin3/docs/en_US/pg/bookindex.html -share/pgadmin3/docs/en_US/pg/bug-reporting.html -share/pgadmin3/docs/en_US/pg/catalog-pg-aggregate.html -share/pgadmin3/docs/en_US/pg/catalog-pg-am.html -share/pgadmin3/docs/en_US/pg/catalog-pg-amop.html -share/pgadmin3/docs/en_US/pg/catalog-pg-amproc.html -share/pgadmin3/docs/en_US/pg/catalog-pg-attrdef.html -share/pgadmin3/docs/en_US/pg/catalog-pg-attribute.html -share/pgadmin3/docs/en_US/pg/catalog-pg-cast.html -share/pgadmin3/docs/en_US/pg/catalog-pg-class.html -share/pgadmin3/docs/en_US/pg/catalog-pg-constraint.html -share/pgadmin3/docs/en_US/pg/catalog-pg-conversion.html -share/pgadmin3/docs/en_US/pg/catalog-pg-database.html -share/pgadmin3/docs/en_US/pg/catalog-pg-depend.html -share/pgadmin3/docs/en_US/pg/catalog-pg-description.html -share/pgadmin3/docs/en_US/pg/catalog-pg-group.html -share/pgadmin3/docs/en_US/pg/catalog-pg-index.html -share/pgadmin3/docs/en_US/pg/catalog-pg-inherits.html -share/pgadmin3/docs/en_US/pg/catalog-pg-language.html -share/pgadmin3/docs/en_US/pg/catalog-pg-largeobject.html -share/pgadmin3/docs/en_US/pg/catalog-pg-listener.html -share/pgadmin3/docs/en_US/pg/catalog-pg-namespace.html -share/pgadmin3/docs/en_US/pg/catalog-pg-opclass.html -share/pgadmin3/docs/en_US/pg/catalog-pg-operator.html -share/pgadmin3/docs/en_US/pg/catalog-pg-proc.html -share/pgadmin3/docs/en_US/pg/catalog-pg-rewrite.html -share/pgadmin3/docs/en_US/pg/catalog-pg-shadow.html -share/pgadmin3/docs/en_US/pg/catalog-pg-statistic.html -share/pgadmin3/docs/en_US/pg/catalog-pg-trigger.html -share/pgadmin3/docs/en_US/pg/catalog-pg-type.html -share/pgadmin3/docs/en_US/pg/catalogs.html -share/pgadmin3/docs/en_US/pg/charset.html -share/pgadmin3/docs/en_US/pg/client-authentication-problems.html -share/pgadmin3/docs/en_US/pg/client-authentication.html -share/pgadmin3/docs/en_US/pg/client-interfaces.html -share/pgadmin3/docs/en_US/pg/connect-estab.html -share/pgadmin3/docs/en_US/pg/creating-cluster.html -share/pgadmin3/docs/en_US/pg/cvs-tree.html -share/pgadmin3/docs/en_US/pg/cvs.html -share/pgadmin3/docs/en_US/pg/cvsup.html -share/pgadmin3/docs/en_US/pg/datatype-binary.html -share/pgadmin3/docs/en_US/pg/datatype-bit.html -share/pgadmin3/docs/en_US/pg/datatype-boolean.html -share/pgadmin3/docs/en_US/pg/datatype-character.html -share/pgadmin3/docs/en_US/pg/datatype-datetime.html -share/pgadmin3/docs/en_US/pg/datatype-geometric.html -share/pgadmin3/docs/en_US/pg/datatype-money.html -share/pgadmin3/docs/en_US/pg/datatype-net-types.html -share/pgadmin3/docs/en_US/pg/datatype-oid.html -share/pgadmin3/docs/en_US/pg/datatype-pseudo.html -share/pgadmin3/docs/en_US/pg/datatype.html -share/pgadmin3/docs/en_US/pg/datetime-appendix.html -share/pgadmin3/docs/en_US/pg/datetime-keywords.html -share/pgadmin3/docs/en_US/pg/datetime-units-history.html -share/pgadmin3/docs/en_US/pg/ddl-alter.html -share/pgadmin3/docs/en_US/pg/ddl-constraints.html -share/pgadmin3/docs/en_US/pg/ddl-default.html -share/pgadmin3/docs/en_US/pg/ddl-depend.html -share/pgadmin3/docs/en_US/pg/ddl-inherit.html -share/pgadmin3/docs/en_US/pg/ddl-others.html -share/pgadmin3/docs/en_US/pg/ddl-priv.html -share/pgadmin3/docs/en_US/pg/ddl-schemas.html -share/pgadmin3/docs/en_US/pg/ddl-system-columns.html -share/pgadmin3/docs/en_US/pg/ddl.html -share/pgadmin3/docs/en_US/pg/disk-full.html -share/pgadmin3/docs/en_US/pg/diskusage.html -share/pgadmin3/docs/en_US/pg/dml-delete.html -share/pgadmin3/docs/en_US/pg/dml-update.html -share/pgadmin3/docs/en_US/pg/dml.html -share/pgadmin3/docs/en_US/pg/docguide-authoring.html -share/pgadmin3/docs/en_US/pg/docguide-build.html -share/pgadmin3/docs/en_US/pg/docguide-style.html -share/pgadmin3/docs/en_US/pg/docguide-toolsets.html -share/pgadmin3/docs/en_US/pg/docguide.html -share/pgadmin3/docs/en_US/pg/ecpg-commands.html -share/pgadmin3/docs/en_US/pg/ecpg-connect.html -share/pgadmin3/docs/en_US/pg/ecpg-descriptors.html -share/pgadmin3/docs/en_US/pg/ecpg-develop.html -share/pgadmin3/docs/en_US/pg/ecpg-disconnect.html -share/pgadmin3/docs/en_US/pg/ecpg-dynamic.html -share/pgadmin3/docs/en_US/pg/ecpg-errors.html -share/pgadmin3/docs/en_US/pg/ecpg-include.html -share/pgadmin3/docs/en_US/pg/ecpg-library.html -share/pgadmin3/docs/en_US/pg/ecpg-process.html -share/pgadmin3/docs/en_US/pg/ecpg-set-connection.html -share/pgadmin3/docs/en_US/pg/ecpg-variables.html -share/pgadmin3/docs/en_US/pg/ecpg.html -share/pgadmin3/docs/en_US/pg/errcodes-appendix.html -share/pgadmin3/docs/en_US/pg/error-message-reporting.html -share/pgadmin3/docs/en_US/pg/error-style-guide.html -share/pgadmin3/docs/en_US/pg/examples.html -share/pgadmin3/docs/en_US/pg/executor.html -share/pgadmin3/docs/en_US/pg/explicit-joins.html -share/pgadmin3/docs/en_US/pg/explicit-locking.html -share/pgadmin3/docs/en_US/pg/extend-type-system.html -share/pgadmin3/docs/en_US/pg/extend.html -share/pgadmin3/docs/en_US/pg/extensibility.html -share/pgadmin3/docs/en_US/pg/features.html -share/pgadmin3/docs/en_US/pg/functions-aggregate.html -share/pgadmin3/docs/en_US/pg/functions-array.html -share/pgadmin3/docs/en_US/pg/functions-binarystring.html -share/pgadmin3/docs/en_US/pg/functions-comparison.html -share/pgadmin3/docs/en_US/pg/functions-comparisons.html -share/pgadmin3/docs/en_US/pg/functions-conditional.html -share/pgadmin3/docs/en_US/pg/functions-datetime.html -share/pgadmin3/docs/en_US/pg/functions-formatting.html -share/pgadmin3/docs/en_US/pg/functions-geometry.html -share/pgadmin3/docs/en_US/pg/functions-matching.html -share/pgadmin3/docs/en_US/pg/functions-math.html -share/pgadmin3/docs/en_US/pg/functions-misc.html -share/pgadmin3/docs/en_US/pg/functions-net.html -share/pgadmin3/docs/en_US/pg/functions-sequence.html -share/pgadmin3/docs/en_US/pg/functions-string.html -share/pgadmin3/docs/en_US/pg/functions-subquery.html -share/pgadmin3/docs/en_US/pg/functions.html -share/pgadmin3/docs/en_US/pg/geqo-biblio.html -share/pgadmin3/docs/en_US/pg/geqo-intro2.html -share/pgadmin3/docs/en_US/pg/geqo-pg-intro.html -share/pgadmin3/docs/en_US/pg/geqo.html -share/pgadmin3/docs/en_US/pg/gist.html -share/pgadmin3/docs/en_US/pg/groups.html -share/pgadmin3/docs/en_US/pg/history.html -share/pgadmin3/docs/en_US/pg/implementation.html -share/pgadmin3/docs/en_US/pg/index.html -share/pgadmin3/docs/en_US/pg/indexcost.html -share/pgadmin3/docs/en_US/pg/indexes-examine.html -share/pgadmin3/docs/en_US/pg/indexes-expressional.html -share/pgadmin3/docs/en_US/pg/indexes-multicolumn.html -share/pgadmin3/docs/en_US/pg/indexes-opclass.html -share/pgadmin3/docs/en_US/pg/indexes-partial.html -share/pgadmin3/docs/en_US/pg/indexes-types.html -share/pgadmin3/docs/en_US/pg/indexes-unique.html -share/pgadmin3/docs/en_US/pg/indexes.html -share/pgadmin3/docs/en_US/pg/information-schema.html -share/pgadmin3/docs/en_US/pg/infoschema-applicable-roles.html -share/pgadmin3/docs/en_US/pg/infoschema-check-constraints.html -share/pgadmin3/docs/en_US/pg/infoschema-column-domain-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-column-privileges.html -share/pgadmin3/docs/en_US/pg/infoschema-column-udt-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-columns.html -share/pgadmin3/docs/en_US/pg/infoschema-constraint-column-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-constraint-table-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-data-type-privileges.html -share/pgadmin3/docs/en_US/pg/infoschema-datatypes.html -share/pgadmin3/docs/en_US/pg/infoschema-domain-constraints.html -share/pgadmin3/docs/en_US/pg/infoschema-domain-udt-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-domains.html -share/pgadmin3/docs/en_US/pg/infoschema-element-types.html -share/pgadmin3/docs/en_US/pg/infoschema-enabled-roles.html -share/pgadmin3/docs/en_US/pg/infoschema-information-schema-catalog-name.html -share/pgadmin3/docs/en_US/pg/infoschema-key-column-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-parameters.html -share/pgadmin3/docs/en_US/pg/infoschema-referential-constraints.html -share/pgadmin3/docs/en_US/pg/infoschema-role-column-grants.html -share/pgadmin3/docs/en_US/pg/infoschema-role-routine-grants.html -share/pgadmin3/docs/en_US/pg/infoschema-role-table-grants.html -share/pgadmin3/docs/en_US/pg/infoschema-role-usage-grants.html -share/pgadmin3/docs/en_US/pg/infoschema-routine-privileges.html -share/pgadmin3/docs/en_US/pg/infoschema-routines.html -share/pgadmin3/docs/en_US/pg/infoschema-schemata.html -share/pgadmin3/docs/en_US/pg/infoschema-sql-features.html -share/pgadmin3/docs/en_US/pg/infoschema-sql-implementation-info.html -share/pgadmin3/docs/en_US/pg/infoschema-sql-languages.html -share/pgadmin3/docs/en_US/pg/infoschema-sql-packages.html -share/pgadmin3/docs/en_US/pg/infoschema-sql-sizing-profiles.html -share/pgadmin3/docs/en_US/pg/infoschema-sql-sizing.html -share/pgadmin3/docs/en_US/pg/infoschema-table-constraints.html -share/pgadmin3/docs/en_US/pg/infoschema-table-privileges.html -share/pgadmin3/docs/en_US/pg/infoschema-tables.html -share/pgadmin3/docs/en_US/pg/infoschema-triggers.html -share/pgadmin3/docs/en_US/pg/infoschema-usage-privileges.html -share/pgadmin3/docs/en_US/pg/infoschema-view-column-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-view-table-usage.html -share/pgadmin3/docs/en_US/pg/infoschema-views.html -share/pgadmin3/docs/en_US/pg/install-getsource.html -share/pgadmin3/docs/en_US/pg/install-post.html -share/pgadmin3/docs/en_US/pg/install-procedure.html -share/pgadmin3/docs/en_US/pg/install-requirements.html -share/pgadmin3/docs/en_US/pg/install-upgrading.html -share/pgadmin3/docs/en_US/pg/install-win32.html -share/pgadmin3/docs/en_US/pg/installation.html -share/pgadmin3/docs/en_US/pg/internals.html -share/pgadmin3/docs/en_US/pg/jdbc-binary-data.html -share/pgadmin3/docs/en_US/pg/jdbc-callproc.html -share/pgadmin3/docs/en_US/pg/jdbc-datasource.html -share/pgadmin3/docs/en_US/pg/jdbc-ddl.html -share/pgadmin3/docs/en_US/pg/jdbc-ext.html -share/pgadmin3/docs/en_US/pg/jdbc-query.html -share/pgadmin3/docs/en_US/pg/jdbc-reading.html -share/pgadmin3/docs/en_US/pg/jdbc-thread.html -share/pgadmin3/docs/en_US/pg/jdbc-update.html -share/pgadmin3/docs/en_US/pg/jdbc-use.html -share/pgadmin3/docs/en_US/pg/jdbc.html -share/pgadmin3/docs/en_US/pg/kernel-resources.html -share/pgadmin3/docs/en_US/pg/largeobjects.html -share/pgadmin3/docs/en_US/pg/libpgtcl-loading.html -share/pgadmin3/docs/en_US/pg/libpgtcl-ref.html -share/pgadmin3/docs/en_US/pg/libpq-async.html -share/pgadmin3/docs/en_US/pg/libpq-build.html -share/pgadmin3/docs/en_US/pg/libpq-control.html -share/pgadmin3/docs/en_US/pg/libpq-copy.html -share/pgadmin3/docs/en_US/pg/libpq-envars.html -share/pgadmin3/docs/en_US/pg/libpq-example.html -share/pgadmin3/docs/en_US/pg/libpq-exec.html -share/pgadmin3/docs/en_US/pg/libpq-fastpath.html -share/pgadmin3/docs/en_US/pg/libpq-notice-processing.html -share/pgadmin3/docs/en_US/pg/libpq-notify.html -share/pgadmin3/docs/en_US/pg/libpq-pgpass.html -share/pgadmin3/docs/en_US/pg/libpq-status.html -share/pgadmin3/docs/en_US/pg/libpq-threading.html -share/pgadmin3/docs/en_US/pg/libpq.html -share/pgadmin3/docs/en_US/pg/limitations.html -share/pgadmin3/docs/en_US/pg/lo-examplesect.html -share/pgadmin3/docs/en_US/pg/lo-funcs.html -share/pgadmin3/docs/en_US/pg/lo-implementation.html -share/pgadmin3/docs/en_US/pg/lo-interfaces.html -share/pgadmin3/docs/en_US/pg/locking-indexes.html -share/pgadmin3/docs/en_US/pg/logfile-maintenance.html -share/pgadmin3/docs/en_US/pg/maintenance.html -share/pgadmin3/docs/en_US/pg/manage-ag-alternate-locs.html -share/pgadmin3/docs/en_US/pg/manage-ag-config.html -share/pgadmin3/docs/en_US/pg/manage-ag-createdb.html -share/pgadmin3/docs/en_US/pg/manage-ag-dropdb.html -share/pgadmin3/docs/en_US/pg/manage-ag-templatedbs.html -share/pgadmin3/docs/en_US/pg/managing-databases.html -share/pgadmin3/docs/en_US/pg/migration.html -share/pgadmin3/docs/en_US/pg/monitoring-locks.html -share/pgadmin3/docs/en_US/pg/monitoring-stats.html -share/pgadmin3/docs/en_US/pg/monitoring.html -share/pgadmin3/docs/en_US/pg/multibyte.html -share/pgadmin3/docs/en_US/pg/mvcc.html -share/pgadmin3/docs/en_US/pg/nls-programmer.html -share/pgadmin3/docs/en_US/pg/nls.html -share/pgadmin3/docs/en_US/pg/notation.html -share/pgadmin3/docs/en_US/pg/overview.html -share/pgadmin3/docs/en_US/pg/page.html -share/pgadmin3/docs/en_US/pg/parser-stage.html -share/pgadmin3/docs/en_US/pg/performance-tips.html -share/pgadmin3/docs/en_US/pg/perm-functions.html -share/pgadmin3/docs/en_US/pg/pgtcl-examplesect.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgconndefaults.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgconnect.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgdisconnect.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgexec.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgexecute.html -share/pgadmin3/docs/en_US/pg/pgtcl-pglisten.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgloclose.html -share/pgadmin3/docs/en_US/pg/pgtcl-pglocreat.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgloexport.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgloimport.html -share/pgadmin3/docs/en_US/pg/pgtcl-pglolseek.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgloopen.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgloread.html -share/pgadmin3/docs/en_US/pg/pgtcl-pglotell.html -share/pgadmin3/docs/en_US/pg/pgtcl-pglounlink.html -share/pgadmin3/docs/en_US/pg/pgtcl-pglowrite.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgon-connection-loss.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgresult.html -share/pgadmin3/docs/en_US/pg/pgtcl-pgselect.html -share/pgadmin3/docs/en_US/pg/pgtcl.html -share/pgadmin3/docs/en_US/pg/planner-optimizer.html -share/pgadmin3/docs/en_US/pg/planner-stats.html -share/pgadmin3/docs/en_US/pg/plhandler.html -share/pgadmin3/docs/en_US/pg/plperl-data.html -share/pgadmin3/docs/en_US/pg/plperl-database.html -share/pgadmin3/docs/en_US/pg/plperl-missing.html -share/pgadmin3/docs/en_US/pg/plperl-trusted.html -share/pgadmin3/docs/en_US/pg/plperl.html -share/pgadmin3/docs/en_US/pg/plpgsql-control-structures.html -share/pgadmin3/docs/en_US/pg/plpgsql-cursors.html -share/pgadmin3/docs/en_US/pg/plpgsql-declarations.html -share/pgadmin3/docs/en_US/pg/plpgsql-development-tips.html -share/pgadmin3/docs/en_US/pg/plpgsql-errors-and-messages.html -share/pgadmin3/docs/en_US/pg/plpgsql-expressions.html -share/pgadmin3/docs/en_US/pg/plpgsql-porting.html -share/pgadmin3/docs/en_US/pg/plpgsql-statements.html -share/pgadmin3/docs/en_US/pg/plpgsql-structure.html -share/pgadmin3/docs/en_US/pg/plpgsql-trigger.html -share/pgadmin3/docs/en_US/pg/plpgsql.html -share/pgadmin3/docs/en_US/pg/plpython-database.html -share/pgadmin3/docs/en_US/pg/plpython-trigger.html -share/pgadmin3/docs/en_US/pg/plpython.html -share/pgadmin3/docs/en_US/pg/pltcl-data.html -share/pgadmin3/docs/en_US/pg/pltcl-dbaccess.html -share/pgadmin3/docs/en_US/pg/pltcl-functions.html -share/pgadmin3/docs/en_US/pg/pltcl-global.html -share/pgadmin3/docs/en_US/pg/pltcl-procnames.html -share/pgadmin3/docs/en_US/pg/pltcl-trigger.html -share/pgadmin3/docs/en_US/pg/pltcl-unknown.html -share/pgadmin3/docs/en_US/pg/pltcl.html -share/pgadmin3/docs/en_US/pg/populate.html -share/pgadmin3/docs/en_US/pg/postmaster-shutdown.html -share/pgadmin3/docs/en_US/pg/postmaster-start.html -share/pgadmin3/docs/en_US/pg/preface.html -share/pgadmin3/docs/en_US/pg/privileges.html -share/pgadmin3/docs/en_US/pg/protocol-changes.html -share/pgadmin3/docs/en_US/pg/protocol-error-fields.html -share/pgadmin3/docs/en_US/pg/protocol-flow.html -share/pgadmin3/docs/en_US/pg/protocol-message-formats.html -share/pgadmin3/docs/en_US/pg/protocol-message-types.html -share/pgadmin3/docs/en_US/pg/protocol.html -share/pgadmin3/docs/en_US/pg/queries-limit.html -share/pgadmin3/docs/en_US/pg/queries-order.html -share/pgadmin3/docs/en_US/pg/queries-select-lists.html -share/pgadmin3/docs/en_US/pg/queries-table-expressions.html -share/pgadmin3/docs/en_US/pg/queries-union.html -share/pgadmin3/docs/en_US/pg/queries.html -share/pgadmin3/docs/en_US/pg/reference-client.html -share/pgadmin3/docs/en_US/pg/reference-server.html -share/pgadmin3/docs/en_US/pg/reference.html -share/pgadmin3/docs/en_US/pg/regress-evaluation.html -share/pgadmin3/docs/en_US/pg/regress-platform.html -share/pgadmin3/docs/en_US/pg/regress.html -share/pgadmin3/docs/en_US/pg/release-0-01.html -share/pgadmin3/docs/en_US/pg/release-0-02.html -share/pgadmin3/docs/en_US/pg/release-0-03.html -share/pgadmin3/docs/en_US/pg/release-1-0.html -share/pgadmin3/docs/en_US/pg/release-1-01.html -share/pgadmin3/docs/en_US/pg/release-1-02.html -share/pgadmin3/docs/en_US/pg/release-1-09.html -share/pgadmin3/docs/en_US/pg/release-6-0.html -share/pgadmin3/docs/en_US/pg/release-6-1-1.html -share/pgadmin3/docs/en_US/pg/release-6-1.html -share/pgadmin3/docs/en_US/pg/release-6-2-1.html -share/pgadmin3/docs/en_US/pg/release-6-2.html -share/pgadmin3/docs/en_US/pg/release-6-3-1.html -share/pgadmin3/docs/en_US/pg/release-6-3-2.html -share/pgadmin3/docs/en_US/pg/release-6-3.html -share/pgadmin3/docs/en_US/pg/release-6-4-1.html -share/pgadmin3/docs/en_US/pg/release-6-4-2.html -share/pgadmin3/docs/en_US/pg/release-6-4.html -share/pgadmin3/docs/en_US/pg/release-6-5-1.html -share/pgadmin3/docs/en_US/pg/release-6-5-2.html -share/pgadmin3/docs/en_US/pg/release-6-5-3.html -share/pgadmin3/docs/en_US/pg/release-6-5.html -share/pgadmin3/docs/en_US/pg/release-7-0-1.html -share/pgadmin3/docs/en_US/pg/release-7-0-2.html -share/pgadmin3/docs/en_US/pg/release-7-0-3.html -share/pgadmin3/docs/en_US/pg/release-7-0.html -share/pgadmin3/docs/en_US/pg/release-7-1-1.html -share/pgadmin3/docs/en_US/pg/release-7-1-2.html -share/pgadmin3/docs/en_US/pg/release-7-1-3.html -share/pgadmin3/docs/en_US/pg/release-7-1.html -share/pgadmin3/docs/en_US/pg/release-7-2-1.html -share/pgadmin3/docs/en_US/pg/release-7-2-2.html -share/pgadmin3/docs/en_US/pg/release-7-2-3.html -share/pgadmin3/docs/en_US/pg/release-7-2-4.html -share/pgadmin3/docs/en_US/pg/release-7-2.html -share/pgadmin3/docs/en_US/pg/release-7-3-1.html -share/pgadmin3/docs/en_US/pg/release-7-3-2.html -share/pgadmin3/docs/en_US/pg/release-7-3-3.html -share/pgadmin3/docs/en_US/pg/release-7-3-4.html -share/pgadmin3/docs/en_US/pg/release-7-3.html -share/pgadmin3/docs/en_US/pg/release.html -share/pgadmin3/docs/en_US/pg/resources.html -share/pgadmin3/docs/en_US/pg/routine-reindex.html -share/pgadmin3/docs/en_US/pg/rule-system.html -share/pgadmin3/docs/en_US/pg/rules-privileges.html -share/pgadmin3/docs/en_US/pg/rules-status.html -share/pgadmin3/docs/en_US/pg/rules-triggers.html -share/pgadmin3/docs/en_US/pg/rules-update.html -share/pgadmin3/docs/en_US/pg/rules-views.html -share/pgadmin3/docs/en_US/pg/rules.html -share/pgadmin3/docs/en_US/pg/runtime-config.html -share/pgadmin3/docs/en_US/pg/runtime.html -share/pgadmin3/docs/en_US/pg/server-programming.html -share/pgadmin3/docs/en_US/pg/source.html -share/pgadmin3/docs/en_US/pg/spi-examples.html -share/pgadmin3/docs/en_US/pg/spi-interface-support.html -share/pgadmin3/docs/en_US/pg/spi-memory.html -share/pgadmin3/docs/en_US/pg/spi-realloc.html -share/pgadmin3/docs/en_US/pg/spi-spi-connect.html -share/pgadmin3/docs/en_US/pg/spi-spi-copytuple.html -share/pgadmin3/docs/en_US/pg/spi-spi-copytupledesc.html -share/pgadmin3/docs/en_US/pg/spi-spi-copytupleintoslot.html -share/pgadmin3/docs/en_US/pg/spi-spi-cursor-close.html -share/pgadmin3/docs/en_US/pg/spi-spi-cursor-fetch.html -share/pgadmin3/docs/en_US/pg/spi-spi-cursor-find.html -share/pgadmin3/docs/en_US/pg/spi-spi-cursor-move.html -share/pgadmin3/docs/en_US/pg/spi-spi-cursor-open.html -share/pgadmin3/docs/en_US/pg/spi-spi-exec.html -share/pgadmin3/docs/en_US/pg/spi-spi-execp.html -share/pgadmin3/docs/en_US/pg/spi-spi-finish.html -share/pgadmin3/docs/en_US/pg/spi-spi-fname.html -share/pgadmin3/docs/en_US/pg/spi-spi-fnumber.html -share/pgadmin3/docs/en_US/pg/spi-spi-freeplan.html -share/pgadmin3/docs/en_US/pg/spi-spi-freetuple.html -share/pgadmin3/docs/en_US/pg/spi-spi-freetupletable.html -share/pgadmin3/docs/en_US/pg/spi-spi-getbinval.html -share/pgadmin3/docs/en_US/pg/spi-spi-getrelname.html -share/pgadmin3/docs/en_US/pg/spi-spi-gettype.html -share/pgadmin3/docs/en_US/pg/spi-spi-gettypeid.html -share/pgadmin3/docs/en_US/pg/spi-spi-getvalue.html -share/pgadmin3/docs/en_US/pg/spi-spi-modifytuple.html -share/pgadmin3/docs/en_US/pg/spi-spi-palloc.html -share/pgadmin3/docs/en_US/pg/spi-spi-pfree.html -share/pgadmin3/docs/en_US/pg/spi-spi-prepare.html -share/pgadmin3/docs/en_US/pg/spi-spi-saveplan.html -share/pgadmin3/docs/en_US/pg/spi-visibility.html -share/pgadmin3/docs/en_US/pg/spi.html -share/pgadmin3/docs/en_US/pg/sql-abort.html -share/pgadmin3/docs/en_US/pg/sql-alteraggregate.html -share/pgadmin3/docs/en_US/pg/sql-alterconversion.html -share/pgadmin3/docs/en_US/pg/sql-alterdatabase.html -share/pgadmin3/docs/en_US/pg/sql-alterdomain.html -share/pgadmin3/docs/en_US/pg/sql-alterfunction.html -share/pgadmin3/docs/en_US/pg/sql-altergroup.html -share/pgadmin3/docs/en_US/pg/sql-alterlanguage.html -share/pgadmin3/docs/en_US/pg/sql-alteropclass.html -share/pgadmin3/docs/en_US/pg/sql-alterschema.html -share/pgadmin3/docs/en_US/pg/sql-altersequence.html -share/pgadmin3/docs/en_US/pg/sql-altertable.html -share/pgadmin3/docs/en_US/pg/sql-altertrigger.html -share/pgadmin3/docs/en_US/pg/sql-alteruser.html -share/pgadmin3/docs/en_US/pg/sql-analyze.html -share/pgadmin3/docs/en_US/pg/sql-begin.html -share/pgadmin3/docs/en_US/pg/sql-checkpoint.html -share/pgadmin3/docs/en_US/pg/sql-close.html -share/pgadmin3/docs/en_US/pg/sql-cluster.html -share/pgadmin3/docs/en_US/pg/sql-commands.html -share/pgadmin3/docs/en_US/pg/sql-comment.html -share/pgadmin3/docs/en_US/pg/sql-commit.html -share/pgadmin3/docs/en_US/pg/sql-copy.html -share/pgadmin3/docs/en_US/pg/sql-createaggregate.html -share/pgadmin3/docs/en_US/pg/sql-createcast.html -share/pgadmin3/docs/en_US/pg/sql-createconstraint.html -share/pgadmin3/docs/en_US/pg/sql-createconversion.html -share/pgadmin3/docs/en_US/pg/sql-createdatabase.html -share/pgadmin3/docs/en_US/pg/sql-createdomain.html -share/pgadmin3/docs/en_US/pg/sql-createfunction.html -share/pgadmin3/docs/en_US/pg/sql-creategroup.html -share/pgadmin3/docs/en_US/pg/sql-createindex.html -share/pgadmin3/docs/en_US/pg/sql-createlanguage.html -share/pgadmin3/docs/en_US/pg/sql-createopclass.html -share/pgadmin3/docs/en_US/pg/sql-createoperator.html -share/pgadmin3/docs/en_US/pg/sql-createrule.html -share/pgadmin3/docs/en_US/pg/sql-createschema.html -share/pgadmin3/docs/en_US/pg/sql-createsequence.html -share/pgadmin3/docs/en_US/pg/sql-createtable.html -share/pgadmin3/docs/en_US/pg/sql-createtableas.html -share/pgadmin3/docs/en_US/pg/sql-createtrigger.html -share/pgadmin3/docs/en_US/pg/sql-createtype.html -share/pgadmin3/docs/en_US/pg/sql-createuser.html -share/pgadmin3/docs/en_US/pg/sql-createview.html -share/pgadmin3/docs/en_US/pg/sql-deallocate.html -share/pgadmin3/docs/en_US/pg/sql-declare.html -share/pgadmin3/docs/en_US/pg/sql-delete.html -share/pgadmin3/docs/en_US/pg/sql-dropaggregate.html -share/pgadmin3/docs/en_US/pg/sql-dropcast.html -share/pgadmin3/docs/en_US/pg/sql-dropconversion.html -share/pgadmin3/docs/en_US/pg/sql-dropdatabase.html -share/pgadmin3/docs/en_US/pg/sql-dropdomain.html -share/pgadmin3/docs/en_US/pg/sql-dropfunction.html -share/pgadmin3/docs/en_US/pg/sql-dropgroup.html -share/pgadmin3/docs/en_US/pg/sql-dropindex.html -share/pgadmin3/docs/en_US/pg/sql-droplanguage.html -share/pgadmin3/docs/en_US/pg/sql-dropopclass.html -share/pgadmin3/docs/en_US/pg/sql-dropoperator.html -share/pgadmin3/docs/en_US/pg/sql-droprule.html -share/pgadmin3/docs/en_US/pg/sql-dropschema.html -share/pgadmin3/docs/en_US/pg/sql-dropsequence.html -share/pgadmin3/docs/en_US/pg/sql-droptable.html -share/pgadmin3/docs/en_US/pg/sql-droptrigger.html -share/pgadmin3/docs/en_US/pg/sql-droptype.html -share/pgadmin3/docs/en_US/pg/sql-dropuser.html -share/pgadmin3/docs/en_US/pg/sql-dropview.html -share/pgadmin3/docs/en_US/pg/sql-end.html -share/pgadmin3/docs/en_US/pg/sql-execute.html -share/pgadmin3/docs/en_US/pg/sql-explain.html -share/pgadmin3/docs/en_US/pg/sql-expressions.html -share/pgadmin3/docs/en_US/pg/sql-fetch.html -share/pgadmin3/docs/en_US/pg/sql-grant.html -share/pgadmin3/docs/en_US/pg/sql-insert.html -share/pgadmin3/docs/en_US/pg/sql-keywords-appendix.html -share/pgadmin3/docs/en_US/pg/sql-listen.html -share/pgadmin3/docs/en_US/pg/sql-load.html -share/pgadmin3/docs/en_US/pg/sql-lock.html -share/pgadmin3/docs/en_US/pg/sql-move.html -share/pgadmin3/docs/en_US/pg/sql-notify.html -share/pgadmin3/docs/en_US/pg/sql-prepare.html -share/pgadmin3/docs/en_US/pg/sql-reindex.html -share/pgadmin3/docs/en_US/pg/sql-reset.html -share/pgadmin3/docs/en_US/pg/sql-revoke.html -share/pgadmin3/docs/en_US/pg/sql-rollback.html -share/pgadmin3/docs/en_US/pg/sql-select.html -share/pgadmin3/docs/en_US/pg/sql-selectinto.html -share/pgadmin3/docs/en_US/pg/sql-set-constraints.html -share/pgadmin3/docs/en_US/pg/sql-set-session-authorization.html -share/pgadmin3/docs/en_US/pg/sql-set-transaction.html -share/pgadmin3/docs/en_US/pg/sql-set.html -share/pgadmin3/docs/en_US/pg/sql-show.html -share/pgadmin3/docs/en_US/pg/sql-start-transaction.html -share/pgadmin3/docs/en_US/pg/sql-syntax.html -share/pgadmin3/docs/en_US/pg/sql-truncate.html -share/pgadmin3/docs/en_US/pg/sql-unlisten.html -share/pgadmin3/docs/en_US/pg/sql-update.html -share/pgadmin3/docs/en_US/pg/sql-vacuum.html -share/pgadmin3/docs/en_US/pg/sql.html -share/pgadmin3/docs/en_US/pg/ssh-tunnels.html -share/pgadmin3/docs/en_US/pg/ssl-tcp.html -share/pgadmin3/docs/en_US/pg/stylesheet.css -share/pgadmin3/docs/en_US/pg/supported-platforms.html -share/pgadmin3/docs/en_US/pg/transaction-iso.html -share/pgadmin3/docs/en_US/pg/trigger-datachanges.html -share/pgadmin3/docs/en_US/pg/trigger-example.html -share/pgadmin3/docs/en_US/pg/trigger-interface.html -share/pgadmin3/docs/en_US/pg/triggers.html -share/pgadmin3/docs/en_US/pg/tutorial-accessdb.html -share/pgadmin3/docs/en_US/pg/tutorial-advanced.html -share/pgadmin3/docs/en_US/pg/tutorial-agg.html -share/pgadmin3/docs/en_US/pg/tutorial-arch.html -share/pgadmin3/docs/en_US/pg/tutorial-concepts.html -share/pgadmin3/docs/en_US/pg/tutorial-conclusion.html -share/pgadmin3/docs/en_US/pg/tutorial-createdb.html -share/pgadmin3/docs/en_US/pg/tutorial-delete.html -share/pgadmin3/docs/en_US/pg/tutorial-fk.html -share/pgadmin3/docs/en_US/pg/tutorial-inheritance.html -share/pgadmin3/docs/en_US/pg/tutorial-join.html -share/pgadmin3/docs/en_US/pg/tutorial-populate.html -share/pgadmin3/docs/en_US/pg/tutorial-select.html -share/pgadmin3/docs/en_US/pg/tutorial-sql.html -share/pgadmin3/docs/en_US/pg/tutorial-start.html -share/pgadmin3/docs/en_US/pg/tutorial-table.html -share/pgadmin3/docs/en_US/pg/tutorial-transactions.html -share/pgadmin3/docs/en_US/pg/tutorial-update.html -share/pgadmin3/docs/en_US/pg/tutorial-views.html -share/pgadmin3/docs/en_US/pg/tutorial.html -share/pgadmin3/docs/en_US/pg/typeconv-func.html -share/pgadmin3/docs/en_US/pg/typeconv-oper.html -share/pgadmin3/docs/en_US/pg/typeconv-query.html -share/pgadmin3/docs/en_US/pg/typeconv-union-case.html -share/pgadmin3/docs/en_US/pg/typeconv.html -share/pgadmin3/docs/en_US/pg/unsupported-features-sql99.html -share/pgadmin3/docs/en_US/pg/user-attributes.html -share/pgadmin3/docs/en_US/pg/user-manag.html -share/pgadmin3/docs/en_US/pg/view-pg-indexes.html -share/pgadmin3/docs/en_US/pg/view-pg-locks.html -share/pgadmin3/docs/en_US/pg/view-pg-rules.html -share/pgadmin3/docs/en_US/pg/view-pg-settings.html -share/pgadmin3/docs/en_US/pg/view-pg-stats.html -share/pgadmin3/docs/en_US/pg/view-pg-tables.html -share/pgadmin3/docs/en_US/pg/view-pg-user.html -share/pgadmin3/docs/en_US/pg/view-pg-views.html -share/pgadmin3/docs/en_US/pg/views-overview.html -share/pgadmin3/docs/en_US/pg/wal-benefits-later.html -share/pgadmin3/docs/en_US/pg/wal-configuration.html -share/pgadmin3/docs/en_US/pg/wal-internals.html -share/pgadmin3/docs/en_US/pg/wal.html -share/pgadmin3/docs/en_US/pg/xaggr.html -share/pgadmin3/docs/en_US/pg/xfunc-c.html -share/pgadmin3/docs/en_US/pg/xfunc-internal.html -share/pgadmin3/docs/en_US/pg/xfunc-overload.html -share/pgadmin3/docs/en_US/pg/xfunc-pl.html -share/pgadmin3/docs/en_US/pg/xfunc-sql.html -share/pgadmin3/docs/en_US/pg/xfunc.html -share/pgadmin3/docs/en_US/pg/xindex.html -share/pgadmin3/docs/en_US/pg/xoper-optimization.html -share/pgadmin3/docs/en_US/pg/xoper.html -share/pgadmin3/docs/en_US/pg/xplang.html -share/pgadmin3/docs/en_US/pg/xtypes.html -share/pgadmin3/docs/en_US/pgadmin3.css -share/pgadmin3/docs/en_US/pgadmin3.hhc -share/pgadmin3/docs/en_US/pgadmin3.hhp -share/pgadmin3/docs/en_US/postgresql.hhk -share/pgadmin3/docs/en_US/preparing_for_translation.html -share/pgadmin3/docs/en_US/prop_page_design.html -share/pgadmin3/docs/en_US/query.html -share/pgadmin3/docs/en_US/snapshots.html -share/pgadmin3/docs/en_US/status.html -share/pgadmin3/docs/en_US/team.html -share/pgadmin3/docs/en_US/tech.html -share/pgadmin3/docs/en_US/tips.txt -share/pgadmin3/docs/en_US/translation_guidelines.html -share/pgadmin3/docs/en_US/translation_steps.html -share/pgadmin3/docs/en_US/translation_team.html -share/pgadmin3/docs/en_US/unix_compilation.html -share/pgadmin3/docs/en_US/using.html -share/pgadmin3/ui/af_ZA/pgadmin3.mo -share/pgadmin3/ui/bg_BG/pgadmin3.mo -share/pgadmin3/ui/common/dlgAggregate.xrc -share/pgadmin3/ui/common/dlgCast.xrc -share/pgadmin3/ui/common/dlgCheck.xrc -share/pgadmin3/ui/common/dlgColumn.xrc -share/pgadmin3/ui/common/dlgConversion.xrc -share/pgadmin3/ui/common/dlgDatabase.xrc -share/pgadmin3/ui/common/dlgDomain.xrc -share/pgadmin3/ui/common/dlgForeignKey.xrc -share/pgadmin3/ui/common/dlgFunction.xrc -share/pgadmin3/ui/common/dlgGroup.xrc -share/pgadmin3/ui/common/dlgIndex.xrc -share/pgadmin3/ui/common/dlgIndexConstraint.xrc -share/pgadmin3/ui/common/dlgLanguage.xrc -share/pgadmin3/ui/common/dlgOperator.xrc -share/pgadmin3/ui/common/dlgRule.xrc -share/pgadmin3/ui/common/dlgSchema.xrc -share/pgadmin3/ui/common/dlgSequence.xrc -share/pgadmin3/ui/common/dlgTable.xrc -share/pgadmin3/ui/common/dlgTrigger.xrc -share/pgadmin3/ui/common/dlgType.xrc -share/pgadmin3/ui/common/dlgUser.xrc -share/pgadmin3/ui/common/dlgView.xrc -share/pgadmin3/ui/common/frmAddTableView.xrc -share/pgadmin3/ui/common/frmConnect.xrc -share/pgadmin3/ui/common/frmExport.xrc -share/pgadmin3/ui/common/frmMaintenance.xrc -share/pgadmin3/ui/common/frmOptions.xrc -share/pgadmin3/ui/common/frmPassword.xrc -share/pgadmin3/ui/common/frmQBJoin.xrc -share/pgadmin3/ui/common/frmServer.xrc -share/pgadmin3/ui/common/frmStatus.xrc -share/pgadmin3/ui/da_DK/pgadmin3.mo -share/pgadmin3/ui/de_DE/pgadmin3.mo -share/pgadmin3/ui/de_DE/wxstd.mo -share/pgadmin3/ui/el_GR/pgadmin3.mo -share/pgadmin3/ui/es_ES/pgadmin3.mo -share/pgadmin3/ui/fa_IR/pgadmin3.mo -share/pgadmin3/ui/fr_FR/pgadmin3.mo -share/pgadmin3/ui/fr_FR/wxstd.mo -share/pgadmin3/ui/gl_ES/pgadmin3.mo -share/pgadmin3/ui/hr_HR/pgadmin3.mo -share/pgadmin3/ui/hu_HU/pgadmin3.mo -share/pgadmin3/ui/id_ID/pgadmin3.mo -share/pgadmin3/ui/id_ID/wxstd.mo -share/pgadmin3/ui/it_IT/pgadmin3.mo -share/pgadmin3/ui/it_IT/wxstd.mo -share/pgadmin3/ui/ja_JP/pgadmin3.mo -share/pgadmin3/ui/ja_JP/wxstd.mo -share/pgadmin3/ui/nb_NO/pgadmin3.mo -share/pgadmin3/ui/nl_NL/pgadmin3.mo -share/pgadmin3/ui/pgadmin3.lng -share/pgadmin3/ui/pl_PL/pgadmin3.mo -share/pgadmin3/ui/pl_PL/wxstd.mo -share/pgadmin3/ui/pt_BR/pgadmin3.mo -share/pgadmin3/ui/pt_PT/pgadmin3.mo -share/pgadmin3/ui/ro_RO/pgadmin3.mo -share/pgadmin3/ui/ru_RU/pgadmin3.mo -share/pgadmin3/ui/sk_SK/pgadmin3.mo -share/pgadmin3/ui/sl_SI/pgadmin3.mo -share/pgadmin3/ui/sr_YU/pgadmin3.mo -share/pgadmin3/ui/sv_SE/pgadmin3.mo -share/pgadmin3/ui/tr_TR/pgadmin3.mo -share/pgadmin3/ui/tr_TR/wxstd.mo -share/pgadmin3/ui/wxstd.mo -share/pgadmin3/ui/zh_CN/pgadmin3.mo -share/pgadmin3/ui/zh_CN/wxstd.mo -share/pgadmin3/ui/zh_TW/pgadmin3.mo -@dirrm share/pgadmin3/ui/zh_TW -@dirrm share/pgadmin3/ui/zh_CN -@dirrm share/pgadmin3/ui/tr_TR -@dirrm share/pgadmin3/ui/sv_SE -@dirrm share/pgadmin3/ui/sr_YU -@dirrm share/pgadmin3/ui/sl_SI -@dirrm share/pgadmin3/ui/sk_SK -@dirrm share/pgadmin3/ui/ru_RU -@dirrm share/pgadmin3/ui/ro_RO -@dirrm share/pgadmin3/ui/pt_PT -@dirrm share/pgadmin3/ui/pt_BR -@dirrm share/pgadmin3/ui/pl_PL -@dirrm share/pgadmin3/ui/nl_NL -@dirrm share/pgadmin3/ui/nb_NO -@dirrm share/pgadmin3/ui/ja_JP -@dirrm share/pgadmin3/ui/it_IT -@dirrm share/pgadmin3/ui/id_ID -@dirrm share/pgadmin3/ui/hu_HU -@dirrm share/pgadmin3/ui/hr_HR -@dirrm share/pgadmin3/ui/gl_ES -@dirrm share/pgadmin3/ui/fr_FR -@dirrm share/pgadmin3/ui/fa_IR -@dirrm share/pgadmin3/ui/es_ES -@dirrm share/pgadmin3/ui/el_GR -@dirrm share/pgadmin3/ui/de_DE -@dirrm share/pgadmin3/ui/da_DK -@dirrm share/pgadmin3/ui/common -@dirrm share/pgadmin3/ui/bg_BG -@dirrm share/pgadmin3/ui/af_ZA -@dirrm share/pgadmin3/ui -@dirrm share/pgadmin3/docs/en_US/pg -@dirrm share/pgadmin3/docs/en_US/images -@dirrm share/pgadmin3/docs/en_US -@dirrm share/pgadmin3/docs -@dirrm share/pgadmin3 |
