Changeset 34095 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext
- Timestamp:
- 2018-03-24T18:17:57+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/reltoolbox/src/relcontext
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/PublicTransportHelper.java
r32398 r34095 8 8 /** 9 9 * @author freeExec 10 * @see http ://wiki.openstreetmap.org/wiki/Key:public_transport10 * @see https://wiki.openstreetmap.org/wiki/Key:public_transport 11 11 */ 12 12 public final class PublicTransportHelper { -
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/RelationHelpAction.java
r34086 r34095 43 43 return; 44 44 try { 45 String base = Main.pref.get("url.openstreetmap-wiki", "http ://wiki.openstreetmap.org/wiki/");45 String base = Main.pref.get("url.openstreetmap-wiki", "https://wiki.openstreetmap.org/wiki/"); 46 46 String lang = LanguageInfo.getWikiLanguagePrefix(); 47 47 final List<URI> uris = HelpAction.getRelationURIs(base, lang, rel.get()); -
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/BoundaryFixer.java
r33708 r34095 14 14 15 15 /** 16 * @see http ://wiki.openstreetmap.org/wiki/Relation:boundary16 * @see https://wiki.openstreetmap.org/wiki/Relation:boundary 17 17 */ 18 18 public class BoundaryFixer extends MultipolygonFixer { … … 25 25 * For boundary relations both "boundary" and "multipolygon" types are applicable, but 26 26 * it should also have key boundary=administrative to be fully boundary. 27 * @see http ://wiki.openstreetmap.org/wiki/Relation:boundary27 * @see https://wiki.openstreetmap.org/wiki/Relation:boundary 28 28 */ 29 29 @Override -
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/MultipolygonFixer.java
r33694 r34095 20 20 21 21 /** 22 * @see http ://wiki.openstreetmap.org/wiki/Relation:multipolygon22 * @see https://wiki.openstreetmap.org/wiki/Relation:multipolygon 23 23 */ 24 24 public class MultipolygonFixer extends RelationFixer { -
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/PublicTransportFixer.java
r33708 r34095 14 14 15 15 /** 16 * @see http ://wiki.openstreetmap.org/wiki/Key:public_transport16 * @see https://wiki.openstreetmap.org/wiki/Key:public_transport 17 17 */ 18 18
Note:
See TracChangeset
for help on using the changeset viewer.