Ignore:
Timestamp:
2020-03-03T02:12:44+01:00 (6 years ago)
Author:
Don-vip
Message:

see #18140 - reorganization of data(_nodist), images(_nodist), styles(_nodist), IDE and native files in a more practical file tree.

  • Everything belonging to the jar is now in resources (data, images, styles)
  • Everything not belonging to the jar is now in nodist (data, images, styles)
  • Everything related to OS native functions is now in native (linux, macosx, windows)
  • Everything related to an IDE is now in ide (eclipse, netbeans)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/TagInfoExtract.java

    r15988 r16006  
    208208            final Path f = baseDir.resolve("images").resolve(path);
    209209            if (Files.exists(f)) {
    210                 return "https://josm.openstreetmap.de/export/" + josmSvnRevision + "/josm/trunk/images/" + path;
     210                return "https://josm.openstreetmap.de/export/" + josmSvnRevision + "/josm/trunk/resources/images/" + path;
    211211            }
    212212            throw new IllegalStateException("Cannot find image url for " + path);
     
    226226                        .add("description", description)
    227227                        .add("project_url", "https://josm.openstreetmap.de/")
    228                         .add("icon_url", "https://josm.openstreetmap.de/export/7770/josm/trunk/images/logo_16x16x8.png")
     228                        .add("icon_url", "https://josm.openstreetmap.de/export/7770/josm/trunk/resources/images/logo_16x16x8.png")
    229229                        .add("contact_name", "JOSM developer team")
    230230                        .add("contact_email", "josm-dev@openstreetmap.org");
Note: See TracChangeset for help on using the changeset viewer.