aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPContentFilterManager.m
Commit message (Collapse)AuthorAgeFilesLines
* Minor changesMax2018-05-141-1/+1
|
* #63: Add basic support for multiple filtersMax2018-05-071-19/+19
|
* Formatting changesMax2018-05-051-11/+11
|
* Merge remote-tracking branch 'origin/mergeclasses'Max2018-01-201-2/+0
|\ | | | | | | | | | | | | Conflicts: Source/SPQueryControllerInitializer.m Source/SPQueryDocumentsController.m Source/SPQueryFavoriteManager.m
| * merge SPQueryController (part of #2789)Max2018-01-201-1/+0
| |
| * Merge SPAppController (part of #2789)Max2018-01-201-1/+0
| |
* | Remove another 2 cases of very strange object notification behavior (code style)Max2018-01-171-4/+1
| |
* | Replace all calls to deprecated method ↵Max2018-01-131-10/+9
| | | | | | | | +propertyListFromData:mutabilityOption:format:errorDescription:
* | Replace all calls to deprecated method ↵Max2018-01-131-19/+25
|/ | | | +propertyListFromData:mutabilityOption:format:errorDescription:
* Fix an exception when removing custom content filters via the outline ↵Max2017-03-151-2/+2
| | | | view’s context menu (#2733)
* Replace some legacy NSIndexSet enumeration with 10.6+ style ↵Max Lohrmann2017-03-121-13/+4
| | | | -enumerateIndexesUsingBlock:
* Fix a spelling mistake (code)Max2016-07-101-2/+2
|
* fix warningsAbhi Beckert2016-04-101-0/+1
|
* * Add QuickLook support for "export settings" filesMax2015-11-151-1/+1
| | | | | | * Add MGTemplateEngine to the QL plugin * Reorder the generator code a bit, so it's not one monolithic function * Add constants for some other sfp format types
* Change two magic strings into constantsMax2015-10-101-2/+2
|
* Addition to commit 2735e15bMax2015-01-041-1/+1
|
* Replace some NSDictionaries with literalsMax2014-12-131-8/+8
| | | | | | * [NSDictionary dictionary] → @{} * [NSDictionary dictionaryWithObject:forKey:] can safely be replaced. object==nil would have already thrown a NPE in the past. * Also replaced some (hopefully safe) NSArray initializers (ie. their objects should always exist).
* Change [NSArray arrayWithObject:] to @[] literalMax2014-12-131-3/+3
| | | | Note: [NSArray arrayWithObjects:...,nil] is left unchanged as that could possibly cause a NPE if converted to @[]
* Add cast for [NSApp delegate]Max2014-12-131-1/+2
| | | | | * (Also changed some outdated URLs) * Replaced [NSApplication sharedApplication] with NSApp
* Replace boxed integers in code with @ literalsMax2014-12-131-1/+1
|
* Reformatting code for modern ObjCMax2014-12-131-3/+3
| | | | | Replaced all [NSNumber numberWithBool:YES/NO] with the @YES/@NO literals. Also replaced some TRUE/FALSE with their YES/NO counterparts.
* 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
|
* Fix remaining deprecation warnings.Stuart Connolly2014-01-171-1/+1
|
* Fix deprecation warnings.Stuart Connolly2014-01-161-32/+35
|
* Remove use of deprecated methods.Stuart Connolly2013-11-301-1/+1
|
* Cleaned up Format string is not a string literal (potentially insecure) errorsMarius Ursache2013-11-091-1/+1
|
* - Alter the content filter manager and the query favourite manager to ↵rowanbeentje2013-03-061-11/+28
| | | | import items from a file into the Global group if the document is untitled, improving import UX and addressing Issue #1616 and Issue #1645. Also select and scroll to the newly imported items for clarity.
* - End editing for deleting content filter or query favourites, addressing ↵rowanbeentje2013-03-051-0/+4
| | | | exceptions and Issue #1648
* Changing SP_REFACTOR macro to SP_CODAsqlprodev2013-02-141-14/+14
|
* Changes required to merge Sequel Pro r4011 into Codasqlprodev2013-02-141-2/+6
|
* Remove useless init and dealloc method comments and perform general tidy up.stuconnolly2013-01-221-7/+9
|
* Make some improvements to the Table Content Filter, particularly for text ↵rowanbeentje2012-12-231-3/+17
| | | | | | | | | fields: - Rename all "IS" entries to "=", to make the intended purpose clearer, and switch the underlying command to use "= BINARY" instead of "LIKE", producing an exact match instead of replicating LIKE functionality. Move LIKE p to just below the = options. This addresses Issue #1441. - Add entries for "matches RegExp" and "does not match RegExp", implementing Issue #1508. - When adding custom filters, add them by default to the Global group if the favourite isn't an on-disk document, addressing filter loss between sessions; this addresses Issue #1381
* Issue 1462: Right click in custom filter editor causes exceptionbamse162012-09-181-2/+2
|
* - Remove all BWToolKit elements from the Content Filter Manager, replacing ↵rowanbeentje2012-08-011-28/+6
| | | | | | | with SPSplitView and equivalents - Update localisable strings
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-12/+20
|
* tweaks to compile on Xcode 4 / 10.6 SDK for SP_REFACTORsqlprodev2012-03-271-0/+8
|
* - Cleanup: improve compatibility with 10.7 SDK to reduce compiler warningsrowanbeentje2012-02-081-5/+4
|
* Tidy up console/query controller.stuconnolly2011-09-031-0/+1
|
* Fix an exception when removing the only content filter. Fixes exceptions ↵stuconnolly2011-08-071-26/+27
| | | | http://spbug.com/l/2360 and http://spbug.com/l/2453
* * Fixes most parts of #1006 (Translation of file names)dmoagx2011-05-101-2/+2
| | | | * Update strings files
* initial commit of SP_REFACTOR ifdefs, the start of a long quest to separate ↵sqlprodev2011-04-111-3/+13
| | | | UI code from functional code
* * Fix two untranslatable strings #1006dmoagx2011-03-201-1/+1
|
* - Fix more compiler warningsrowanbeentje2011-03-151-2/+2
| | | | | - Tweak README
* fixed compiler warningssqlprodev2011-03-011-0/+1
|
* Tidy up.stuconnolly2010-10-191-4/+0
|
* Considering nearly every class uses constants, import it via the prefix header.stuconnolly2010-10-191-1/+0
|
* Remove use of multiple comments for localized strings.stuconnolly2010-10-191-4/+4
|
* * One label was too short in Content Filter Managerdmoagx2010-09-261-11/+12
| | | | * Changed some NSLocalizedString() comments to be more descriptive - keep in mind that the comment is the only thing that can provide context here.
* • SPTableContentBibiko2010-09-201-135/+189
| | | | | | | | | | | - added at the end of [self loadTableValues] an alert if loading failed • SPContentFilterManager - removed any key bindings for hopefully getting rid of some "mutating method sent to immutable object" exceptions/crashes [1479, 1372, 1310, 295, 1227, 692, 149] - better handling of ESC to cancel the name in-cell editing in table - improved validations - some general code improvements - added/changed comments