diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-08-25 11:23:24 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-08-25 11:23:24 +0000 |
commit | ca7cce67d986c3a7e3d5b4d8503d33872e461b68 (patch) | |
tree | 10a0b0d319024a9b0589d2e083dc4d109b9fd73d /Source/TableDocument.h | |
parent | 94f177aa0e8350a9bba0790ee41b606c461a314f (diff) | |
download | sequelpro-ca7cce67d986c3a7e3d5b4d8503d33872e461b68.tar.gz sequelpro-ca7cce67d986c3a7e3d5b4d8503d33872e461b68.tar.bz2 sequelpro-ca7cce67d986c3a7e3d5b4d8503d33872e461b68.zip |
• re-factored the SPF file structure
- now it's an open format XML plist file with either encrypted <data> key or plain text <data> dict
- (if option "Save Passords") the passwords will be readable if no encryption!
- queries can be saved as plain text; whereby SP will compress the text chunk if length > 50k automatically
NOTE: Basically it's working but the Save SPF file accessory is now a bit out of sync - waiting for stuart02
Diffstat (limited to 'Source/TableDocument.h')
-rw-r--r-- | Source/TableDocument.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/TableDocument.h b/Source/TableDocument.h index c28673ac..04dfe8f8 100644 --- a/Source/TableDocument.h +++ b/Source/TableDocument.h @@ -96,6 +96,7 @@ IBOutlet id saveConnectionIncludeData; IBOutlet id saveConnectionSavePassword; IBOutlet id saveConnectionEncrypt; + IBOutlet id saveConnectionAutoConnect; IBOutlet NSSecureTextField *saveConnectionEncryptString; IBOutlet id inputTextWindow; @@ -131,7 +132,7 @@ NSString *queryEditorInitString; - NSDictionary *spf; + NSDictionary *spfSession; } - (NSString *)getHTMLforPrint; @@ -186,9 +187,10 @@ - (void)showVariables:(id)sender; - (void)closeConnection; - (NSWindow *)getCreateTableSyntaxWindow; -- (void) refreshCurrentDatabase; +- (void)refreshCurrentDatabase; - (void)saveConnectionPanelDidEnd:(NSSavePanel *)panel returnCode:(int)returnCode contextInfo:(void *)contextInfo; - (IBAction)saveConnectionAccessoryPasswordButton:(id)sender; +- (void)saveSPFtoFile:(NSString *)fileName; - (IBAction)closePasswordSheet:(id)sender; // Getter methods |