You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
} else { // for large tables, or large number of tables
1220
1222
1221
-
List<String> tablesIds = sourceXMLDocumentTablesOnly.readElementsIds("//*[local-name() = 'table' or local-name() = 'dl']");
1223
+
intTABLE_CELLS_COUNT_MAX = 30000;
1222
1224
1223
1225
List<String> xmlTablesIF = newArrayList<>();
1224
-
// process each table separatery for memory consumption optimization
1225
-
inttableCounter = 0;
1226
-
inttableCount = tablesIds.size();
1227
-
for (StringtableId : tablesIds) {
1228
-
tableCounter++;
1229
-
logger.info("[INFO] Generation of XSL-FO (" + tableCounter + "/" + tableCount + ") with information about the table widths with id='" + tableId + "'...");
logger.info("[INFO] Generation of Intermediate Format (" + tableCounter + "/" + tableCount + ") with information about the table's widths with id='" + tableId + "'...");
/*List<String> tablesIds = sourceXMLDocumentTablesOnly.readElementsIds("//*[local-name() = 'table' or local-name() = 'dl']");
1287
+
// process each table separatery for memory consumption optimization
1288
+
int tableCounter = 0;
1289
+
int tableCount = tablesIds.size();
1290
+
for (String tableId : tablesIds) {
1291
+
tableCounter++;
1292
+
logger.info("[INFO] Generation of XSL-FO (" + tableCounter + "/" + tableCount + ") with information about the table widths with id='" + tableId + "'...");
1293
+
}*/
1259
1294
xmlTableIF = tablesWidthsUnion(xmlTablesIF);
1260
1295
xsltConverter.setParam("table_only_with_id", ""); // further process all tables
1296
+
xsltConverter.setParam("table_only_with_ids", ""); // further process all tables
0 commit comments