-> prevent Request closed errors by stopping mjpg clients before stopping motion
-> make all the server http requests async
--> remove current snapshot GET logs
-> style scroll bars
-> hint text next to section titles
-> add a previewer for snapshots
-> add a motioneye.svg icon
+-> implement file preserving
-> add other options applicable only to special devices (rpi): wifi settings, notifications
-> group @config rules to top
from tornado.web import Application
import handlers
+import logging
import settings
import template
(r'^/movie/(?P<camera_id>\d+)/(?P<op>download)/(?P<filename>.+)/?$', handlers.MovieHandler),
],
debug=settings.DEBUG,
+ log_function=logging.debug,
static_path=settings.STATIC_PATH,
static_url_prefix=settings.STATIC_URL
)