| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Introduce LogNonMatchingHandler | Sebastien Braun | 2010-10-11 | 4 | -1/+64 |
| | | |||||
| * | Add access control check to input event handling in PVS daemon | Sebastien Braun | 2010-10-11 | 2 | -2/+12 |
| | | |||||
| * | Fix bug where pressing the closeUp-button sometimes results in no action. | Sebastien Braun | 2010-10-11 | 4 | -51/+102 |
| | | |||||
| * | Fix broken formatting of InputEvent::toString() | Sebastien Braun | 2010-10-11 | 1 | -1/+1 |
| | | |||||
| * | Fix stupidity in handler chain definition | Sebastien Braun | 2010-10-11 | 2 | -2/+2 |
| | | |||||
| * | Code cleanup and simplification for X11FakeKeyboardHandler | Sebastien Braun | 2010-10-11 | 2 | -329/+358 |
| | | |||||
| * | Remove leftover code that serves no purpose | Sebastien Braun | 2010-10-11 | 1 | -4/+0![]() |
| | | |||||
| * | Add an InputEventHandler that is not compatible anywhere. | Sebastien Braun | 2010-10-11 | 2 | -1/+40 |
| | | |||||
| * | Fix bug in logical OR when chaining Require<...> Policy. | Sebastien Braun | 2010-10-11 | 1 | -2/+7 |
| | | |||||
| * | Add some comments to inputEventHandler.h | Sebastien Braun | 2010-10-10 | 1 | -0/+7 |
| | | |||||
| * | Introduce an implicit logical AND into Require policy | Sebastien Braun | 2010-10-10 | 1 | -3/+3 |
| | | |||||
| * | Fix wrong policy: KillX11Handler only works on Linux, due to dependency on ↵ | Sebastien Braun | 2010-10-10 | 1 | -4/+1![]() |
| | | | | | the /proc file system's layout. | ||||
| * | Lose the `get' method prefix on InputEventContext since it does not fit in | Sebastien Braun | 2010-10-10 | 5 | -11/+11 |
| | | |||||
| * | Code cleanup for inputEvent.h | Sebastien Braun | 2010-10-10 | 4 | -68/+74 |
| | | | | | | | | - Use Qt's fixed-width integral types instead of stdint.h, which I forgot to include anyway - CamelCase identifiers - fix underscore position on instance variables | ||||
| * | Code cleanup for X11FakeKeyboardHandler.cpp | Sebastien Braun | 2010-10-10 | 1 | -225/+184![]() |
| | | | | | | | - CamelCase names - Add more comments - Remove unused stuff | ||||
| * | Actually install pvsprivinputd | Sebastien Braun | 2010-10-10 | 1 | -0/+4 |
| | | |||||
| * | Move the translations for pvsinput into the library where they belong. | Sebastien Braun | 2010-10-10 | 11 | -24/+850 |
| | | |||||
| * | It is not necessary to auto-generate policyChain_autogen.h anymore | Sebastien Braun | 2010-10-10 | 3 | -80/+1![]() |
| | | | | | All it did is handled by implicit TypeList parameters. | ||||
| * | Rework template meta-magic | Sebastien Braun | 2010-10-07 | 37 | -379/+968 |
| | | | | | | | | - No more implicit dependency on Boost.MPL - Better documentation for template magic - Move input handler policies to handler definitions where they belong - Separate out event descriptions from handlers | ||||
| * | Make behaviour on lookup failures configurable | Sebastien Braun | 2010-10-07 | 3 | -14/+88 |
| | | |||||
| * | Implement magic SysRq handler. | Sebastien Braun | 2010-10-07 | 4 | -1/+104 |
| | | |||||
| * | Sanitize security model yet again | Sebastien Braun | 2010-10-07 | 3 | -22/+48 |
| | | | | | | | | | | | The flags model was not satisfactory since it made it unnecessarily difficult to express the standard policy of "allow all to users that are physically sitting in front of the machine and to privileged users". The new model expressly knows different policies (two at the moment) and refrains from decomposing them. Additional policies are not difficult to add. | ||||
| * | Install a pvsprivinputd.conf template into /etc | Sebastien Braun | 2010-10-07 | 2 | -0/+19 |
| | | |||||
| * | Implement log targets for pvsprivinputd | Sebastien Braun | 2010-10-07 | 4 | -6/+308 |
| | | | | | | | | Also: - add command line options and usage message. - change --no-fork to --daemon to bring it in line with the pvs daemon. | ||||
| * | Install PolKit policy file | Sebastien Braun | 2010-10-06 | 2 | -0/+37 |
| | | | | | and try to detect the policy directory. | ||||
| * | Detect the presence of PolKit on configuration | Sebastien Braun | 2010-10-06 | 2 | -0/+25 |
| | | | | | | | When no PolKit is installed, the program gets built without support for it. This can be overriden by specifying -DENABLE_POLKIT=ON on the cmake command line. | ||||
| * | Fix deletion order bug | Sebastien Braun | 2010-10-06 | 3 | -2/+15 |
| | | | | | | | PVSCheckPrivileges::instance() is statically allocated. When it is deleted, the QCoreApplication is already gone (since it is stack- allocated), and the destructor of QFileSystemWatcher waits forever. | ||||
| * | Refactor signal handling in pvsprivinputd | Sebastien Braun | 2010-10-06 | 6 | -18/+155 |
| | | | | | | Only use one socketpair and delegate the actual decision of what to do when a specific signal is received to a special object. | ||||
| * | Implement administratively configured user privileges | Sebastien Braun | 2010-10-06 | 3 | -3/+178 |
| | | | | | | | The administrator can set a list of users and a list of groups to see as privileged. This list is reloaded whenever the configuration file changes, or changes to the user/group database are detected. | ||||
| * | Change location of pvsprivinputd.conf to /etc/ | Sebastien Braun | 2010-10-06 | 2 | -2/+34 |
| | | | | | | Also centralize the knowledge of that location so that it lives in one place only. | ||||
| * | Fix typo that prevents correct compilation when XInput2.h is present | Sebastien Braun | 2010-10-06 | 1 | -1/+1 |
| | | |||||
| * | Merge remote branch 'openslx/mcastft' into input | Sebastien Braun | 2010-10-06 | 73 | -1381/+5370 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CMakeLists.txt i18n/pvs_ar_JO.ts i18n/pvs_de_DE.ts i18n/pvs_es_MX.ts i18n/pvs_fr_FR.ts i18n/pvs_pl_PL.ts i18n/pvsmgr_ar_JO.ts i18n/pvsmgr_de_DE.ts i18n/pvsmgr_es_MX.ts i18n/pvsmgr_fr_FR.ts i18n/pvsmgr_pl_PL.ts icons/README pvsmgr.qrc src/gui/mainWindow.cpp src/pvs.cpp src/pvs.h src/pvsDaemon.cpp src/util/clientGUIUtils.h | ||||
| | * | Merge remote branch 'openslx/master' into mcastft | Sebastien Braun | 2010-10-05 | 37 | -1364/+1391 |
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CMakeLists.txt pvsmgr.qrc src/gui/clientConfigDialog.cpp src/gui/mainWindow.cpp src/gui/ui/mainwindow.ui src/gui/ui/mainwindowtouch.ui src/pvs.cpp src/pvs.h src/pvsDaemon.cpp src/pvsgui.cpp | ||||
| | | * | [PVSGUI] parsing cmdargs fixed | root | 2010-09-29 | 1 | -1/+1 |
| | | | | |||||
| | | * | [PVSGUI] smaler toolbar | jjl | 2010-09-29 | 2 | -14/+3![]() |
| | | | | |||||
| | | * | [PVSGUI] set toolbar position via cmd-switch | jjl | 2010-09-29 | 3 | -58/+89 |
| | | | | |||||
| | | * | [PVSGUI] restart pvs daemon on startup | jjl | 2010-09-23 | 2 | -2/+7 |
| | | | | |||||
| | | * | [PVSGUI] Only one instance should be allowed now | jjl | 2010-09-23 | 2 | -1/+9 |
| | | | | |||||
| | | * | [PVSGUI] Turn on/off toolbar via menu and cmd-switch (pvsgui -h) | jjl | 2010-09-22 | 2 | -1/+48 |
| | | | | |||||
| | | * | [PVSGUI] always construct QSystemTrayIcon, even if systray is not available | jjl | 2010-09-22 | 1 | -10/+4![]() |
| | | | | |||||
| | | * | pvsgui autostart | jjl | 2010-09-21 | 1 | -32/+4![]() |
| | | | | |||||
| | | * | All printf() replaced with qDebug() | Johann Latocha | 2010-09-01 | 14 | -47/+45![]() |
| | | | | |||||
| | | * | Missing return statement | Johann Latocha | 2010-08-30 | 1 | -1/+1 |
| | | | | |||||
| | | * | Defect #644 and cleanout some old code | Johann Latocha | 2010-08-30 | 7 | -335/+29![]() |
| | | | | |||||
| | | * | PVS output errors fixed | Johann Latocha | 2010-08-30 | 2 | -9/+6![]() |
| | | | | |||||
| | | * | Bug fixed: create config-dir | Johann Latocha | 2010-08-29 | 3 | -0/+10 |
| | | | | |||||
| | | * | Feature #633 | Johann Latocha | 2010-08-29 | 4 | -1/+11 |
| | | | | |||||
| | | * | More debugout and icon bug fixed | Johann Latocha | 2010-08-28 | 1 | -0/+3 |
| | | | | |||||
| | | * | Enhancement #587 | Johann Latocha | 2010-08-28 | 10 | -102/+88![]() |
| | | | | |||||
| | | * | Some refactoring | Johann Latocha | 2010-08-26 | 2 | -9/+5![]() |
| | | | | |||||

