more robustness for broken table data in Table_API_p.html -- see bug

report http://mantis.tokeek.de/view.php?id=495
pull/1/head
Michael Peter Christen 10 years ago
parent a95af11050
commit cdc21d43b1

@ -245,29 +245,27 @@ public class Table_API_p {
boolean dark = true; boolean dark = true;
boolean scheduledactions = false; boolean scheduledactions = false;
int c = 0; int c = 0;
byte[] typeb, commentb, urlb;
String type, comment, url; String type, comment, url;
// first prepare a list // first prepare a list
while (mapIterator.hasNext()) { while (mapIterator.hasNext()) {
r = mapIterator.next(); r = mapIterator.next();
if (r == null) { if (r == null) continue;
continue; typeb = r.get(WorkTables.TABLE_API_COL_TYPE);
} if (typeb == null) continue;
type = UTF8.String(r.get(WorkTables.TABLE_API_COL_TYPE)); type = UTF8.String(typeb);
if (!typefilter.matcher(type).matches()) { if (!typefilter.matcher(type).matches()) continue;
continue; commentb = r.get(WorkTables.TABLE_API_COL_COMMENT);
} if (commentb == null) continue;
comment = UTF8.String(r.get(WorkTables.TABLE_API_COL_COMMENT)); comment = UTF8.String(commentb);
url = UTF8.String(r.get(WorkTables.TABLE_API_COL_URL)); if (!query.matcher(comment).matches()) continue;
if (!(query.matcher(comment).matches() || query.matcher(url).matches())) { urlb = r.get(WorkTables.TABLE_API_COL_URL);
continue; if (urlb == null) continue;
} url = UTF8.String(urlb);
if (c >= startRecord) { if (!query.matcher(url).matches()) continue;
table.add(r); if (c >= startRecord) table.add(r);
}
c++; c++;
if (table.size() >= maximumRecords) { if (table.size() >= maximumRecords) break;
break;
}
} }
// then work on the list // then work on the list
for (final Tables.Row row : table) { for (final Tables.Row row : table) {

Loading…
Cancel
Save