diff --git a/main.py b/main.py index 0a20679..c36f390 100755 --- a/main.py +++ b/main.py @@ -456,20 +456,14 @@ def index(): return bottle.static_file("index.html", root='html') -@bottle.route("/") -def serve_static(filepath): - return bottle.static_file(filepath, root='html') - - -@bottle.route("/setgamma////") +@bottle.route("/setgamma////") def setGamma(r, g, b, w): - runner.setGamma(float(r), float(g), float(b), float(w)) + runner.setGamma(r, g, b, w) return "ok" -@bottle.route("/setbrightness/") +@bottle.route("/setbrightness/") def setIntensity(i): - i = float(i) if not 0 <= i <= 1: return "bad_value" runner.setFilter("0_intensity", filters.MakeBrightnessFilter(i)) @@ -513,7 +507,14 @@ def filter_expr(): return "ok" -if __name__ == '__main__': +# generic rule must be the last +@bottle.route("/") +def serve_static(filepath): + return bottle.static_file(filepath, root='html') + + +def main(): + global running, runner ######################################################################## # Startup # ######################################################################## @@ -529,3 +530,7 @@ if __name__ == '__main__': ######################################################################## running = False runner.join() + + +if __name__ == '__main__': + main()