Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [webinterface] Add support for ACME, add option to redirect to cert domain | Simon Rettberg | 2024-10-08 | 1 | -0/+40 |
| | |||||
* | [sysconfig] Add button to assign module to multiple configs | Simon Rettberg | 2024-07-19 | 1 | -2/+3 |
| | | | | | This extends and reuses the assignment dialog that pops up at the end of the process where you create a new module. | ||||
* | [inc/Util] filesize: Fix calculating number of decimals to display | Simon Rettberg | 2024-05-29 | 1 | -3/+3 |
| | |||||
* | Remove 32bit support | Simon Rettberg | 2023-11-15 | 1 | -5/+1 |
| | | | | | | | int is always the native word size, and we don't really test anything on 32bit OSes anymore. 32bit support already required ugly workarounds in the past for large file sizes and ip2long, so we can finally get rid of those and just put an initial check in install.php. | ||||
* | Fix more type errors, stricter typing | Simon Rettberg | 2023-11-15 | 1 | -16/+16 |
| | |||||
* | Add function param/return types, fix a lot more phpstorm complaints | Simon Rettberg | 2023-11-14 | 1 | -16/+25 |
| | |||||
* | [inc/Dictionary] Add locale-aware number formatting method | Simon Rettberg | 2022-11-15 | 1 | -3/+3 |
| | |||||
* | [inc/Util] Remove leading space in formatDuration() when < 24h | Simon Rettberg | 2022-05-17 | 1 | -1/+2 |
| | |||||
* | [eventlog] Cast numeric values to int explicitly, in case they are '' | Simon Rettberg | 2022-05-13 | 1 | -1/+1 |
| | |||||
* | [inc/Util] Add types, move error printing functions to their own class | Simon Rettberg | 2022-05-02 | 1 | -183/+38 |
| | |||||
* | [locations/remoteaccess] Add option to veto remoteaccess mode | Simon Rettberg | 2022-04-29 | 1 | -1/+13 |
| | | | | | | | Remoteaccess mode can now be forced to be disabled for individual locations in locations module, either unconditionally, or whenever the openingtimes schedule says the room is open. A reboot will be triggered whenever the room opens/closes to force clients into the proper runmode. | ||||
* | [main+Session] Move session from /tmp/ to session table | Simon Rettberg | 2021-05-11 | 1 | -1/+0 |
| | |||||
* | Fix deprecated curly braces string indexing (PHP 7.4) | Simon Rettberg | 2021-03-25 | 1 | -1/+1 |
| | |||||
* | [inc/Util] formatDuration: Add leading zero | Simon Rettberg | 2020-08-27 | 1 | -1/+7 |
| | | | | | Conditionally add leading zero to years, months, days if we printed the next-larger unit already, for beeter display in tables. | ||||
* | [serversetup-bwlp-ipxe/statistics] Sanitize strings from clients | Simon Rettberg | 2020-07-31 | 1 | -0/+33 |
| | | | | | | Some string from the clients might not be well suited for utf-8 representation. Add wrapper functions that clean utf-8 strings, or convert ANSI strings to UTF-8 while removing problematic chars. | ||||
* | [inc/Util] Fix rounding based on OS bitness | Simon Rettberg | 2020-01-14 | 1 | -1/+6 |
| | |||||
* | [inc/Util] Fix rounding of large (float) values | Simon Rettberg | 2020-01-10 | 1 | -1/+1 |
| | |||||
* | Fix some typos (found by codespell) | Stefan Weil | 2019-12-14 | 1 | -1/+1 |
| | | | | Signed-off-by: Stefan Weil <sw@weilnetz.de> | ||||
* | [inc/Render] Add qstr_urlencode as global mustache var | Simon Rettberg | 2019-12-13 | 1 | -2/+2 |
| | |||||
* | [inc/Util] Add method to agressively unset a cookie | Simon Rettberg | 2019-10-31 | 1 | -0/+20 |
| | | | | | This tries to work around problems with the cookie path and trailing slashes. | ||||
* | [inc/Util] Simplify user download function | Simon Rettberg | 2019-10-18 | 1 | -13/+2 |
| | |||||
* | [serversetup-bwlp-ipxe] UI/UX tweaks | Simon Rettberg | 2019-10-17 | 1 | -0/+12 |
| | | | | | | * Decluttered bootentry View in menu editor * Show details for hook bootentry in menu editor * Buttons for "save and reload" in menu/bootentry editor | ||||
* | [dnbd3] Show image idle time in proxy details | Simon Rettberg | 2019-02-21 | 1 | -0/+21 |
| | |||||
* | [inc/Util] readableFileSize: support input in KB/MB/... | Simon Rettberg | 2019-01-28 | 1 | -2/+3 |
| | |||||
* | [inc/Util] Improve prettyTime year cutoff logic | Simon Rettberg | 2019-01-02 | 1 | -3/+3 |
| | | | | Closes #3518 | ||||
* | [inc/Util] readableFileSize: Remove superfluous round() | Simon Rettberg | 2018-03-21 | 1 | -1/+1 |
| | |||||
* | [inc/Util] readableFileSize: Use thin space, determine decimals after division | Simon Rettberg | 2018-03-21 | 1 | -5/+9 |
| | |||||
* | [inc/Util] Print profiling info to error_log on redirect | Simon Rettberg | 2018-03-05 | 1 | -0/+7 |
| | |||||
* | Fix A LOT of type problems, logic flaws, uninitialized variables etc. | Simon Rettberg | 2017-12-16 | 1 | -14/+19 |
| | | | | | Most of them were found by phpstorm, so I put in some time and went through the list, fixing quite a bunch of them. | ||||
* | [inc/Util] prettyTime: return '???' if given timestamp is 0 or not a number | Simon Rettberg | 2017-12-04 | 1 | -0/+3 |
| | |||||
* | [inc/Util] Util::redirect() can now be told to redirect to $_POST['redirect'] | Simon Rettberg | 2017-12-04 | 1 | -2/+8 |
| | |||||
* | [inc/Util] Add helper to pretty-print timestamp | Simon Rettberg | 2017-12-01 | 1 | -0/+24 |
| | |||||
* | [inc/Util] Fix: Print trace in CLI mode again | Simon Rettberg | 2017-06-23 | 1 | -1/+1 |
| | |||||
* | [inc/Util] Add randomUuid() function | Simon Rettberg | 2017-06-10 | 1 | -0/+28 |
| | |||||
* | [inc/Util] Improve traceError() output | Simon Rettberg | 2017-04-07 | 1 | -15/+32 |
| | |||||
* | Fix a couple of warnings and notices from error.log | Simon Rettberg | 2017-03-21 | 1 | -1/+1 |
| | |||||
* | [statistics_reporting] Overhaul remote reporting structure; default to off | Simon Rettberg | 2017-01-19 | 1 | -0/+52 |
| | |||||
* | [sysconfig] Improve binddn parsing for AD wizard | Simon Rettberg | 2016-10-27 | 1 | -4/+0 |
| | |||||
* | [Util] traceError: Use error_log for AJAX calls, just like API | Simon Rettberg | 2016-09-08 | 1 | -1/+1 |
| | |||||
* | [util] Also escape the print_r output when rendering HTML | Simon Rettberg | 2016-08-15 | 1 | -1/+1 |
| | |||||
* | [util] traceError(): Don't output html junk if running via CLI | Simon Rettberg | 2016-08-15 | 1 | -3/+31 |
| | |||||
* | Fix minor issues in exams install hook, taskmanager callback logic | Simon Rettberg | 2016-08-12 | 1 | -0/+1 |
| | |||||
* | [util] Made traceError output prettier by using HTML | Simon Rettberg | 2016-07-13 | 1 | -15/+49 |
| | |||||
* | Fix CSRF token checking; improve token/sid generation | Simon Rettberg | 2016-05-19 | 1 | -3/+3 |
| | |||||
* | Get baseconfig ready for modularization | Simon Rettberg | 2016-05-13 | 1 | -0/+13 |
| | |||||
* | Migrated messages to modules | Simon Rettberg | 2016-05-10 | 1 | -4/+4 |
| | |||||
* | [clientlog] Fix bootup db insert query | Simon Rettberg | 2015-12-22 | 1 | -0/+3 |
| | |||||
* | [ldap/ad] Figure out proper spelling of search base | Simon Rettberg | 2015-09-18 | 1 | -0/+4 |
| | |||||
* | Config.tgz improvements, automatic rebuilds etc. | Simon Rettberg | 2015-01-29 | 1 | -0/+13 |
| | |||||
* | Add configtgz class. Fix dozens of bugs | Simon Rettberg | 2015-01-26 | 1 | -0/+40 |
| |