Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | app.py: fix loginctl output parsing | Egor Tensin | 2022-01-23 |
| | |||
* | top: run with -E/-e if supportedv1.1.0 | Egor Tensin | 2021-10-04 |
| | |||
* | fix whitespace | Egor Tensin | 2021-10-04 |
| | |||
* | index.html: safer DOM generation using jQueryv1.0.1 | Egor Tensin | 2021-10-03 |
| | | | | | I learned how to do it, currently evaluating if it's actually safer and maintanable. | ||
* | workflows/ci: rename to "CI" | Egor Tensin | 2021-06-15 |
| | |||
* | workflows/test -> workflows/ci | Egor Tensin | 2021-06-15 |
| | |||
* | workflows/test: test w/ latest Python | Egor Tensin | 2021-06-11 |
| | |||
* | workflows/test: linting | Egor Tensin | 2021-05-04 |
| | |||
* | README: badges for all workflows | Egor Tensin | 2021-04-18 |
| | |||
* | workflows/test.yml: tweak step namesv1.0 | Egor Tensin | 2021-03-13 |
| | |||
* | test/test.sh: longer startup timeout | Egor Tensin | 2021-03-13 |
| | | | | Maybe that's why some CI runs were failing? | ||
* | img: update example.pngv0.0.2 | Egor Tensin | 2021-03-07 |
| | |||
* | README: update | Egor Tensin | 2021-03-07 |
| | |||
* | export pacman packaging to a separate branchv0.0.1 | Egor Tensin | 2021-03-06 |
| | |||
* | blacklist aux files for `git archive` | Egor Tensin | 2021-03-06 |
| | |||
* | README: update | Egor Tensin | 2021-03-06 |
| | |||
* | workflows/test.yml: format strings are Python 3.6+ | Egor Tensin | 2021-03-06 |
| | |||
* | server.py: ThreadingHTTPServer is Python 3.7+ only | Egor Tensin | 2021-03-06 |
| | |||
* | add GitHub Actions workflow | Egor Tensin | 2021-03-06 |
| | |||
* | add test.sh | Egor Tensin | 2021-03-06 |
| | |||
* | server.py: only run from the script's directory | Egor Tensin | 2021-03-06 |
| | |||
* | pacman: call systemctl on (de)installation | Egor Tensin | 2021-03-04 |
| | |||
* | app.py: pretty print the JSON | Egor Tensin | 2021-03-04 |
| | |||
* | put status refresh interval next to header | Egor Tensin | 2021-03-04 |
| | |||
* | add journalctl output | Egor Tensin | 2021-03-04 |
| | |||
* | get rid of the /timers endpoit, use /status | Egor Tensin | 2021-03-04 |
| | |||
* | server.py: port number is a parameter | Egor Tensin | 2021-03-04 |
| | |||
* | update README, add some comments, etc. | Egor Tensin | 2021-03-04 |
| | |||
* | pacman: add dependency on procps-ng | Egor Tensin | 2021-03-04 |
| | |||
* | systemd: don't write __pycache__/ | Egor Tensin | 2021-03-04 |
| | |||
* | pacman: fix PKGBUILD | Egor Tensin | 2021-03-04 |
| | |||
* | app.py: fix a typing bug | Egor Tensin | 2021-03-03 |
| | |||
* | server.py: return status 500 on error in app.py | Egor Tensin | 2021-03-03 |
| | |||
* | fix the systemd unit | Egor Tensin | 2021-03-03 |
| | |||
* | remove the sudoers.d file | Egor Tensin | 2021-03-03 |
| | | | | | There're no CGI scripts anymore => they are not run as user nobody => they don't need the special permissions. | ||
* | no more CGI | Egor Tensin | 2021-03-03 |
| | | | | | The server.py script now launches a web server and handles all the requests internally, without delegating anything to external scripts. | ||
* | merge {reboot,poweroff}.sh into get.py | Egor Tensin | 2021-03-03 |
| | |||
* | add server.py | Egor Tensin | 2021-03-03 |
| | | | | | | It runs a web server and imports the request handling classes from get.py directly, hence eliminating the performance culprit (which was the `import` processing for each request). | ||
* | prune obsolete entry from .gitignore | Egor Tensin | 2021-03-03 |
| | |||
* | get.py: refactoring | Egor Tensin | 2021-03-03 |
| | |||
* | Revert "get.py: don't import cgi" | Egor Tensin | 2021-03-03 |
| | | | | | | | This reverts commit 2eaa4fc9ab517b0ef0c21272766551ab3191c5ea. On second thought, I have a plan on how to deal with the performance issue. | ||
* | get.py: don't import cgi | Egor Tensin | 2021-03-01 |
| | | | | | I only use it for FieldsStorage, and it can be trivially replaced with urllib.parse while being really bad for performance. | ||
* | get.py: don't import cgitb | Egor Tensin | 2021-02-28 |
| | | | | It's terrible for performance. | ||
* | get.py: add licensing notes | Egor Tensin | 2021-02-28 |
| | |||
* | get.py: run commands in parallel + refactoring | Egor Tensin | 2021-02-28 |
| | | | | | I _thought_ that executing many `systemctl` calls was the performance culprit, but it's not. | ||
* | dist: add Pacman's PKGBUILD | Egor Tensin | 2021-02-27 |
| | |||
* | dist: add the sudoers.d file | Egor Tensin | 2021-02-27 |
| | |||
* | systemd/ -> dist/systemd/ | Egor Tensin | 2021-02-27 |
| | |||
* | remove obsolete user panels | Egor Tensin | 2021-02-27 |
| | |||
* | Python server can now be run as root | Egor Tensin | 2021-02-27 |
| | | | | If run as root, the server queries all the users. |