Changeset 28961 in osm for applications/editors
- Timestamp:
- 2012-11-21T23:57:14+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreGrabber.java
r26835 r28961 85 85 private BufferedImage grab(URL url) throws IOException, OsmTransferException { 86 86 wmsInterface.urlConn = (HttpURLConnection)url.openConnection(); 87 wmsInterface.urlConn.setRequestProperty("Connection", "close"); 87 88 wmsInterface.urlConn.setRequestMethod("GET"); 88 89 wmsInterface.setCookie(); -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java
r27034 r28961 111 111 while (cookied == false && retries > 0) { 112 112 urlConn = (HttpURLConnection)searchFormURL.openConnection(); 113 urlConn.setRequestProperty("Connection", "close"); 113 114 urlConn.setRequestMethod("GET"); 114 115 urlConn.connect(); -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadSVGBuilding.java
r26228 r28961 236 236 private String grabSVG(URL url) throws IOException, OsmTransferException { 237 237 wmsInterface.urlConn = (HttpURLConnection)url.openConnection(); 238 wmsInterface.urlConn.setRequestProperty("Connection", "close"); 238 239 wmsInterface.urlConn.setRequestMethod("GET"); 239 240 wmsInterface.setCookie(); -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadSVGTask.java
r26228 r28961 190 190 private String grabSVG(URL url) throws IOException, OsmTransferException { 191 191 wmsInterface.urlConn = (HttpURLConnection)url.openConnection(); 192 wmsInterface.urlConn.setRequestProperty("Connection", "close"); 192 193 wmsInterface.urlConn.setRequestMethod("GET"); 193 194 wmsInterface.setCookie();
Note:
See TracChangeset
for help on using the changeset viewer.