Warning: session_start(): open(/var/lib/php/sessions/sess_ua6mh5sjv980hnb5p8lhtcbv1t, 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
meta-for JWindow also as JFrame {
static IProgressShower tempProgressBar_addToWindowIfPossible(JWindow window, S text, double total default 1) {
if (!isVisibleWindow(window)) ret tempProgressBar(text, total);
JProgressBar bar = jProgressBarWithText(iround(total), text);
var closeable = tempAddToWindow(window,
withMargin(jCenteredRaisedSection(text, bar)));
ret new IProgressShower {
public void setValue(double value) {
setProgressBarValue(bar, iround(value));
}
public void setTotal(double total) {
setProgressBarTotal(bar, iround(total));
}
public void setText(S text) {
setProgressBarText(bar, print(text));
}
public void close {
_close(closeable);
}
};
}
}