Warning: session_start(): open(/var/lib/php/sessions/sess_6ei6q8uo8jtm58b4l5mtssr63m, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// tok must come from htmlTok // returns all container tags found (including content) as CNC // should be OK for both HTML and XML static LL findContainerTag(L tok, S tag) { new LL l; for (int i = 1; i < l(tok); i += 2) if (isOpeningTag(tok.get(i), tag)) { int j, level = 1; for (j = i+2; j < tok.size(); j += 2) if (isOpeningTag(tok.get(j), tag)) ++level; else if (isTag(tok.get(j), "/" + tag)) { --level; if (level == 0) { l.add(subList(tok, i-1, j+2)); // actual CNC break; } } i = j; } ret l; } static LL findContainerTag(S html, S tag) { ret findContainerTag(htmlTok(html), tag); }