Changeset 10378 in josm for trunk/src/org/openstreetmap/josm/gui/oauth
- Timestamp:
- 2016-06-15T10:30:37+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/oauth
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/AbstractAuthorizationUI.java
r10189 r10378 90 90 * @return the retrieved Access Token 91 91 */ 92 public 92 public OAuthToken getAccessToken() { 93 93 return accessToken; 94 94 } -
trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java
r10369 r10378 128 128 129 129 // OAuth in a nutshell ... 130 gc.gridy 130 gc.gridy = 1; 131 131 gc.insets = new Insets(5, 0, 0, 5); 132 132 HtmlPanel pnlMessage = new HtmlPanel(); 133 133 pnlMessage.setText("<html><body>" 134 134 + tr("With OAuth you grant JOSM the right to upload map data and GPS tracks " 135 + "on your behalf (<a href=\"{0}\">more info...</a>).", 135 + "on your behalf (<a href=\"{0}\">more info...</a>).", "http://oauth.net/") 136 136 + "</body></html>" 137 137 ); … … 140 140 141 141 // the authorisation procedure 142 gc.gridy 142 gc.gridy = 2; 143 143 gc.gridwidth = 1; 144 144 gc.weightx = 0.0; -
trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java
r10223 r10378 362 362 } catch (IOException e) { 363 363 throw new OsmOAuthAuthorizationException(e); 364 } 364 } finally { 365 365 synchronized (this) { 366 366 connection = null; -
trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorizationUI.java
r10369 r10378 400 400 ); 401 401 executor.execute(task); 402 Runnable r 402 Runnable r = new Runnable() { 403 403 @Override 404 404 public void run() { … … 437 437 ); 438 438 executor.execute(task); 439 Runnable r 439 Runnable r = new Runnable() { 440 440 @Override 441 441 public void run() {
Note:
See TracChangeset
for help on using the changeset viewer.