Przeglądaj źródła

request uri

master
Andreas Demmelbauer 4 lat temu
rodzic
commit
e296cafbd6
1 zmienionych plików z 3 dodań i 3 usunięć
  1. +3
    -3
      ir-remote-timer.py

+ 3
- 3
ir-remote-timer.py Wyświetl plik

@@ -29,12 +29,12 @@ def turnAllProjectorsOff():
class Simple(resource.Resource):
isLeaf = True
def render_GET(self, request):
print(request.prepath)
print(request)
statustext = ""
if request.prepath == "on":
if request.uri == "/on":
statustext = "turn all projectors on ..."
turnAllProjectorsOn()
if request.prepath == "off":
if request.uri == "/off":
statustext = "turn all projectors off ..."
turnAllProjectorsOff()
else:


Ładowanie…
Anuluj
Zapisz