Warning: session_start(): open(/var/lib/php/sessions/sess_6alhr2md6qpdris75sfel2nqbt, 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
// returns snippet IDs
static L search(S query) {
S page = loadPage(tb_mainServer() + "tb/search.php?q=" + urlencode(query));
Matcher m = Pattern.compile(">(#\\d+) - (.*?)
").matcher(page);
new L results;
while (m.find())
results.add(m.group(1));
ret results;
}