This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<div id="notifications"></div> | |
<a href="/rpc/Control" >Toggle Led</a> | |
<script> | |
$('a').click(function(event) { | |
event.preventDefault(); | |
$.ajax({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Set of all jars, that script will manage | |
jars=( test1.jar test2.jar ) | |
# Group id parsed to uri format com.asd => com/asd | |
GROUP_URI=$(echo $GROUP | tr . /) | |
echo Parameters: |