forked from openlp/openlp
cleanups
This commit is contained in:
parent
9e62366d2b
commit
549598e5be
@ -24,8 +24,10 @@ The Endpoint class, which provides plugins with a way to serve their own portion
|
||||
"""
|
||||
|
||||
import os
|
||||
from functools import wraps
|
||||
|
||||
from mako.template import Template
|
||||
from webob import Request, Response
|
||||
|
||||
|
||||
class Endpoint(object):
|
||||
@ -69,6 +71,7 @@ class Endpoint(object):
|
||||
print("path = ", path)
|
||||
return Template(filename=path, input_encoding='utf-8').render(**kwargs)
|
||||
|
||||
|
||||
from .controller import controller_endpoint
|
||||
from .core import stage_endpoint
|
||||
from .service import service_endpoint
|
||||
|
@ -104,7 +104,7 @@ def controller_set(request):
|
||||
data = int(json.loads(json_data)['request']['id'])
|
||||
event.emit([data])
|
||||
except KeyError:
|
||||
log.error("Endpoint controller/live/set request id not found")s
|
||||
log.error("Endpoint controller/live/set request id not found")
|
||||
return {'results': {'success': True}}
|
||||
|
||||
register_endpoint(controller_endpoint)
|
||||
|
@ -19,7 +19,7 @@
|
||||
window.OpenLP = {
|
||||
loadService: function (event) {
|
||||
$.getJSON(
|
||||
"/api/service/list",
|
||||
"/service/list",
|
||||
function (data, status) {
|
||||
OpenLP.nextSong = "";
|
||||
$("#notes").html("");
|
||||
@ -39,7 +39,7 @@ window.OpenLP = {
|
||||
},
|
||||
loadSlides: function (event) {
|
||||
$.getJSON(
|
||||
"/api/controller/live/text",
|
||||
"/controller/live/text",
|
||||
function (data, status) {
|
||||
OpenLP.currentSlides = data.results.slides;
|
||||
OpenLP.currentSlide = 0;
|
||||
|
@ -143,7 +143,7 @@ class HttpRouter(RegistryProperties, OpenLPMixin):
|
||||
"""
|
||||
auth_code = "{user}:{password}".format(user=Settings().value('remotes/user id'),
|
||||
password=Settings().value('remotes/password'))
|
||||
self.openlppoll = Registry().get('api_poll')
|
||||
self.openlppoll = Registry().get('poller')
|
||||
try:
|
||||
self.auth = base64.b64encode(auth_code)
|
||||
except TypeError:
|
||||
|
Loading…
Reference in New Issue
Block a user