mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
0506ffe289
Can be used to inspect the state of the objects in a running KOReader. It can also be used to execute actions (like the ones available to associate to a gesture) with HTTP requests from a remote computer/devices/gadgets. The TCP server side is provided either with a new ZeroMQ StreamMessageQueueServer (thanks bneo99), or with a LuaSocket based SimpleTCPServer. Minor UIManager tweak to avoid uneeded inputevent when such a ZeroMQ module is running.
7 lines
298 B
Lua
7 lines
298 B
Lua
local _ = require("gettext")
|
|
return {
|
|
name = "httpinspector",
|
|
fullname = _("HTTP KOReader Inspector"),
|
|
description = _([[Allow browsing KOReader internal objects over HTTP. This is aimed at developers, and may pose some security risks. Only enable this on networks you can trust.]]),
|
|
}
|