aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExportControllerDelegate.m
Commit message (Collapse)AuthorAgeFilesLines
* merge SPExportController (part of #2789)Max2018-01-201-359/+0
|
* fix various compile warningsAbhi Beckert2016-04-031-2/+2
|
* Fix: "Custom filename" in export dialog would accept multi line text (#2325)Max2015-11-131-1/+1
|
* Allow import of saved export settings (in export dialog)Max2015-11-071-4/+14
|
* Change how the custom filename pattern in export dialog is handledMax2015-10-121-56/+197
| | | | | | | | Namely: * They were previously stored in the users locale. Now they are stored using a language independent id * Just typing a token in your language will no longer work. If you want to manually type a token use: {host}, {database}, and so on… (all in English) * Copy & Paste of tokens will use the new form, too (so a user running SP in English can simply share a custom pattern with a user running SP in German) * The localized token names can now contain spaces
* Change [NSArray arrayWithObject:] to @[] literalMax2014-12-131-1/+1
| | | | Note: [NSArray arrayWithObjects:...,nil] is left unchanged as that could possibly cause a NPE if converted to @[]
* Update URL in source file header to point to GitHub.Stuart Connolly2014-01-261-1/+1
|
* Remove SVN property placeholder.Stuart Connolly2014-01-261-2/+0
|
* - Add support for export path tokens containing non-alphanumeric ↵rowanbeentje2013-03-041-0/+27
| | | | characters, automatically grouping and tokenising as required for both dragged and typed tokens. This addresses Issue #1567.
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-12/+19
|
* Improve the availability of the table name token on the custom export ↵stuconnolly2012-04-011-10/+18
| | | | | | | | | | filename selection. It's now no longer available during the following situations: - Exporting more than one table during an SQL export - Exporting more than one table during a CSV or XML, but only if the export to multiple files is not checked
* Implement a large number of minor fixes and improvements to export ↵rowanbeentje2011-05-071-0/+76
| | | | | | | | | | | | | | | | | | | | | | functionality, including an overhaul of filename NSTokenField functionality: - Improve the NSTokenField used for export filenames: only tokenise reserved tokens, don't tokenise reserved words which are parts of other words, allow the comma to be used, update tokenisation during typing, and prevent whitespace triming. - Save the last selected export path, and make the path selection button open a dialog to the selected directory - Save the export filename and restore on future uses of the export dialog (only if the name contains placeholder tokens, so one-off export names aren't saved) - If the advanced options are collapsed, display a summary of the selected options next to the disclosure triangle - Display a small warning in the corner of the window if the export file cannot be imported into Sequel Pro, to warn those people attempting to back up their databases in XML - Clarify and improve the export warning dialog if files already exist or could not be created; make the simpler file-exists cases reflect OS-style dialogs, alter wording based on the number of files that failed and how they failed, and only show the "replace" or "skip" type buttons if it makes sense to do so. - Fix a mutation-during-enumeration error when skipping files - If "Cancel" is chosen in the export file creation replace/error dialog, redisplay the export sheet with the previous selection still active - Add support for year, month and day tokens in the filename token list - Don't allow blank custom filenames, before or after tokenisation, as this can cause problems - instead fall back to default filenames in those cases - Only append the extension if one hasn't been set - on all export formats, extending r3284 - If exporting to multiple files option is enabled but only one table is selected, supply that table name for filename table tokens - Update the progress bar to reflect update progress when exporting CSV data - Fix a bug causing exports to hang if the low-memory advanced option was set and content was selected to export and any empty tables were encountered - Save memory use and compression advanced export settings across sessions - Update localisable strings
* Fix more compiler warnings.stuconnolly2011-03-041-0/+9
|
* Remove the implementation of tableView:shouldSelectRow: from the export ↵stuconnolly2010-10-251-5/+0
| | | | controller, which allows selecting rows within the table list via the mouse and keyboard.
* - Split out all of SPExportController's delegate methods to their own category.stuconnolly2010-10-241-0/+88
- Prepare for the implementation of PDF and HTML export by hiding the export options box for export types that don't need it. - Fix some spacing issues on the export dialog. - Create a new SPCategoryAdditions header that is included in the apps precompiled header, making all additions available to all classes. - Update strings files.