Changeset 4915 in josm


Ignore:
Timestamp:
2012-02-11T14:31:50+01:00 (13 years ago)
Author:
stoecker
Message:

better Trac 0.12.3 support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/WikiReader.java

    r3589 r4915  
    113113        boolean inside = false;
    114114        boolean transl = false;
     115        boolean skip = false;
    115116        String b = "";
    116117        for (String line = in.readLine(); line != null; line = in.readLine()) {
     
    128129                inside = false;
    129130            } else if (line.contains("<div class=\"trac-modifiedby\">")) {
    130                 continue;
     131                skip = true;
    131132            }
    132             if (inside && !transl) {
     133            if (inside && !transl && !skip) {
    133134                // add a border="0" attribute to images, otherwise the internal help browser
    134135                // will render a thick  border around images inside an <a> element
     
    140141                transl = false;
    141142            }
     143            if (line.contains("</div>")) {
     144                skip = false;
     145            }
    142146        }
    143147        if (b.indexOf("      Describe ") >= 0
Note: See TracChangeset for help on using the changeset viewer.