Index: /trunk/scripts/SyncEditorLayerIndex.java
===================================================================
--- /trunk/scripts/SyncEditorLayerIndex.java	(revision 15877)
+++ /trunk/scripts/SyncEditorLayerIndex.java	(revision 15878)
@@ -286,6 +286,8 @@
             return skip.get(s);
         for (Entry<String, String> str : skipStart.entrySet()) {
-            if (s.startsWith(str.getKey()))
+            if (s.startsWith(str.getKey())) {
+                skipStart.remove(str.getKey());
                 return str.getValue();
+            }
         }
         return null;
@@ -331,4 +333,7 @@
             myprintln("+++ Obsolete skip entry: " + s);
         }
+        for (String s : skipStart.keySet()) {
+            myprintln("+++ Obsolete skip entry: " + s + "...");
+        }
         if (optionXhtml) {
             myprintlnfinal("</body></html>\n");
@@ -344,5 +349,5 @@
             String url = getUrlStripped(e);
             if (url.contains("{z}")) {
-                myprintln("+++ ELI-URL uses {z} instead of {zoom}: "+url);
+                myprintln("+++ ELI-URL uses {z} instead of {zoom}: "+getDescription(e));
                 url = url.replace("{z}", "{zoom}");
             }
@@ -507,5 +512,5 @@
             String url = getUrlStripped(e);
             if (url.contains("{z}")) {
-                myprintln("+++ JOSM-URL uses {z} instead of {zoom}: "+url);
+                myprintln("+++ JOSM-URL uses {z} instead of {zoom}: "+getDescription(e));
                 url = url.replace("{z}", "{zoom}");
             }
@@ -1494,5 +1499,14 @@
             cc = "["+cc+"] ";
         }
-        String d = cc + getName(o) + " - " + getUrl(o);
+        String name = getName(o);
+        String id = getId(o);
+        String d = cc;
+        if(name != null && !name.isEmpty()) {
+            d += name;
+            if(id != null && !id.isEmpty())
+              d += " ["+id+"]";
+        }
+        else if(url != null && !url.isEmpty())
+            d += url;
         if (optionShorten) {
             if (d.length() > MAXLEN) d = d.substring(0, MAXLEN-1) + "...";
