Changeset 12145 in josm for trunk/scripts
- Timestamp:
- 2017-05-14T14:50:55+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorLayerIndex.groovy
r12144 r12145 463 463 myprintln "- Missing JOSM date (${t}): ${getDescription(j)}" 464 464 } else if (!ed.isEmpty()) { 465 myprintln "* Date differs ( ${t}!= '${jd}'): ${getDescription(j)}"465 myprintln "* Date differs ('${t}' != '${jd}'): ${getDescription(j)}" 466 466 } else if (!options.nomissingeli) { 467 467 myprintln "+ Missing ELI date ('${jd}'): ${getDescription(j)}" … … 483 483 myprintln "+ SKIP - Missing JOSM description (${et}): ${getDescription(j)}" 484 484 } else if (et) { 485 myprintln "* Description differs ( ${et}!= '${jt}'): ${getDescription(j)}"485 myprintln "* Description differs ('${et}' != '${jt}'): ${getDescription(j)}" 486 486 } else if (!options.nomissingeli) { 487 487 myprintln "+ Missing ELI description ('${jt}'): ${getDescription(j)}" … … 496 496 myprintln "+ SKIP - Missing JOSM license URL (${et}): ${getDescription(j)}" 497 497 } else if (et) { 498 myprintln "+ SKIP * License URL differs ( ${et}!= '${jt}'): ${getDescription(j)}"498 myprintln "+ SKIP * License URL differs ('${et}' != '${jt}'): ${getDescription(j)}" 499 499 } else if (!options.nomissingeli) { 500 500 myprintln "+ Missing ELI license URL ('${jt}'): ${getDescription(j)}" … … 508 508 myprintln "- Missing JOSM attribution URL (${et}): ${getDescription(j)}" 509 509 } else if (et) { 510 myprintln "+ SKIP * Attribution URL differs ( ${et}!= '${jt}'): ${getDescription(j)}"510 myprintln "+ SKIP * Attribution URL differs ('${et}' != '${jt}'): ${getDescription(j)}" 511 511 } else if (!options.nomissingeli) { 512 512 myprintln "+ Missing ELI attribution URL ('${jt}'): ${getDescription(j)}" … … 520 520 myprintln "- Missing JOSM attribution text (${et}): ${getDescription(j)}" 521 521 } else if (et) { 522 myprintln "+ SKIP * Attribution text differs ( ${et}!= '${jt}'): ${getDescription(j)}"522 myprintln "+ SKIP * Attribution text differs ('${et}' != '${jt}'): ${getDescription(j)}" 523 523 } else if (!options.nomissingeli) { 524 524 myprintln "+ Missing ELI attribution text ('${jt}'): ${getDescription(j)}" … … 534 534 myprintln "- Missing JOSM projections (${et}): ${getDescription(j)}" 535 535 } else if (et) { 536 myprintln "+ SKIP * Projections differ ( ${et}!= '${jt}'): ${getDescription(j)}"536 myprintln "+ SKIP * Projections differ ('${et}' != '${jt}'): ${getDescription(j)}" 537 537 } else if (!options.nomissingeli && !getType(e).equals("tms")) { 538 538 myprintln "+ Missing ELI projections ('${jt}'): ${getDescription(j)}"
Note:
See TracChangeset
for help on using the changeset viewer.