[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

Hossein  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |nirnayko...@gmail.com
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #26 from nirnayko...@gmail.com ---
I have for the most part figured it out. One of the questions I have is if I
implement something of the sort

OGeneralSpecialJDBCConnectionPageSetup::OGeneralSpecialJDBCConnectionPageSetup(
weld::Container* pPage, 
weld::DialogController* pController, const SfxItemSet& _rCoreAttrs
,sal_uInt16 _nPortId, TranslateId pDefaultPortResId, 
TranslateId pHelpTextResId, TranslateId pHeaderTextResId, TranslateId
pDriverClassId)

from DBSetupConnectionPages.cxx  

How would the postgres driver class need to be handled in that case since in
the generic code it somewhat difficult to figure out

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #25 from Lionel Elie Mamane  ---
Yes, PostgreSQL currently just uses the generic UI.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #24 from nirnayko...@gmail.com ---
I was able to find the JDBC GUI by searching but the connstring for
postgresql,I havent been able to find. Is it being implemented through
generalpage.cxx ?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #23 from Lionel Elie Mamane  ---
(In reply to nirnaykorde from comment #22)
> My proposed solution for this bug is as follows:

Your plan is reasonable. However, I would rather do it in a way that "the GUI"
has an extra field for "connstring" and the user can fill in things in "the
GUI" and also at the same time in the connstring. All the information given,
both in "the GUI" and in the connstring is given to libpq (whichever takes
precedence is up to the postgresql-sdbc layer and/or libpq)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #22 from nirnayko...@gmail.com ---
My proposed solution for this bug is as follows:
For postgres to have a gui similar to mysql(in connect to existing database) we
can:
1)instead of starting of the connection settings start of a page similar to
mysql where instead of choosing the drivers we allow the user to use either a
connstring or a gui interface.
2)if the the user selects connstring the next page would be the original
connection settings page which appears after choosing postgres 
OR if the user chooses the GUI the users next page would be a copy of the MySQL
JDBC driver connection page and the data would be used to feed the data in
properties.
3)Both the page lead to user authentication page and rest is same

