Example #1
0
def renderAction(request):
        if request.method == 'POST':
		action=request.POST.get('actionType')
#		action=request.POST.values()
		action="actions:"+action		
		myCommand = Command(command=action, statusTimeStamp=timezone.now(), parameter="", quantity=0, status='queued', commandTimeStamp=timezone.now())
		myCommand.json=jsonTranslation(myCommand)
		return HttpResponse(myCommand.json)
	else:
		return HttpResponse("no joy")
Example #2
0
def command(request):
        if request.method == 'POST':
		_command=request.POST.get('command', 'boo')
		_parameter=request.POST.get('parameter',0)
		_quantity=request.POST.get('quantity',0)
		myCommand = Command(command=_command, statusTimeStamp=timezone.now(), parameter=_parameter, quantity=_quantity, status='queued', commandTimeStamp=timezone.now())
		myCommand.json=jsonTranslation(myCommand)
		if myCommand.command=="placePanel":
			myCommand.description=buildDescription(myCommand)
                myCommand.save()
                return HttpResponse("yo")
	else:
		return HttpResponse("bite me")
Example #3
0
def command(request):
        if request.method == 'POST':
		_command=request.POST.get('command', 'boo')
		_parameter=request.POST.get('parameter',0)
		_quantity=request.POST.get('quantity',0)
		myCommand = Command(command=_command, statusTimeStamp=timezone.now(), parameter=_parameter, quantity=_quantity, status='queued', commandTimeStamp=timezone.now())
		myCommand.json=jsonTranslation(myCommand)
		if myCommand.command.lower().find("panel")!=-1:
			return HttpResponse(addPanel(myCommand.json))
		else:
			myCommand.save()
			return HttpResponse(myCommand.command.lower())
	else:
		return HttpResponse("bite me")
Example #4
0
def tinyGParameter(request):
        if request.method == 'POST':
		_command=request.POST.get('command', 'boo')
		_parameter=request.POST.get('parameter',0)
		factoryState=FactoryState.objects.get(id=1)
		if _command.find('var_')!=-1:
			setattr(factoryState, _command, _parameter)
			_command=_command[4:]
			factoryState.save()
		myCommand = Command(command=_command, statusTimeStamp=timezone.now(), quantity=0,parameter=_parameter, status='queued', commandTimeStamp=timezone.now())
		myCommand.json=render_to_string("parameter.html", {'command': myCommand})
                myCommand.save()
                return HttpResponse("parameter set")
	else:
		return HttpResponse("poo")
Example #5
0
def command(request):
    if request.method == 'POST':
        _command = request.POST.get('command', 'boo')
        _parameter = request.POST.get('parameter', 0)
        _quantity = request.POST.get('quantity', 0)
        myCommand = Command(command=_command,
                            statusTimeStamp=timezone.now(),
                            parameter=_parameter,
                            quantity=_quantity,
                            status='queued',
                            commandTimeStamp=timezone.now())
        myCommand.json = jsonTranslation(myCommand)
        if myCommand.command == "placePanel":
            myCommand.description = buildDescription(myCommand)
        myCommand.save()
        return HttpResponse("yo")
    else:
        return HttpResponse("bite me")
Example #6
0
def command(request):
    if request.method == "POST":
        _command = request.POST.get("command", "boo")
        _parameter = request.POST.get("parameter", 0)
        _quantity = request.POST.get("quantity", 0)
        myCommand = Command(
            command=_command,
            statusTimeStamp=timezone.now(),
            parameter=_parameter,
            quantity=_quantity,
            status="queued",
            commandTimeStamp=timezone.now(),
        )
        myCommand.json = jsonTranslation(myCommand)
        if myCommand.command == "placePanel":
            myCommand.description = buildDescription(myCommand)
        myCommand.save()
        return HttpResponse("yo")
    else:
        return HttpResponse("bite me")
Example #7
0
def tinyGParameter(request):
    if request.method == 'POST':
        _command = request.POST.get('command', 'boo')
        _parameter = request.POST.get('parameter', 0)
        factoryState = FactoryState.objects.get(id=1)
        if _command.find('var_') != -1:
            setattr(factoryState, _command, _parameter)
            _command = _command[4:]
            factoryState.save()
        myCommand = Command(command=_command,
                            statusTimeStamp=timezone.now(),
                            quantity=0,
                            parameter=_parameter,
                            status='queued',
                            commandTimeStamp=timezone.now())
        myCommand.json = render_to_string("parameter.html",
                                          {'command': myCommand})
        myCommand.save()
        return HttpResponse("parameter set")
    else:
        return HttpResponse("poo")
Example #8
0
def tinyGParameter(request):
    if request.method == "POST":
        _command = request.POST.get("command", "boo")
        _parameter = request.POST.get("parameter", 0)
        factoryState = FactoryState.objects.get(id=1)
        if _command.find("var_") != -1:
            setattr(factoryState, _command, _parameter)
            _command = _command[4:]
            factoryState.save()
        myCommand = Command(
            command=_command,
            statusTimeStamp=timezone.now(),
            quantity=0,
            parameter=_parameter,
            status="queued",
            commandTimeStamp=timezone.now(),
        )
        myCommand.json = render_to_string("parameter.html", {"command": myCommand})
        myCommand.save()
        return HttpResponse("parameter set")
    else:
        return HttpResponse("poo")