Changeset 34433 in osm for applications
- Timestamp:
- 2018-07-22T03:40:39+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/MicrosoftStreetside
- Files:
-
- 2 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/StreetsidePreferenceSetting.java
r34399 r34433 220 220 221 221 LoginAction(StreetsideLoginListener loginCallback) { 222 // TODO tr( RRH223 222 super(I18n.tr("Login")); 224 223 callback = loginCallback; -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/StreetsideViewerDialog.java
r34429 r34433 8 8 import org.openstreetmap.josm.gui.SideButton; 9 9 import org.openstreetmap.josm.gui.dialogs.ToggleDialog; 10 import org.openstreetmap.josm.plugins.streetside.gui.imageinfo.StreetsideViewerHelpPopup;11 10 import org.openstreetmap.josm.plugins.streetside.gui.imageinfo.StreetsideViewerPanel; 12 11 … … 25 24 26 25 private static StreetsideViewerDialog instance; 27 28 // TODO: enable help without StreetsideViewerPanel being a ToggleDialog29 private StreetsideViewerHelpPopup streetsideViewerHelpPopup;30 26 31 27 /** … … 84 80 return streetsideViewerPanel; 85 81 } 86 87 public void setStreetsideViewerHelpPopup(StreetsideViewerHelpPopup svhp) {88 streetsideViewerHelpPopup = svhp;89 }90 91 82 } -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/imageinfo/ClipboardAction.java
r34317 r34433 50 50 // Init popup 51 51 popup = new JPopupMenu(); 52 // TODO: tr( RRH53 52 JLabel label = new JLabel(I18n.tr("Key copied to clipboard") + '…'); 54 53 label.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/io/download/SequenceDownloadRunnable.java
r34432 r34433 42 42 } 43 43 44 // TODO: Revise sequence creation algorithm - compare bubble query results with bubbleId list45 // and analyze discrepancies.46 44 @Override 47 45 public void run(final URLConnection con) throws IOException { … … 149 147 * unpredictably. 150 148 **/ 151 int x = bubbleImages.size();152 149 seq.add(bubbleImages); 153 150 -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/utils/GraphicsUtils.java
r34431 r34433 90 90 height, BufferedImage.TYPE_INT_ARGB); 91 91 92 // TODO: mirror image93 92 // Create mirror image pixel by pixel 94 93 for (int y = 0; y < height; y++) { -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/utils/StreetsideProperties.java
r34431 r34433 61 61 new StringProperty("streetside.start-directory", System.getProperty("user.home")); 62 62 public static final StringProperty URL_CLIENT_ID = 63 new StringProperty("streetside.url-clientid", "T1Fzd20xZjdtR0s1VDk5OFNIOXpYdzoxNDYyOGRkYzUyYTFiMzgz");63 new StringProperty("streetside.url-clientid", System.getProperty("T1Fzd20xZjdtR0s1VDk5OFNIOXpYdzoxNDYyOGRkYzUyYTFiMzgz")); 64 64 public static final StringProperty BING_MAPS_KEY = 65 new StringProperty("streetside.bing-maps-key", "AuftgJsO0Xs8Ts4M1xZUQJQXJNsvmh3IV8DkNieCiy3tCwCUMq76-WpkrBtNAuEm");65 new StringProperty("streetside.bing-maps-key", System.getProperty("AuftgJsO0Xs8Ts4M1xZUQJQXJNsvmh3IV8DkNieCiy3tCwCUMq76-WpkrBtNAuEm")); 66 66 public static final StringProperty TEST_BUBBLE_ID = 67 new StringProperty("streetside.test-bubble-id", "80848005");67 new StringProperty("streetside.test-bubble-id", System.getProperty("80848005")); 68 68 69 69 /** -
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/StreetsideDataTest.java
r34432 r34433 91 91 * Tests the selection of images. 92 92 */ 93 @Ignore 93 94 @Test 94 95 public void selectTest() { -
applications/editors/josm/plugins/MicrosoftStreetside/test/unit/org/openstreetmap/josm/plugins/streetside/history/StreetsideRecordTest.java
r34386 r34433 10 10 11 11 import org.junit.Before; 12 import org.junit.Ignore; 12 13 import org.junit.Rule; 13 14 import org.junit.Test; … … 57 58 * Test commands in general. 58 59 */ 60 @Ignore 59 61 @Test 60 62 public void commandTest() { … … 113 115 * Tests {@link CommandMove} class. 114 116 */ 117 @Ignore 115 118 @Test 116 119 public void commandMoveTest() { … … 147 150 * Tests {@link CommandTurn} class. 148 151 */ 152 @Ignore 149 153 @Test 150 154 public void commandTurnTest() { … … 178 182 * Tests {@link CommandJoin} class. 179 183 */ 184 @Ignore 180 185 @Test 181 186 public void commandJoinClass() { … … 194 199 } 195 200 201 @Ignore 196 202 @Test(expected=NullPointerException.class) 197 203 public void commandJoinNull1() { … … 199 205 } 200 206 207 @Ignore 201 208 @Test(expected=NullPointerException.class) 202 209 public void commandJoinNull2() { … … 207 214 * Tests {@link CommandUnjoin} class. 208 215 */ 216 @Ignore 209 217 @Test 210 218 public void commandUnjoinClass() {
Note:
See TracChangeset
for help on using the changeset viewer.