Changeset 13064 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-10-30T23:58:23+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginUpdatePolicyPanel.java
r12854 r13064 25 25 import org.openstreetmap.josm.plugins.PluginHandler; 26 26 import org.openstreetmap.josm.spi.preferences.Config; 27 import org.openstreetmap.josm.tools.Logging;28 27 29 28 /** … … 184 183 .setSelected(true); 185 184 186 String pref = Config.getPref().get("pluginmanager.warntime", null); 187 int days = 0; 188 if (pref != null) { 189 // remove legacy preference 190 Config.getPref().put("pluginmanager.warntime", null); 191 try { 192 days = Integer.parseInt(pref.trim()); 193 } catch (NumberFormatException e) { 194 // ignore - load from preference pluginmanager.time-based-update.interval 195 Logging.trace(e); 196 } 197 if (days <= 0) { 198 days = PluginHandler.DEFAULT_TIME_BASED_UPDATE_INTERVAL; 199 } 200 } 201 if (days == 0) { 202 days = Config.getPref().getInt("pluginmanager.time-based-update.interval", PluginHandler.DEFAULT_TIME_BASED_UPDATE_INTERVAL); 203 } 185 int days = Config.getPref().getInt("pluginmanager.time-based-update.interval", PluginHandler.DEFAULT_TIME_BASED_UPDATE_INTERVAL); 204 186 tfUpdateInterval.setText(Integer.toString(days)); 205 187 } -
trunk/src/org/openstreetmap/josm/io/UploadStrategy.java
r12894 r13064 6 6 import java.util.Locale; 7 7 8 import org.openstreetmap.josm.data.PreferencesUtils;9 8 import org.openstreetmap.josm.spi.preferences.Config; 10 9 import org.openstreetmap.josm.tools.Logging; … … 68 67 * Replies the upload strategy currently configured in the preferences. 69 68 * 70 * First checks for the preference key <pre>osm-server.upload-strategy</pre>. If not 71 * present, checks for the legacy preference key <pre>osm-server.atomic-upload</pre>. 69 * Checks for the preference key <pre>osm-server.upload-strategy</pre>. 72 70 * 73 * If both aremissing or if the preference value is illegal, {@link #DEFAULT_UPLOAD_STRATEGY}71 * If missing or if the preference value is illegal, {@link #DEFAULT_UPLOAD_STRATEGY} 74 72 * is replied. 75 73 * … … 79 77 String v = Config.getPref().get("osm-server.upload-strategy", null); 80 78 if (v == null) { 81 // legacy support. Until 12/2009 we had osm-server.atomic-upload only. 82 // If we still find "osm-server.atomic-upload" we use it and remove it. 83 // When the preferences are saved the next time, "osm-server.upload-strategy" 84 // will be inserted. 85 v = Config.getPref().get("osm-server.atomic-upload", null); 86 if (v != null) { 87 PreferencesUtils.removeFromList(Config.getPref(), "osm-server.atomic-upload", v); 88 } else { 89 v = ""; 90 } 91 v = v.trim().toLowerCase(Locale.ENGLISH); 92 if ("true".equals(v)) 93 return SINGLE_REQUEST_STRATEGY; 94 else if ("false".equals(v)) 95 return INDIVIDUAL_OBJECTS_STRATEGY; 96 else 97 return DEFAULT_UPLOAD_STRATEGY; 79 return DEFAULT_UPLOAD_STRATEGY; 98 80 } 99 81 UploadStrategy strategy = fromPreference(v);
Note:
See TracChangeset
for help on using the changeset viewer.