Do let me know if something seems wrong.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #21 from Buovjaga  ---
(In reply to nirnaykorde from comment #20)
> (In reply to Lionel Elie Mamane from comment #0)
> > You could just generate a conninfo string from that, but I'd prefer if you
> > set it as properties of the datasouce/database/..., so that the driver gets
> > it through the same interface as the username and password; cf handling of
> > these for inspiration. There is already support for that in the driver, see
> > connectivity/source/drivers/postgresql/pq_connection.cxx, function
> > properties2arrays. POssibly you need to extend the handling there to support
> > more keywords.
> 
>  I cant find datasouce/database/... has the name of the directory changed ?

That is not referring to any directory. Read it as "datasource or database".

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #20 from nirnayko...@gmail.com ---
(In reply to Lionel Elie Mamane from comment #0)
> Created attachment 53965 [details]
> screenshot of MySQL-specific UI
> 
> When connecting to a PostgreSQL database (through PostgreSQL-SDBC driver),
> we currently just ask the user to type a conninfo string. That's familiar to
> PostgreSQL experts, but other people would benefit from some hand-holding.
> 
> Implement a PostgreSQL-specific UI to get the connection info, along the
> lines of the MySQL-specific UI we already have.
> 
> 
> The file you need to change in LibreOffice is
> dbaccess/source/ui/dlg/ConnectionHelper.cxx, in function
> 
>IMPL_LINK(OConnectionHelper, OnBrowseConnections, PushButton*,
> /*_pButton*/)
> 
> there is a big
> 
> switch ( eType )
> 
> We need to add a case for PostgreSQL. You can take inspiration from the
> MySQL case.
> 
> You may also need to adapt
> ODbDataSourceAdministrationHelper::getConnectionURL() in file
> DbAdminImpl.cxx, as well as ODbTypeWizDialog::determineNextState in file
> dbwiz to activate a new state ADDITIONAL_PAGE_PGSQL, which you have to
> create first.
> 
> Finally, the dialog itself would be in file
> dbaccess/source/ui/dlg/dbadminsetup.src, in a to-be-created section TabPage
> PAGE_DBWIZARD_PGSQL.
> 
> You could just generate a conninfo string from that, but I'd prefer if you
> set it as properties of the datasouce/database/..., so that the driver gets
> it through the same interface as the username and password; cf handling of
> these for inspiration. There is already support for that in the driver, see
> connectivity/source/drivers/postgresql/pq_connection.cxx, function
> properties2arrays. POssibly you need to extend the handling there to support
> more keywords.

 I cant find datasouce/database/... has the name of the directory changed ?

> Please *also* allow advanced users to enter a conninfo string, and mixing of
> entering a conninfo string (like now) and information through widgets in the
> specific UI. See
> http://developer.postgresql.org/pgdocs/postgres/libpq-connect.html#LIBPQ-
> PQCONNECTDBPARAMS for an up-to-date list of all recognised connection
> settings. Make a decision on which of these settings make or do not make
> sense to give a friendly UI for.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #18 from nirnayko...@gmail.com ---
I am assigning this hack to myself

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #19 from nirnayko...@gmail.com ---
I am assigning this hack to myself

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #17 from nirnayko...@gmail.com ---
I am assigning this hack to myself

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #16 from Lionel Elie Mamane  ---
(In reply to nirnaykorde from comment #15)
> @Lionel Elie Mamane could please state all the updated requirements. Just to
> be sure that I do not work on unnecessary things

See
https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PARAMKEYWORDS
for the list of recognised connection keywords; at first glance the following
make sense to include in the UI, the others can be typed in manually in the
connstring by experts:

host
port
dbname
user
password
service

MAYBE (but maybe too confusing for newbies? behind an "advanced fold option"...
or leave them out altogether):

gssencmode
sslmode
sslcert
passfile
sslkey
sslpassword
sslrootcert
sslcrl
sslcrldir
requirepeer
ssl_min_protocol_version
ssl_max_protocol_version
krbsrvname
gsslib (on Windows only)



DO NOT include in the UI:
client_encoding
application_name

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

nirnayko...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2023-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #15 from nirnayko...@gmail.com ---
@Lionel Elie Mamane could please state all the updated requirements. Just to be
sure that I do not work on unnecessary things

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2022-06-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #14 from Lionel Elie Mamane  ---
(In reply to Siddhant Chaudhary from comment #13)
> 1) I cannot find the file dbaccess/source/ui/dlg/dbadminsetup.src. It seems
> like there is no file with this name anymore. Was this changed in some patch?

Yes, all .src files were removed in

commit 00657aef09d854c74fb426a935a3e8b1fc390bb0
Author: Caolán McNamara 
Date:   Sun Jun 11 20:56:30 2017 +0100

migrate to boost::gettext

AS the commit message says:

* all .src files go away and the english source strings folded into the
.hrc as NC_("context", "source string")

So this is now in dbaccess/inc/strings.hrc

> 2) I didn't understand this part: "but I'd prefer if you set it as
> properties of the datasouce/database/..., so that the driver gets it through
> the same interface as the username and password". Can someone please explain
> what this means?

It means that the values set in the UI should be set as properties on the data
source object, in the same way the username and password already are now. Now,
the password is set in property PROPERTY_PASSWORD (which is "Password"), the
username in PROPERTY_USER ("User"). You will put the TCP port to connect to in
property "port", the database name in property "dbname", etc.

> 
> Also, I have postgres installed on my machine. Will that be enough to test
> all aspects of this feature?
> 
> Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2022-06-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #13 from Siddhant Chaudhary  ---
Hi. I'd love to work on this feature. I have two questions: 

1) I cannot find the file dbaccess/source/ui/dlg/dbadminsetup.src. It seems
like there is no file with this name anymore. Was this changed in some patch?

2) I didn't understand this part: "but I'd prefer if you set it as properties
of the datasouce/database/..., so that the driver gets it through the same
interface as the username and password". Can someone please explain what this
means?

Also, I have postgres installed on my machine. Will that be enough to test all
aspects of this feature?

Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2020-12-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #12 from Popa Adrian Marius  ---
Current Link for PQconnectdbParams
https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PQCONNECTDBPARAMS

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2020-05-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

Alex Thurgood  changed:

   What|Removed |Added

 CC||nico...@microniko.net

--- Comment #11 from Alex Thurgood  ---
*** Bug 132476 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2020-03-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsUXEval

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2020-03-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||needsUXEval

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2017-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

Stéphane Aulery  changed:

   What|Removed |Added

   See Also||http://bugs.debian.org/6980
   ||63

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2017-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

Stéphane Aulery  changed:

   What|Removed |Added

   See Also||http://bugs.debian.org/6980
   ||63

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-04-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

jan iversen  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #9 from Lionel Elie Mamane  ---
You'll need to create new dialogs (.ui files) for that. This is done with a
tool called "Glade", run from a shell after doing

export
GLADE_CATALOG_SEARCH_PATH=${PATH_TO_BUILT_LIBREOFFICE_SOURCE_TREE}/instdir/share/glade

You can use the ones we have for MySQL as inspiration:

dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui
dbaccess/uiconfig/ui/mysqlnativepage.ui
dbaccess/uiconfig/ui/mysqlnativesettings.ui

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-03-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

--- Comment #8 from kerem  ---
I sent following for this patch;

https://gerrit.libreoffice.org/#/c/23602/

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

jan iversen  changed:

   What|Removed |Added

 Whiteboard||ToBeReviewed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-02-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

jan iversen  changed:

   What|Removed |Added

   Keywords||difficultyInteresting

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Bug 43369] Specific UI for collecting PostgreSQL connection settings

2016-02-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43369

jan iversen  changed:

   What|Removed |Added

   Keywords||difficultyInteresting

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 43369] Specific UI for collecting PostgreSQL connection settings

2015-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

--- Comment #5 from Alex Thurgood ipla...@yahoo.co.uk ---
Adding self to CC if not already on

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2015-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

--- Comment #5 from Alex Thurgood ipla...@yahoo.co.uk ---
Adding self to CC if not already on

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Bug 43369] Specific UI for collecting PostgreSQL connection settings

2013-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

--- Comment #4 from Björn Michaelsen bjoern.michael...@canonical.com ---
adding LibreOffice developer list as CC to unresolved EasyHacks for better
visibility.

see e.g.
http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for
details

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2013-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 CC||libreoffice@lists.freedeskt
   ||op.org

--- Comment #4 from Björn Michaelsen bjoern.michael...@canonical.com ---
adding LibreOffice developer list as CC to unresolved EasyHacks for better
visibility.

see e.g.
http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for
details

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

Summary|Better specific UI for  |Specific UI for collecting
   |connecting to PostgreSQL|PostgreSQL connection
   ||settings

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

Terrence Enger lo_b...@iseries-guru.com changed:

   What|Removed |Added

 CC||lo_b...@iseries-guru.com

--- Comment #1 from Terrence Enger lo_b...@iseries-guru.com 2011-11-30 
05:16:04 PST ---
I also renamed Date::IsValid() to Date::IsValidAndGregorian() to clarify
and added Date::IsValidDate() that does not check for the Gregorian

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43369] Specific UI for collecting PostgreSQL connection settings

2011-11-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43369

--- Comment #2 from Lionel Elie Mamane lio...@mamane.lu 2011-11-30 05:28:47 
PST ---
(In reply to comment #1)
 I also renamed Date::IsValid() to Date::IsValidAndGregorian() to clarify
 and added Date::IsValidDate() that does not check for the Gregorian

I think that was in the wrong bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs