aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/ExportDialog.xib
Commit message (Collapse)AuthorAgeFilesLines
* Allow XIB to be opened with Xcode 4.6Stuart Connolly2014-01-181-6944/+4248
|
* Build config update:stuconnolly2013-01-241-17/+3
| | | | | | | | | - Update base SDK to 10.6 - Update minimum OS version to 10.6 - Update all XIB to have a 10.6 target - Drop support for PPC - Apply all of the above to frameworks SPMySQLFramework and QueryKit
* Issue #1519: Fix auto-sizing of export filename and truncate it when it ↵stuconnolly2013-01-031-17/+41
| | | | becomes too big.
* Fix IB warnings.stuconnolly2012-08-031-11111/+11019
|
* - Remove all BWToolKit elements from the ExportDialog, ↵rowanbeentje2012-08-021-7523/+11111
| | | | DatabaseServerVariables, Navigator, and IndexesView nibs, replacing with SPSplitView and standard equivalents
* Layout fixes.stuconnolly2011-10-081-16/+18
|
* * Fixes some localization spacing issues reported by Frédéric Latourdmoagx2011-09-021-13/+17
|
* SQL export: Disable the 'include drop syntax option' when the structure ↵stuconnolly2011-07-261-69/+67
| | | | option is not enabled.
* Add the option to the SQL export view as to whether or not the ↵stuconnolly2011-07-101-82/+142
| | | | AUTO_INCREMENT value on a table's structure is included. Defaults to not included. Implements issue #1064.
* * Fixes most parts of #1006 (Translation of file names)dmoagx2011-05-101-13/+13
| | | | * Update strings files
* Fix slight interface alignment issue.stuconnolly2011-05-071-17/+12
|
* Implement a large number of minor fixes and improvements to export ↵rowanbeentje2011-05-071-10/+139
| | | | | | | | | | | | | | | | | | | | | | 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
* * UI fixes for #982 #971dmoagx2011-03-071-66/+79
|
* * Little translation GUI QA - still many bugs in ExportViewdmoagx2011-01-161-20/+20
|
* Apply a tweaked version of a patch by Aaron Linville ↵rowanbeentje2010-12-051-30/+170
| | | | | | | | | | (http://www.linville.org/) to handle table linking in .dot exports on case-insensitive servers: - Adds a new checkbox on the .dot export interface controlling the case sensitivty of link handling - Improve .dot export to use lowercase link references when the option is enabled, fixing .dot exports of table relations of table names with uppercase characters on case-insensitive servers - Check the server's case-sensitivity setting and use that to control the checkbox when using the export interface to select .dot export This addresses Issue #920.
* Complete the implementation of supporting MySQL's XML schema format when ↵stuconnolly2010-11-051-14/+376
| | | | exporting. Also, restore our old format and give the user the choice during export (defaults to MySQL schema). Completes the implementation of issue #840.
* - Split out all of SPExportController's delegate methods to their own category.stuconnolly2010-10-241-243/+52
| | | | | | | | - 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.
* Exporter:rowanbeentje2010-08-261-28/+40
| | | | | | - Enable alternating table lines in the export table view - this addresses Issue #797 - Reconnect GZIp & BZIP2 compression functionality (TODO: not currently working for file overwrites; to be discussed)
* During a CSV export if the user selects the tab as the separator update the ↵stuconnolly2010-07-251-9/+31
| | | | extension to be .tsv
* In addition to Gzip compression support when exporting SQL dumps add the ↵stuconnolly2010-07-241-166/+330
| | | | | | | | | | | | | | | | | | ability to use Bzip2 compression. Other changes include: + Enable the use of export compression (Gzip and Bzip2) for all export formats. + Move the compression options in the export dialog to the 'Advanced' export settings view. + Simplify the setting of common exporter properties (e.g. the connection, use of compression). + Fix a potential memory leak in the dot exporter. + Update the data importer to recognise Bzip2 compressed files. + Fix several display issues on export dialog. + Restore the default .csv file extension of CSV exports. + Correctly update the default export filename when selecting a output compression type. The addition of Bzip2 compression support implements issue #688.
* Fix a very minor display issue on the export dialog's custom filename view ↵stuconnolly2010-07-121-8/+10
| | | | box by extending the parent tab view's width.
* Change the export dialog's 'Selected Tables' option to simply 'Tables' and ↵stuconnolly2010-07-061-15/+14
| | | | update strings files.
* Fix the resizing of the export dialog when the sheet is already ↵stuconnolly2010-07-051-5/+5
| | | | accommodating all available space. Also, change the cancel button's shortcut to escape. Thanks Hans.
* • resized GUI elements for localisation of longer explanationsBibiko2010-07-051-26/+33
|
* Simplify the ease at which export filename tokens can be localised as well ↵stuconnolly2010-07-051-10/+438
| | | | as how they are updated with respect to the selected export type.
* Add tooltips to the export dialog's tableview.stuconnolly2010-06-301-9/+12
|
* Fix a missing connection to customise the NULL placeholder for XML exports.stuconnolly2010-06-181-7/+15
|
* Fix the autoresizing properties of the custom filename view of the export ↵stuconnolly2010-06-151-4/+4
| | | | dialog.
* Export dialog sizing.stuconnolly2010-06-131-6/+6
|
* Exporter ehancements:stuconnolly2010-06-131-3276/+3531
| | | | | | | - Make sure the export button is disabled when the global structure, content and drop options are enabled, but the desellect all button is checked. - Replace the export dialog toolbar with a tabview, reducing the dialogs overall size. - Add the option to SQL dumps to specify when a new INSERT statement should be created, either after a certain amount of data or after a specific number of rows (defaults to every 250KiB). Known issue: incorrect VALUES clause generation of last row when creating a new INSERT after a specific number of rows.
* Exporter enhancements, including:stuconnolly2010-06-091-700/+663
| | | | | | | | - Move the custom filename options view to a drop down view on the main exporter dialog. - Change the export data source matrix to a popup button. - Fix the export button being enabled when no tables are selected to be exported. - Various interface validation fixes.
* On the XML export dialog add the option to specify the placeholder of ↵stuconnolly2010-06-061-20/+104
| | | | exported NULL values. Fixes issue #718.
* - Exporter: SQL select/deselect all will now toggle structure/drop table if ↵rowanbeentje2010-06-061-14/+15
| | | | | | | | those are enabled - Exporter: SQL export now correctly excludes structure/drop table if the global structure/drop toggles are disabled - Exporter: Save exporter window size
* Fix autoresizing properties of the UTF-8 BOM option on the export dialog.stuconnolly2010-05-251-3/+3
|
* Merge export redesign branch back into trunk.stuconnolly2010-05-241-646/+2058
| | | | | | | | | | | | | | | | | | | | | Includes a completely redesign approach to all export data types based on the use of NSOperation subclasses. CSV, SQL, XML and dot export types are currently functional, while the source files for PDF and HTML export types exist they are to be implemented, but are currently hidden from the interface. Also includes the following: - Completely redesigned export interface. - The ability to customize CSV NULL values. - The ability to specify whether the UTF-8 BOM should be used in SQL dumps. - The ability to specify whether BLOB fields are output as hex or plain text during SQL dumps. Defaults to hex. - Exporting currently selected tables via the tables list context menu. Outstanding issues: - Not all progress indicators for all export types are functional (or functioning correctly). - A few issues related to the introduction of only exporting the content and create and drop syntax of specific tables during SQL dumps. Needs some serious testing and benchmarking to ensure it replicates the current export functionality.
* Resolve IB checkbox warnings.stuconnolly2009-11-171-31/+48
|
* Yet more export redesign work. Export is now currently working for single ↵stuconnolly2009-10-091-153/+874
| | | | tables, but produces deadlock errors when attempting to export multiple tables as a result of the initial streaming request for the tables' data all being done from the same thread. To resolve this each of the streaming requests will be made concurrently in separate operations and once the data is available a new concurrent operation (SPExporter subclass instance) will be spawned to perform the data conversion process.
* Forgot the project file and the export XIB.stuconnolly2009-08-291-27/+538
|
* - Fix missing images - file names had changedavenjamin2009-06-101-17/+24
|
* - part 5 of merge from 'avenjamin' branch into trunk.avenjamin2009-04-101-0/+3498
- committing 3 new Nib files