aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* • CSV Import Field Mapper SheetBibiko2010-10-237-24/+839
| | | | | - added the possibility to apply any sql function while importing set via "Add value or expression" sheet eg concat('$2', '$1', length('$3')) whereby $1 $2 $3 are the placeholder for the csv file columns 1 2 3 [first column starts with 1] • fixed ' escaping issue in MCPConnection
* • re-enabled three finger trackpad wiping gesture for controlling the ↵Bibiko2010-10-223-129/+248
| | | | | | | | table history • CSV Import Field Mapper Sheet - fixed issue for inserting a global value containing a ' - started preparations of the "Add value or expression" sheet for future enhancements
* • fixed bug while editing views if a filter is in usageBibiko2010-10-221-2/+1
| | | | - make sure that setTableDetails will always called for the current selected table even if edited field origin is another table
* Minor export controller init change.stuconnolly2010-10-211-1/+1
|
* Update credits.stuconnolly2010-10-211-6/+17
|
* Split MCPConnection's delegate methods into it's own protocol.stuconnolly2010-10-209-118/+169
|
* Update credits.stuconnolly2010-10-201-2/+1
|
* When adding or editing a field and the option to make it the primary key is ↵stuconnolly2010-10-201-30/+47
| | | | selected, also make the field unsigned if not already. Implemented issue #703.
* Fix a typo that caused an exception when opening the console.stuconnolly2010-10-201-1/+1
|
* Tidy up.stuconnolly2010-10-1972-155/+66
|
* Update indexes controller constants.stuconnolly2010-10-193-12/+12
|
* Considering nearly every class uses constants, import it via the prefix header.stuconnolly2010-10-1950-64/+32
|
* Replace use of hardcoded strings with constants when working with trigger data.stuconnolly2010-10-193-30/+53
|
* Add a 'Edit Trigger' menu item to the trigger's table view context menu.stuconnolly2010-10-194-862/+280
|
* Because the process of editing a trigger involves droping and then ↵stuconnolly2010-10-193-38/+59
| | | | re-creating it, if an error occurs when attempting to re-create it remember to then re-create the original one. Fixes issue #795.
* Localize the header included in SQL and XML exports.stuconnolly2010-10-193-12/+12
|
* Remove use of multiple comments for localized strings.stuconnolly2010-10-196-11/+11
|
* Update strings files.stuconnolly2010-10-192-0/+1
|
* Add a 'Refresh Tables' menu item to the 'Database' menu. It currently has ↵stuconnolly2010-10-193-195/+914
| | | | the shortcut Ctrl+Cmd+R, but this can always be remapped in system preferences. Implemented issue #845.
* - Fix relative paths for SPQLPluginConnectionTemplate.html , addressing ↵rowanbeentje2010-10-171-3/+1
| | | | broken builds
* Tidy up the project's logical structure in Xcode.stuconnolly2010-10-175-94/+147
|
* Add CFBundleShortVersionString property to MCPKit Info.plist.stuconnolly2010-10-161-0/+2
|
* Rename HTML print templates.stuconnolly2010-10-165-22/+23
|
* Fix an exception caused by the changes introduced in r2764.stuconnolly2010-10-161-2/+3
|
* • fixed issue to show/hide the Quicklook GUI item in the Field Editor SheetBibiko2010-10-162-1/+3
| | | | | • attempt to solve the issue of storing ENUM fields in Content View correctly if the user interacts with the mouse on the comboxes for different rows - this addresses the issues 865 and 833
* Tidy up linker flags across all targets, specifically remove linking against ↵stuconnolly2010-10-162-19/+4
| | | | stdc++, which was introduced in r2444 as a workaround for a bug in Clang 1.5 that failed to compile RegexKitLite. Take the approach suggested by the developer of RegexKitLite, which is to disable the macro that uses __attribute__((cleanup)), which trips the bug. Apparently it is only used for debugging purposes. See http://llvm.org/viewvc/llvm-project?view=rev&revision=103938 for the Clang fix.
* Change the connection view's table view to be of type SPTableView so ↵stuconnolly2010-10-153-65/+78
| | | | right-clicking a row results in it being selected first. Also, update SPTableView to prevent right-clicking of table view group headings. Fixes issue #867.
* • implemented filter content type 'spatial' with general spatial operators ↵Bibiko2010-10-152-0/+93
| | | | for usage as filter of spatial fields
* • placed the TableStructure's source table gear menu to the right hand ↵Bibiko2010-10-151-6/+6
| | | | side next to the edit button
* • implemented for TableStructure's source table the possibility to ↵Bibiko2010-10-153-52/+634
| | | | | | hide/unhide the columns: Key, encoding, collation, comment by adding a gear menu 'View Columns'; the hide status will be saved inside the Pref key: 'NSTableView Hidden Columns SPTableStructureSource' - this implements the feature request issue 868
* Split out AppleScript support into a category of SPAppController.stuconnolly2010-10-145-104/+176
|
* Tidy up build settings, by ensuring they are consistent across all targets, ↵stuconnolly2010-10-144-46/+195
| | | | specifically the compiler used. Also add a very basic Makefile to ease builds from the command line during build testing.
* • fixed cursor position correction for autoHelpBibiko2010-10-121-3/+4
| | | | - should fix among other issues i862
* Fix a bug when adding a PRIMARY KEY index, introduced in r2742. Fixes issue ↵stuconnolly2010-10-121-2/+2
| | | | #863.
* Forgot to update Localizable.strings for previous commit.stuconnolly2010-10-101-0/+0
|
* User manager fixes:stuconnolly2010-10-101-80/+71
| | | | | | | - When adding a new host specify 'PASSWORD' after 'IDENTIFIED BY' to indicate to the server that the password has already been hashed. Fixes issue #856. - Localize and replace a few modal error dialogs with use of SPBeginAlertSheet(). - Fix an error when specifying empty passwords for users.
* Remove NSLog() that was once DLog() to prevent spewing lots of info to the ↵stuconnolly2010-10-101-2/+1
| | | | console.
* • fixed issue of unnecessary string escaping for importing spatial data ↵Bibiko2010-10-105-6/+6
| | | | | | via GeomFromText() • minor code cosmetics
* • enabled SRID editing of spatial fields via WKT stringBibiko2010-10-096-16/+55
| | | | | - the SRID value will be appended at the WKT string like POINT(1 1),101 which will be transformed to GeomFromText('POINT(1 1)',101) on the fly - otherwise the SRID information will be deleted after editing a geometry field
* • some code cleaning, speed improvements, commenting stuffBibiko2010-10-093-60/+115
|
* • CSV Import (incl. import from clipboard)Bibiko2010-10-092-33/+45
| | | | | - if mapped target table field is of type GEOMETRY import csv data via GeomFromText() - replaced succeeding appendString lines by appendFormat since tests have shown that allocating memory once is faster than do it several times
* • for each export/copy/drag method other than SQL pass any spatial fields ↵Bibiko2010-10-094-2/+26
| | | | as WKT string; for SQL pass them as X'…' binary data
* • improved field editor sheet to support geometry fieldsBibiko2010-10-096-24/+93
| | | | | - additionally it shows the image - image can be saved as pdf if image is displayed via Save button; if text is selected the wkt string will be saved
* • implemented geometrycollection thumbnail images as tooltips for spatial ↵Bibiko2010-10-092-123/+201
| | | | fields
* • enabled thumbnail images of spatial geometry fields as tooltipsBibiko2010-10-094-25/+67
| | | | - note: geometrycollection support will follow soon
* • display SPA in the Key column if a field has a spatial keyBibiko2010-10-091-1/+4
| | | | Question: Is it possible to assign an index to a geometry field other than SPATIAL?
* • some further work on displaying geometry fields as imageBibiko2010-10-083-111/+153
|
* • some further work on displaying geometry fields as imageBibiko2010-10-085-4/+435
| | | | - to enable the very first approach simply uncomment code in SPTableContent tableView:toolTipForCell:rect:tableColumn:row:mouseLocation: for MCPGeometryData class
* Add support for adding SPATIAL indexes on MyISAM tables. Also, update ↵stuconnolly2010-10-084-6/+29
| | | | Localizable.strings.
* Fix constant assignment.stuconnolly2010-10-081-1/+1
|
ef='#n1009'>1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281