[pgadmin-hackers] pgAdmin website commit: Remove some old news.
Remove some old news. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=e04b29cf706aadfe0aadc60b436b42abbe4a33f6 Modified Files -- index.php |8 1 files changed, 0 insertions(+), 8 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] Website moved
The main website, www.pgadmin.org, has been moved to a new server. Please let me know if any problems are seen. Thanks. -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin III commit: Ask to reset connection in the query tool
hmm, seem that it asks about reconnection even when query has syntax error from messages tab: ERROR: syntax error at or near "to" СТРОКА 3: substring(sender from 1 to 11), ^ ** Ошибка ** ERROR: syntax error at or near "to" SQL state: 42601 Символ: 52 2011/5/4 Guillaume Lelarge > Ask to reset connection in the query tool > > If a query fails because of a bad connection, the query tool will ask the > user > if he wants an automatic reset. If yes, it'll try to reset the connection. > > Branch > -- > master > > Details > --- > > http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=7cbb6b50b7a9524b6a19323fcee79be4af29a479 > > Modified Files > -- > CHANGELOG |1 + > pgadmin/db/pgConn.cpp |6 ++ > pgadmin/frm/frmQuery.cpp| 24 +++- > pgadmin/include/db/pgConn.h |2 ++ > 4 files changed, 28 insertions(+), 5 deletions(-) > > > -- > Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgadmin-hackers > -- All bugs reserved
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On Sat, Apr 30, 2011 at 11:20 PM, Guillaume Lelarge wrote: > Hi, > > I've been working on this today, and here is what I came up to: > > http://wwwdevel.pgadmin.org/visualtour14.php > > It still needs some love. I need fresh ideas, comments, english fixes, > design skills, and all that kind of stuff. I don't think I forgot new > functionalities, but if it happened, please tell me. Can I edit that file directly? Seems easier than giving feedback. -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 03:47 PM, Dave Page wrote: > On Sat, Apr 30, 2011 at 11:20 PM, Guillaume Lelarge > wrote: >> Hi, >> >> I've been working on this today, and here is what I came up to: >> >> http://wwwdevel.pgadmin.org/visualtour14.php >> >> It still needs some love. I need fresh ideas, comments, english fixes, >> design skills, and all that kind of stuff. I don't think I forgot new >> functionalities, but if it happened, please tell me. > > Can I edit that file directly? Seems easier than giving feedback. > Sure, go ahead. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 04:05 PM, Guillaume Lelarge wrote: > On 05/04/2011 03:47 PM, Dave Page wrote: >> On Sat, Apr 30, 2011 at 11:20 PM, Guillaume Lelarge >> wrote: >>> Hi, >>> >>> I've been working on this today, and here is what I came up to: >>> >>> http://wwwdevel.pgadmin.org/visualtour14.php >>> >>> It still needs some love. I need fresh ideas, comments, english fixes, >>> design skills, and all that kind of stuff. I don't think I forgot new >>> functionalities, but if it happened, please tell me. >> >> Can I edit that file directly? Seems easier than giving feedback. >> > > Sure, go ahead. > As you weren't working on it, I did a few changes that Vik Reykja told me about. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] Warning about PNGs
Ok, this will show how long ago it was I rebuilt pgadmin ;) But when I did, and then ran it, I get: 07:21:29 PM: Debug: Adding duplicate image handler for 'PNG file' Is that "normal"? Intended? Buglet? -- Magnus Hagander Me: http://www.hagander.net/ Work: http://www.redpill-linpro.com/ -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] Warning about PNGs
On Wed, May 4, 2011 at 6:22 PM, Magnus Hagander wrote: > Ok, this will show how long ago it was I rebuilt pgadmin ;) But when I > did, and then ran it, I get: > > 07:21:29 PM: Debug: Adding duplicate image handler for 'PNG file' > > Is that "normal"? Intended? Buglet? Harmless buglet that I didn't figure out a clean way around yet. -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] Bug in server status view
The server status view does not properly display the "blocked by" field, unless it's blocked by a table level lock. In particular, if you create a row-lock, it shows empty. Attached patch changes two things: 1) Detects lock conflicts on transaction id's, which is where row locks normally show up 2) Change it so that if we know the query is blocked, but we can't figure out who it's blocked by, it shows -1. Today, it just shows NULL, which is exactly the same as it shows if it is not blocked at all - making it quite useless... Comments? -- Magnus Hagander Me: http://www.hagander.net/ Work: http://www.redpill-linpro.com/ diff --git a/pgadmin/frm/frmStatus.cpp b/pgadmin/frm/frmStatus.cpp index e87bd1b..336a7ca 100644 --- a/pgadmin/frm/frmStatus.cpp +++ b/pgadmin/frm/frmStatus.cpp @@ -1315,8 +1315,11 @@ void frmStatus::OnRefreshStatusTimer(wxTimerEvent &event) if (connection->BackendMinimumVersion(8, 3)) q += wxT(",\nxact_start "); - q += wxT(", (SELECT min(pid) FROM pg_locks l1 WHERE GRANTED AND relation IN ") - wxT("(SELECT relation FROM pg_locks l2 WHERE l2.pid=procpid AND NOT granted)) AS blockedby, ") + q += wxT(", (SELECT min(pid) FROM pg_locks l1 WHERE GRANTED AND (") + wxT("relation IN (SELECT relation FROM pg_locks l2 WHERE l2.pid=procpid AND NOT granted)") + wxT(" OR ") + wxT("transactionid IN (SELECT transactionid FROM pg_locks l3 WHERE l3.pid=procpid AND NOT GRANTED)") + wxT(")) AS blockedby, ") wxT("current_query, ") wxT("CASE WHEN query_start IS NULL THEN false ELSE query_start + '10 seconds'::interval > now() END AS slowquery ") wxT("FROM pg_stat_activity ") -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On Wed, May 4, 2011 at 6:08 PM, Guillaume Lelarge wrote: > On 05/04/2011 04:05 PM, Guillaume Lelarge wrote: >> On 05/04/2011 03:47 PM, Dave Page wrote: >>> On Sat, Apr 30, 2011 at 11:20 PM, Guillaume Lelarge >>> wrote: Hi, I've been working on this today, and here is what I came up to: http://wwwdevel.pgadmin.org/visualtour14.php It still needs some love. I need fresh ideas, comments, english fixes, design skills, and all that kind of stuff. I don't think I forgot new functionalities, but if it happened, please tell me. >>> >>> Can I edit that file directly? Seems easier than giving feedback. >>> >> >> Sure, go ahead. >> > > As you weren't working on it, I did a few changes that Vik Reykja told > me about. OK, I made a pass over it and tweaked a bunch of things. One thing I didn't fix: ' . _("Select old values when connecting to another server and Load plugins from any .ini file found in a new ") . ' The text seems to appear randomly in the file. Unfinished paragraph? Also (I can't be bothered to check this now as I'm too tired) - do we only allow the user to install extensions that the server knows about as the text implies? Because you can add any extension to the filesystem and use CREATE EXTENSION on it, as long as the control file is in the right place. -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] Bug in server status view
On 05/04/2011 07:57 PM, Magnus Hagander wrote: > The server status view does not properly display the "blocked by" > field, unless it's blocked by a table level lock. In particular, if > you create a row-lock, it shows empty. > > Attached patch changes two things: > 1) Detects lock conflicts on transaction id's, which is where row > locks normally show up > 2) Change it so that if we know the query is blocked, but we can't > figure out who it's blocked by, it shows -1. Today, it just shows > NULL, which is exactly the same as it shows if it is not blocked at > all - making it quite useless... > > > Comments? > Seems great to me. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 08:05 PM, Dave Page wrote: > On Wed, May 4, 2011 at 6:08 PM, Guillaume Lelarge > wrote: >> On 05/04/2011 04:05 PM, Guillaume Lelarge wrote: >>> On 05/04/2011 03:47 PM, Dave Page wrote: On Sat, Apr 30, 2011 at 11:20 PM, Guillaume Lelarge wrote: > Hi, > > I've been working on this today, and here is what I came up to: > > http://wwwdevel.pgadmin.org/visualtour14.php > > It still needs some love. I need fresh ideas, comments, english fixes, > design skills, and all that kind of stuff. I don't think I forgot new > functionalities, but if it happened, please tell me. Can I edit that file directly? Seems easier than giving feedback. >>> >>> Sure, go ahead. >>> >> >> As you weren't working on it, I did a few changes that Vik Reykja told >> me about. > > OK, I made a pass over it and tweaked a bunch of things. One thing I didn't > fix: > > > ' . _("Select old values when connecting to another server and > Load plugins from any .ini file found in a new ") . ' > > > The text seems to appear randomly in the file. Unfinished paragraph? > Yes, will work on this right now. > Also (I can't be bothered to check this now as I'm too tired) - do we > only allow the user to install extensions that the server knows about > as the text implies? Yes. > Because you can add any extension to the > filesystem and use CREATE EXTENSION on it, as long as the control file > is in the right place. > Hmm, I'll have to check this, I never tried. If you're right, we just need to make the combobox editable. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 09:06 PM, Guillaume Lelarge wrote: > On 05/04/2011 08:05 PM, Dave Page wrote: >> On Wed, May 4, 2011 at 6:08 PM, Guillaume Lelarge >> wrote: >>> On 05/04/2011 04:05 PM, Guillaume Lelarge wrote: On 05/04/2011 03:47 PM, Dave Page wrote: > On Sat, Apr 30, 2011 at 11:20 PM, Guillaume Lelarge > wrote: >> Hi, >> >> I've been working on this today, and here is what I came up to: >> >> http://wwwdevel.pgadmin.org/visualtour14.php >> >> It still needs some love. I need fresh ideas, comments, english fixes, >> design skills, and all that kind of stuff. I don't think I forgot new >> functionalities, but if it happened, please tell me. > > Can I edit that file directly? Seems easier than giving feedback. > Sure, go ahead. >>> >>> As you weren't working on it, I did a few changes that Vik Reykja told >>> me about. >> >> OK, I made a pass over it and tweaked a bunch of things. One thing I didn't >> fix: >> >> >> ' . _("Select old values when connecting to another server and >> Load plugins from any .ini file found in a new ") . ' >> >> >> The text seems to appear randomly in the file. Unfinished paragraph? >> > > Yes, will work on this right now. > Done, but I don't really like how I explained the plugins directory. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On Wed, May 4, 2011 at 8:24 PM, Guillaume Lelarge wrote: > > Done, but I don't really like how I explained the plugins directory. I rewrote the paragraph. I think it works now - does it look OK to you? -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 09:32 PM, Dave Page wrote: > On Wed, May 4, 2011 at 8:24 PM, Guillaume Lelarge > wrote: >> >> Done, but I don't really like how I explained the plugins directory. > > I rewrote the paragraph. I think it works now - does it look OK to you? > More than OK, just great :) I still have much to learn about the english language when I see all the fixes you and others did. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin III commit: Fix showing of blocked processes in the status view
Fix showing of blocked processes in the status view Properly show blocked processes when the lock is on transactionid, and show -1 if it's blocking but we can't figure out what it's blocking on. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=c1fa4f426683936834046b15ebf759e9dcc54088 Modified Files -- CHANGELOG |3 +++ pgadmin/frm/frmStatus.cpp |7 +-- 2 files changed, 8 insertions(+), 2 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin III commit: Fix showing of blocked processes in the status view
Fix showing of blocked processes in the status view Properly show blocked processes when the lock is on transactionid, and show -1 if it's blocking but we can't figure out what it's blocking on. Branch -- REL-1_12_0_PATCHES Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=c9dd6b647d151c5bfc25812e873aa5650260d4d4 Modified Files -- CHANGELOG |3 +++ pgadmin/frm/frmStatus.cpp |7 +-- 2 files changed, 8 insertions(+), 2 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin III commit: Comments are available on fdw and foreign server
Comments are available on fdw and foreign server Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=f61afea85a688d9edaa1fc46353a5773cae22858 Modified Files -- pgadmin/dlg/dlgForeignDataWrapper.cpp |4 ++-- pgadmin/dlg/dlgForeignServer.cpp |3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On Wed, May 4, 2011 at 8:39 PM, Guillaume Lelarge wrote: > On 05/04/2011 09:32 PM, Dave Page wrote: >> On Wed, May 4, 2011 at 8:24 PM, Guillaume Lelarge >> wrote: >>> >>> Done, but I don't really like how I explained the plugins directory. >> >> I rewrote the paragraph. I think it works now - does it look OK to you? >> > > More than OK, just great :) Thanks :-) > I still have much to learn about the english language when I see all the > fixes you and others did. Mostly just language oddities I think. Generally, your English is excellent. -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 09:51 PM, Dave Page wrote: > On Wed, May 4, 2011 at 8:39 PM, Guillaume Lelarge > wrote: >> On 05/04/2011 09:32 PM, Dave Page wrote: >>> On Wed, May 4, 2011 at 8:24 PM, Guillaume Lelarge >>> wrote: Done, but I don't really like how I explained the plugins directory. >>> >>> I rewrote the paragraph. I think it works now - does it look OK to you? >>> >> >> More than OK, just great :) > > Thanks :-) > Do we publish it right now, or should we wait? >> I still have much to learn about the english language when I see all the >> fixes you and others did. > > Mostly just language oddities I think. Generally, your English is excellent. > Thanks :) -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On Wednesday, May 4, 2011, Guillaume Lelarge wrote: > On 05/04/2011 09:51 PM, Dave Page wrote: >> On Wed, May 4, 2011 at 8:39 PM, Guillaume Lelarge >> wrote: >>> On 05/04/2011 09:32 PM, Dave Page wrote: On Wed, May 4, 2011 at 8:24 PM, Guillaume Lelarge wrote: > > Done, but I don't really like how I explained the plugins directory. I rewrote the paragraph. I think it works now - does it look OK to you? >>> >>> More than OK, just great :) >> >> Thanks :-) >> > > Do we publish it right now, or should we wait? Sure, why not? -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin III commit: Fix the way we check for bad connection
Fix the way we check for bad connection Report from Timon. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=ca978346abcd959f0e4f436802ea422cef5a59a5 Modified Files -- pgadmin/frm/frmQuery.cpp | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin III commit: Ask to reset connection in the query tool
On 05/04/2011 02:21 PM, Timon wrote: > hmm, seem that it asks about reconnection even when query has syntax error > > from messages tab: > ERROR: syntax error at or near "to" > СТРОКА 3: substring(sender from 1 to 11), >^ > ** Ошибка ** > ERROR: syntax error at or near "to" > SQL state: 42601 > Символ: 52 > Fixed. Even if I'm not really proud of the fix. Not sure I really want to keep that patch. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin website commit: Add 1.14 visual tour.
Add 1.14 visual tour. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=487bfc9d2557dd5492533e89f5339f505ae6e3f8 Modified Files -- .../visualtour14/add_adminpack_extension_hint.png | Bin 0 -> 53638 bytes images/visualtour14/backup_tab1.png| Bin 0 -> 28618 bytes images/visualtour14/backup_tab3.png| Bin 0 -> 32212 bytes images/visualtour14/closeddatabase.png | Bin 0 -> 814 bytes images/visualtour14/constraint_actions.png | Bin 0 -> 6451 bytes images/visualtour14/database.png | Bin 0 -> 706 bytes images/visualtour14/database_stats.png | Bin 0 -> 21981 bytes images/visualtour14/foreignkey.png | Bin 0 -> 299 bytes images/visualtour14/foreignkeybad.png | Bin 0 -> 618 bytes images/visualtour14/function_actions.png | Bin 0 -> 8845 bytes images/visualtour14/new_collation_tab1.png | Bin 0 -> 24983 bytes images/visualtour14/new_collation_tab2.png | Bin 0 -> 23912 bytes images/visualtour14/new_column_tab2.png| Bin 0 -> 30904 bytes images/visualtour14/new_composite_type_tab3.png| Bin 0 -> 30590 bytes images/visualtour14/new_constraint_tab2.png| Bin 0 -> 31677 bytes images/visualtour14/new_domain_tab2.png| Bin 0 -> 27394 bytes images/visualtour14/new_enumeration_type_tab3.png | Bin 0 -> 23285 bytes images/visualtour14/new_extension_tab1.png | Bin 0 -> 24557 bytes images/visualtour14/new_extension_tab2.png | Bin 0 -> 22405 bytes images/visualtour14/new_external_type_tab3.png | Bin 0 -> 44280 bytes images/visualtour14/new_index_tab3.png | Bin 0 -> 33256 bytes images/visualtour14/new_role_tab3.png | Bin 0 -> 35364 bytes images/visualtour14/new_sequence.png | Bin 0 -> 26997 bytes images/visualtour14/new_server_tab1.png| Bin 0 -> 35514 bytes images/visualtour14/new_server_tab2.png| Bin 0 -> 30258 bytes images/visualtour14/new_server_tab3.png| Bin 0 -> 27241 bytes images/visualtour14/new_table_tab2.png | Bin 0 -> 30032 bytes images/visualtour14/new_trigger_tab2.png | Bin 0 -> 37223 bytes images/visualtour14/querytool.png | Bin 0 -> 64883 bytes images/visualtour14/querytool_options.png | Bin 0 -> 41917 bytes images/visualtour14/rule.png | Bin 0 -> 373 bytes images/visualtour14/rulebad.png| Bin 0 -> 630 bytes images/visualtour14/server.png | Bin 0 -> 553 bytes images/visualtour14/server_actions.png | Bin 0 -> 14131 bytes images/visualtour14/server_props.png | Bin 0 -> 29596 bytes images/visualtour14/server_stats.png | Bin 0 -> 18968 bytes images/visualtour14/serverbad.png | Bin 0 -> 643 bytes images/visualtour14/serverstatus_showhide_cols.png | Bin 0 -> 36094 bytes images/visualtour14/table_actions.png | Bin 0 -> 42314 bytes images/visualtour14/table_stats.png| Bin 0 -> 20369 bytes images/visualtour14/tearabletabs.png | Bin 0 -> 19032 bytes images/visualtour14/trigger.png| Bin 0 -> 324 bytes images/visualtour14/triggerbad.png | Bin 0 -> 610 bytes menu.php |1 + visualtour14.php | 399 45 files changed, 400 insertions(+), 0 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin website commit: Automatic stringmerge using merge script.
Automatic stringmerge using merge script. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=61b18e2e6099e46bba0bbff642a029cc2469b3f7 Modified Files -- locale/cs_CZ/LC_MESSAGES/pgadmin3_website.mo | Bin 140585 -> 139967 bytes locale/cs_CZ/LC_MESSAGES/pgadmin3_website.po | 625 - locale/es_SV/LC_MESSAGES/pgadmin3_website.mo | Bin 138224 -> 137927 bytes locale/es_SV/LC_MESSAGES/pgadmin3_website.po | 721 - locale/fr_FR/LC_MESSAGES/pgadmin3_website.mo | Bin 151430 -> 150120 bytes locale/fr_FR/LC_MESSAGES/pgadmin3_website.po | 4141 +- locale/zh_CN/LC_MESSAGES/pgadmin3_website.mo | Bin 127255 -> 126664 bytes locale/zh_CN/LC_MESSAGES/pgadmin3_website.po | 623 - 8 files changed, 5125 insertions(+), 985 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
[pgadmin-hackers] pgAdmin website commit: Update .pot file
Update .pot file and fix an non ascii character in the visual tour. Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin-www.git;a=commitdiff;h=1d7e26d4bab0a952edba5c4435710d3c79a1f3ce Modified Files -- locale/pgadmin3_website.pot | 572 +++ visualtour14.php|2 +- 2 files changed, 523 insertions(+), 51 deletions(-) -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
Re: [pgadmin-hackers] pgAdmin 1.14 Visual Tour
On 05/04/2011 10:29 PM, Dave Page wrote: > On Wednesday, May 4, 2011, Guillaume Lelarge wrote: >> On 05/04/2011 09:51 PM, Dave Page wrote: >>> On Wed, May 4, 2011 at 8:39 PM, Guillaume Lelarge >>> wrote: On 05/04/2011 09:32 PM, Dave Page wrote: > On Wed, May 4, 2011 at 8:24 PM, Guillaume Lelarge > wrote: >> >> Done, but I don't really like how I explained the plugins directory. > > I rewrote the paragraph. I think it works now - does it look OK to you? > More than OK, just great :) >>> >>> Thanks :-) >>> >> >> Do we publish it right now, or should we wait? > > Sure, why not? > I wasn't sure. But I'm completely fine with publishing it. -- Guillaume http://www.postgresql.fr http://dalibo.com -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers