From: Neil T. <nt...@us...> - 2006-08-30 21:25:52
|
Update of /cvsroot/pgsqlformac/QueryTool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15451 Modified Files: MyOutlineView.m TODO.txt Log Message: Improve wording of menu items. Index: TODO.txt =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/TODO.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TODO.txt 30 Aug 2006 01:06:53 -0000 1.7 --- TODO.txt 30 Aug 2006 21:25:49 -0000 1.8 *************** *** 4,14 **** TODO - Features, Functions and Warnings (in priority order) ======================================= ! - 2006-06-02 Trigger SQL not complete. ! ! - 2006-06-16 Use new function to attempt to cancel a query in pgCocoaDB. Need to change to async queries. ! - 2006-08-13 Move Schema reading to another thread. Make it load in parallel. ! - 2006-08-18 Message during schema load is misleading. - 2006-08-26 Add save log function. --- 4,12 ---- TODO - Features, Functions and Warnings (in priority order) ======================================= ! - 2006_08-30 Sequence SQL not complete. ! - 2006-08-30 Constraints not tested in unit test pgCocoaDB. ! - 2006-06-16 Use function to attempt to cancel a query in pgCocoaDB. Need to change to async queries. - 2006-08-26 Add save log function. *************** *** 35,38 **** --- 33,46 ---- Completed ========= + - 2006-08-30 Column definitions only show type, not constraints (NOT NULL, UNIQUE, etc). (8/30/2006) + + - 2006-08-30 Constraints not in schema. (8/30/2006) + + - 2006-06-02 Trigger SQL not complete. (8/30/2006) + + - 2006-08-18 Message during schema load is misleading. Not relevant with threaded schema load. (8/30/2006) + + - 2006-08-13 Move Schema reading to another thread. Make it load in parallel. (8/30/2006) + - 2006-08-13 SQL Log does not contain enough information. (8/24/2006) *************** *** 41,47 **** - 2006-08-13 Fix bug with incorrect release of explorer while display was still using it. ! - 2006-08-13 Restructure ExplorerModel initWithConnection to respect display user defaults (ie setShowPGCatalog). ! - 2006-07-16 Fix TODO for autoincrementing index names - 2006-07-16 Use color to separate tables names and other database structure names from actual meta data. --- 49,55 ---- - 2006-08-13 Fix bug with incorrect release of explorer while display was still using it. ! - 2006-08-13 Restructure ExplorerModel initWithConnection to respect display user defaults (i.e. setShowPGCatalog). ! - 2006-07-16 Fix TODO for auto incrementing index names - 2006-07-16 Use color to separate tables names and other database structure names from actual meta data. *************** *** 63,67 **** See /usr/include/servers/bootstrap_defs.h for the error codes. 2006-06-22 17:27:23.422 Query Tool for Postgres[5640] CFLog (99): CFMessagePortCreateLocal(): failed to name Mach port (com.druware.postgres.QueryTool.ServiceProvider) ! (not sure what caused this, is not occuring any longer.) - 2006-05-27 Query tool connect box does not receive focus when first opened. (2006-06-22) Appears to be fixed since connect box is filled in with the results from the last connection. --- 71,75 ---- See /usr/include/servers/bootstrap_defs.h for the error codes. 2006-06-22 17:27:23.422 Query Tool for Postgres[5640] CFLog (99): CFMessagePortCreateLocal(): failed to name Mach port (com.druware.postgres.QueryTool.ServiceProvider) ! (not sure what caused this, is not occurring any longer.) - 2006-05-27 Query tool connect box does not receive focus when first opened. (2006-06-22) Appears to be fixed since connect box is filled in with the results from the last connection. *************** *** 77,81 **** - 2006-06-20 Does not save last connection parameters for reuse when re-launched. Added NSUserDefaults to connection pane. (2006-06-21) ! - 2006-06-20 separating sql statements by ";" does not correctly handle $$ quoted text required by functions. Fixed by removeing the parse of entered data. (2006-06-21) - 2006-06-02 First column of schema view default width is too small. (2006-06-20) --- 85,89 ---- - 2006-06-20 Does not save last connection parameters for reuse when re-launched. Added NSUserDefaults to connection pane. (2006-06-21) ! - 2006-06-20 separating sql statements by ";" does not correctly handle $$ quoted text required by functions. Fixed by removing the parse of entered data. (2006-06-21) - 2006-06-02 First column of schema view default width is too small. (2006-06-20) Index: MyOutlineView.m =================================================================== RCS file: /cvsroot/pgsqlformac/QueryTool/MyOutlineView.m,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** MyOutlineView.m 18 Aug 2006 17:46:01 -0000 1.7 --- MyOutlineView.m 30 Aug 2006 21:25:49 -0000 1.8 *************** *** 187,191 **** newItem = [[NSMenuItem alloc] init]; ! [newItem setTitle:@"SELECT * FROM <tab>"]; [newItem setTarget: menuActionTarget]; [newItem setAction: @selector(onSelectSelectTableMenuItem:)]; --- 187,191 ---- newItem = [[NSMenuItem alloc] init]; ! [newItem setTitle:@"SELECT * FROM <view>"]; [newItem setTarget: menuActionTarget]; [newItem setAction: @selector(onSelectSelectTableMenuItem:)]; *************** *** 193,197 **** newItem = [[NSMenuItem alloc] init]; ! [newItem setTitle:@"CREATE VIEW <tab> as <query>"]; [newItem setTarget: menuActionTarget]; [newItem setAction: @selector(onSelectCreateViewMenuItem:)]; --- 193,197 ---- newItem = [[NSMenuItem alloc] init]; ! [newItem setTitle:@"CREATE VIEW <name> as <query>"]; [newItem setTarget: menuActionTarget]; [newItem setAction: @selector(onSelectCreateViewMenuItem:)]; *************** *** 199,203 **** newItem = [[NSMenuItem alloc] init]; ! [newItem setTitle:@"CREATE VIEW template"]; [newItem setTarget: menuActionTarget]; [newItem setAction: @selector(onSelectCreateViewTemplateMenuItem:)]; --- 199,203 ---- newItem = [[NSMenuItem alloc] init]; ! [newItem setTitle:@"CREATE VIEW from template"]; [newItem setTarget: menuActionTarget]; [newItem setAction: @selector(onSelectCreateViewTemplateMenuItem:)]; |