public inbox for [email protected]
help / color / mirror / Atom feedNew software catalog fails (why are we spelling it "catalogue"?)
22+ messages / 7 participants
[nested] [flat]
* New software catalog fails (why are we spelling it "catalogue"?)
@ 2008-06-11 14:45 Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Greg Sabino Mullane @ 2008-06-11 14:45 UTC (permalink / raw)
To: pgsql-www
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160
Just tried out the new "Submit Product" form and got a
SQL error:
===
Error communicating with database: ERROR: insert or update on
table "products" violates foreign key constraint
"products_contact_fkey" DETAIL: Key (contact)=(Greg) is not
present in table "users".
===
- --
Greg Sabino Mullane [email protected]
PGP Key: 0x14964AC8 200806111043
http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8
-----BEGIN PGP SIGNATURE-----
iEYEAREDAAYFAkhP5IgACgkQvJuQZxSWSsia0QCggYkaFAmTnNQ14B71AqHkoIkh
4TYAoIJ8rK0MgNIZ79p9Puhfjh0tv0hT
=Bdkz
-----END PGP SIGNATURE-----
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
@ 2008-06-11 14:53 ` Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 14:53 UTC (permalink / raw)
To: Greg Sabino Mullane <[email protected]>; +Cc: pgsql-www
On Wed, Jun 11, 2008 at 3:45 PM, Greg Sabino Mullane <[email protected]> wrote:
>
>
> Just tried out the new "Submit Product" form and got a
> SQL error:
>
> ===
> Error communicating with database: ERROR: insert or update on
> table "products" violates foreign key constraint
> "products_contact_fkey" DETAIL: Key (contact)=(Greg) is not
> present in table "users".
> ===
Rats. That happens because *%*£$% MediaWiki insists on re-casing names
so we had to make the logon code case-insensitive. You need to logon
using the same casing as we have stored in the database to satisfy the
foreign key. Meanwhile, I'll be fixing up the code to try to handle
that....
Oh, and it's 'catalogue' because that's how catalogue is spelt. In
English. In England. If you broke the spelling on your side of the
pond then that's your look out :-p
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 15:26 ` Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 15:26 UTC (permalink / raw)
To: Greg Sabino Mullane <[email protected]>; +Cc: pgsql-www
On Wed, Jun 11, 2008 at 3:53 PM, Dave Page <[email protected]> wrote:
> Rats. That happens because *%*£$% MediaWiki insists on re-casing names
> so we had to make the logon code case-insensitive. You need to logon
> using the same casing as we have stored in the database to satisfy the
> foreign key. Meanwhile, I'll be fixing up the code to try to handle
> that....
For the benefit of those interested in this sort of thing, I've fixed
this by having community_logon() return the userid as found in the
database rather than as the user entered, so subsequent code finds it
with the correct casing. The userid parameter was already declared
INOUT so 'twas a simple change.
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 16:31 ` Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Greg Sabino Mullane @ 2008-06-11 16:31 UTC (permalink / raw)
To: [email protected]; +Cc: pgsql-www
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160
> For the benefit of those interested in this sort of thing, I've fixed
> this by having community_logon() return the userid as found in the
> database rather than as the user entered, so subsequent code finds it
> with the correct casing. The userid parameter was already declared
> INOUT so 'twas a simple change.
Thanks Dave, I verified that this worked by submitting two new
entries.
I await your patch to have PG start using "pg_catalogue" ;)
- --
Greg Sabino Mullane [email protected]
PGP Key: 0x14964AC8 200806111229
http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8
-----BEGIN PGP SIGNATURE-----
iEYEAREDAAYFAkhP/ZQACgkQvJuQZxSWSshU+gCfTZxcNao+7YYhNHQDSMbMwd+H
nkMAnihAgHU5phkH0p2bSQihKxCwP6LN
=Owdj
-----END PGP SIGNATURE-----
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
@ 2008-06-11 18:30 ` Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 18:30 UTC (permalink / raw)
To: Greg Sabino Mullane <[email protected]>; +Cc: pgsql-www
On Wed, Jun 11, 2008 at 5:31 PM, Greg Sabino Mullane <[email protected]> wrote:
>
> I await your patch to have PG start using "pg_catalogue" ;)
I'm actually very tempted to do so, if only to see how people reacted :-p
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 18:37 ` Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 2 replies; 22+ messages in thread
From: Magnus Hagander @ 2008-06-11 18:37 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: Greg Sabino Mullane <[email protected]>; pgsql-www
Dave Page wrote:
> On Wed, Jun 11, 2008 at 5:31 PM, Greg Sabino Mullane <[email protected]> wrote:
>> I await your patch to have PG start using "pg_catalogue" ;)
>
> I'm actually very tempted to do so, if only to see how people reacted :-p
I wonder if I'll loose my commit permissions if I commit that patch for
you real quick.. ;-)
//Magnus
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
@ 2008-06-11 18:40 ` Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
1 sibling, 1 reply; 22+ messages in thread
From: Joshua D. Drake @ 2008-06-11 18:40 UTC (permalink / raw)
To: Magnus Hagander <[email protected]>; +Cc: Dave Page <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, 2008-06-11 at 20:37 +0200, Magnus Hagander wrote:
> Dave Page wrote:
> > On Wed, Jun 11, 2008 at 5:31 PM, Greg Sabino Mullane <[email protected]> wrote:
> >> I await your patch to have PG start using "pg_catalogue" ;)
> >
> > I'm actually very tempted to do so, if only to see how people reacted :-p
>
> I wonder if I'll loose my commit permissions if I commit that patch for
> you real quick.. ;-)
I think we should do it in swahili.
Joshua D. Drake
>
> //Magnus
>
>
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
@ 2008-06-11 18:41 ` Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 18:41 UTC (permalink / raw)
To: Joshua D. Drake <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, Jun 11, 2008 at 7:40 PM, Joshua D. Drake <[email protected]> wrote:
>
> I think we should do it in swahili.
Which would make it pg_?????
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 18:50 ` Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Joshua D. Drake @ 2008-06-11 18:50 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, 2008-06-11 at 19:41 +0100, Dave Page wrote:
> On Wed, Jun 11, 2008 at 7:40 PM, Joshua D. Drake <[email protected]> wrote:
> >
> > I think we should do it in swahili.
>
> Which would make it pg_?????
>
I couldn't find the swahili so I divert to Russian!
каталогизировать
Joshua D. Drake
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
@ 2008-06-11 18:52 ` Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 18:52 UTC (permalink / raw)
To: Joshua D. Drake <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, Jun 11, 2008 at 7:50 PM, Joshua D. Drake <[email protected]> wrote:
>
>
> On Wed, 2008-06-11 at 19:41 +0100, Dave Page wrote:
>> On Wed, Jun 11, 2008 at 7:40 PM, Joshua D. Drake <[email protected]> wrote:
>> >
>> > I think we should do it in swahili.
>>
>> Which would make it pg_?????
>>
>
> I couldn't find the swahili so I divert to Russian!
>
> каталогизировать
Hmm - is pg_каталогизировать valid? Or does the prefix change the
meaning in some way?
We have to get these things right y'know...
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 18:55 ` Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 21:09 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Alexey Klyukin <[email protected]>
0 siblings, 2 replies; 22+ messages in thread
From: Joshua D. Drake @ 2008-06-11 18:55 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, 2008-06-11 at 19:52 +0100, Dave Page wrote:
> On Wed, Jun 11, 2008 at 7:50 PM, Joshua D. Drake <[email protected]> wrote:
> > I couldn't find the swahili so I divert to Russian!
> >
> > каталогизировать
>
> Hmm - is pg_каталогизировать valid? Or does the prefix change the
> meaning in some way?
>
> We have to get these things right y'know...
пг_каталогизировать
Should do it :) Of course their might be the problem with tab complete.
JHoshua D. Drake
>
>
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
@ 2008-06-11 19:27 ` Raymond O'Donnell <[email protected]>
2008-06-11 19:29 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:32 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
1 sibling, 2 replies; 22+ messages in thread
From: Raymond O'Donnell @ 2008-06-11 19:27 UTC (permalink / raw)
To: Joshua D. Drake <[email protected]>; +Cc: Dave Page <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On 11/06/2008 19:55, Joshua D. Drake wrote:
> On Wed, 2008-06-11 at 19:52 +0100, Dave Page wrote:
>> On Wed, Jun 11, 2008 at 7:50 PM, Joshua D. Drake <[email protected]> wrote:
>
>>> I couldn't find the swahili so I divert to Russian!
>>>
>>> каталогизировать
How about Irish? -
pg_clár
Nice and short! :-)
Ray.
------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
[email protected]
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
@ 2008-06-11 19:29 ` Joshua D. Drake <[email protected]>
2008-06-11 19:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Alvaro Herrera <[email protected]>
1 sibling, 1 reply; 22+ messages in thread
From: Joshua D. Drake @ 2008-06-11 19:29 UTC (permalink / raw)
To: [email protected]; +Cc: Dave Page <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, 2008-06-11 at 20:27 +0100, Raymond O'Donnell wrote:
> On 11/06/2008 19:55, Joshua D. Drake wrote:
> > On Wed, 2008-06-11 at 19:52 +0100, Dave Page wrote:
> >> On Wed, Jun 11, 2008 at 7:50 PM, Joshua D. Drake <[email protected]> wrote:
> >
> >>> I couldn't find the swahili so I divert to Russian!
> >>>
> >>> каталогизировать
>
> How about Irish? -
>
> pg_clár
>
> Nice and short! :-)
Nahhh, then we would have to change the name to postgres.
Joshua D. Drake
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:29 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
@ 2008-06-11 19:30 ` Alvaro Herrera <[email protected]>
0 siblings, 0 replies; 22+ messages in thread
From: Alvaro Herrera @ 2008-06-11 19:30 UTC (permalink / raw)
To: Joshua D. Drake <[email protected]>; +Cc: [email protected]; Dave Page <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
Joshua D. Drake wrote:
>
> On Wed, 2008-06-11 at 20:27 +0100, Raymond O'Donnell wrote:
> > How about Irish? -
> >
> > pg_clár
> >
> > Nice and short! :-)
>
> Nahhh, then we would have to change the name to postgres.
Are you advocating it should be named pgsql_catalogue?
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
@ 2008-06-11 19:32 ` Dave Page <[email protected]>
2008-06-11 19:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
1 sibling, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 19:32 UTC (permalink / raw)
To: [email protected]; +Cc: Joshua D. Drake <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, Jun 11, 2008 at 8:27 PM, Raymond O'Donnell <[email protected]> wrote:
> On 11/06/2008 19:55, Joshua D. Drake wrote:te:
>>
>>>> I couldn't find the swahili so I divert to Russian!
>>>>
>>>> каталогизировать
>
> How about Irish? -
>
> pg_clár
>
> Nice and short! :-)
Well it's certainly more pronounceable for most of us than
пг_каталогизировать I'd wager.
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:32 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 19:37 ` Raymond O'Donnell <[email protected]>
2008-06-11 19:49 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Raymond O'Donnell @ 2008-06-11 19:37 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: Joshua D. Drake <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On 11/06/2008 20:32, Dave Page wrote:
> On Wed, Jun 11, 2008 at 8:27 PM, Raymond O'Donnell <[email protected]> wrote:
>> On 11/06/2008 19:55, Joshua D. Drake wrote:te:
>>>>> I couldn't find the swahili so I divert to Russian!
>>>>>
>>>>> каталогизировать
>> How about Irish? -
>>
>> pg_clár
>>
>> Nice and short! :-)
>
> Well it's certainly more pronounceable for most of us than
> пг_каталогизировать I'd wager.
My wife is beside me on the couch here at home, and has been following
this thread second-hand - she reckons we all have too much time on our
hands..... :-P
Ray.
------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
[email protected]
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:32 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 19:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
@ 2008-06-11 19:49 ` Dave Page <[email protected]>
2008-06-11 19:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 19:49 UTC (permalink / raw)
To: [email protected]; +Cc: Joshua D. Drake <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
2008/6/11 Raymond O'Donnell <[email protected]>:
> My wife is beside me on the couch here at home, and has been following
> this thread second-hand - she reckons we all have too much time on our
> hands..... :-P
</me waves>
She's most probably right...
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:32 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 19:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:49 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 19:53 ` Joshua D. Drake <[email protected]>
2008-06-11 19:56 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Joshua D. Drake @ 2008-06-11 19:53 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: [email protected]; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, 2008-06-11 at 20:49 +0100, Dave Page wrote:
> 2008/6/11 Raymond O'Donnell <[email protected]>:
> > My wife is beside me on the couch here at home, and has been following
> > this thread second-hand - she reckons we all have too much time on our
> > hands..... :-P
>
> </me waves>
>
> She's most probably right...
>
I wonder if that means that Raymond is volunteering for some tasks.
Dave, didn't you have a list of, "it would be nice to get these done
someday" items?
Joshua D> Drake
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:32 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 19:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:49 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 19:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
@ 2008-06-11 19:56 ` Dave Page <[email protected]>
2008-06-11 20:07 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
0 siblings, 1 reply; 22+ messages in thread
From: Dave Page @ 2008-06-11 19:56 UTC (permalink / raw)
To: Joshua D. Drake <[email protected]>; +Cc: [email protected]; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, Jun 11, 2008 at 8:53 PM, Joshua D. Drake <[email protected]> wrote:
>
>
> On Wed, 2008-06-11 at 20:49 +0100, Dave Page wrote:
>> 2008/6/11 Raymond O'Donnell <[email protected]>:
>> > My wife is beside me on the couch here at home, and has been following
>> > this thread second-hand - she reckons we all have too much time on our
>> > hands..... :-P
>>
>> </me waves>
>>
>> She's most probably right...
>>
>
> I wonder if that means that Raymond is volunteering for some tasks.
> Dave, didn't you have a list of, "it would be nice to get these done
> someday" items?
Hey, that's a good point - what's your preference Raymond; PHP,
sysadmin work or C++?
:-p
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:32 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 19:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Raymond O'Donnell <[email protected]>
2008-06-11 19:49 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 19:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 19:56 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
@ 2008-06-11 20:07 ` Raymond O'Donnell <[email protected]>
0 siblings, 0 replies; 22+ messages in thread
From: Raymond O'Donnell @ 2008-06-11 20:07 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: Joshua D. Drake <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
On 11/06/2008 20:56, Dave Page wrote:
> On Wed, Jun 11, 2008 at 8:53 PM, Joshua D. Drake <[email protected]> wrote:
>
>> I wonder if that means that Raymond is volunteering for some tasks.
>> Dave, didn't you have a list of, "it would be nice to get these done
>> someday" items?
>
> Hey, that's a good point - what's your preference Raymond; PHP,
> sysadmin work or C++?
She'd be the first to tell me that I spend too much time coding... I am,
after all, a part-time IT person.... :-)
Seriously, though, I can do some PHP - but ask me again in a few months'
time - am up to my gills with work just now.
Ray.
------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
[email protected]
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:50 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:55 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Joshua D. Drake <[email protected]>
@ 2008-06-11 21:09 ` Alexey Klyukin <[email protected]>
1 sibling, 0 replies; 22+ messages in thread
From: Alexey Klyukin @ 2008-06-11 21:09 UTC (permalink / raw)
To: Joshua D. Drake <[email protected]>; +Cc: Dave Page <[email protected]>; Magnus Hagander <[email protected]>; Greg Sabino Mullane <[email protected]>; pgsql-www
Joshua D. Drake wrote:
>
>
> On Wed, 2008-06-11 at 19:52 +0100, Dave Page wrote:
> > On Wed, Jun 11, 2008 at 7:50 PM, Joshua D. Drake <[email protected]> wrote:
>
> > > I couldn't find the swahili so I divert to Russian!
> > >
> > > каталогизировать
> >
> > Hmm - is pg_каталогизировать valid? Or does the prefix change the
> > meaning in some way?
> >
> > We have to get these things right y'know...
>
> пг_каталогизировать
>
> Should do it :) Of course their might be the problem with tab complete.
Hey, it's not пг_каталогизировать but пг_каталог. Even shorter :)
--
Alexey Klyukin http://www.commandprompt.com/
The PostgreSQL Company - Command Prompt, Inc.
^ permalink raw reply [nested|flat] 22+ messages in thread
* Re: New software catalog fails (why are we spelling it "catalogue"?)
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 15:26 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 16:31 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Dave Page <[email protected]>
2008-06-11 18:37 ` Re: New software catalog fails (why are we spelling it "catalogue"?) Magnus Hagander <[email protected]>
@ 2008-06-11 18:40 ` Dave Page <[email protected]>
1 sibling, 0 replies; 22+ messages in thread
From: Dave Page @ 2008-06-11 18:40 UTC (permalink / raw)
To: Magnus Hagander <[email protected]>; +Cc: Greg Sabino Mullane <[email protected]>; pgsql-www
On Wed, Jun 11, 2008 at 7:37 PM, Magnus Hagander <[email protected]> wrote:
> Dave Page wrote:
>> On Wed, Jun 11, 2008 at 5:31 PM, Greg Sabino Mullane <[email protected]> wrote:
>>> I await your patch to have PG start using "pg_catalogue" ;)
>>
>> I'm actually very tempted to do so, if only to see how people reacted :-p
>
> I wonder if I'll loose my commit permissions if I commit that patch for
> you real quick.. ;-)
Well as it would probably be down to me to remove it....
--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 22+ messages in thread
end of thread, other threads:[~2008-06-11 21:09 UTC | newest]
Thread overview: 22+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2008-06-11 14:45 New software catalog fails (why are we spelling it "catalogue"?) Greg Sabino Mullane <[email protected]>
2008-06-11 14:53 ` Dave Page <[email protected]>
2008-06-11 15:26 ` Dave Page <[email protected]>
2008-06-11 16:31 ` Greg Sabino Mullane <[email protected]>
2008-06-11 18:30 ` Dave Page <[email protected]>
2008-06-11 18:37 ` Magnus Hagander <[email protected]>
2008-06-11 18:40 ` Joshua D. Drake <[email protected]>
2008-06-11 18:41 ` Dave Page <[email protected]>
2008-06-11 18:50 ` Joshua D. Drake <[email protected]>
2008-06-11 18:52 ` Dave Page <[email protected]>
2008-06-11 18:55 ` Joshua D. Drake <[email protected]>
2008-06-11 19:27 ` Raymond O'Donnell <[email protected]>
2008-06-11 19:29 ` Joshua D. Drake <[email protected]>
2008-06-11 19:30 ` Alvaro Herrera <[email protected]>
2008-06-11 19:32 ` Dave Page <[email protected]>
2008-06-11 19:37 ` Raymond O'Donnell <[email protected]>
2008-06-11 19:49 ` Dave Page <[email protected]>
2008-06-11 19:53 ` Joshua D. Drake <[email protected]>
2008-06-11 19:56 ` Dave Page <[email protected]>
2008-06-11 20:07 ` Raymond O'Donnell <[email protected]>
2008-06-11 21:09 ` Alexey Klyukin <[email protected]>
2008-06-11 18:40 ` Dave Page <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox