diff options
author | Naveen Bobbili <nbobbili@amazon.com> | 2019-02-25 21:00:09 -0800 |
---|---|---|
committer | Naveen Bobbili <nbobbili@amazon.com> | 2019-02-25 21:06:18 -0800 |
commit | 533f49cc00b0846c4f2ebd763b86b917f5023cdc (patch) | |
tree | 0950a62bc5c75c24712fefb8532ff82a23f1b947 /htdocs/index.html | |
parent | 800ec166dd48283fd7f3035685e6b6a73091552d (diff) |
vshl-capabilities:
This API is responsible for brokering capbilities related
messages from voiceagents to apps and vice versa.
Verbs exposed are
navigation/publish
navigation/subscribe
phonecontrol/publish
phonecontrol/subscribe
playbackcontroller/publish
playbackcontroller/subscribe
guiMetadata/publish
guiMetadata/subscribe
This API exposes publish and subscribe methods for all
the speech framework domains/capabilities. For eg. navigation,
phonecontrol etc. This API is used by apps and low level voice
agent binding to subscribe and publish these capability messages
whenever applicable.
This specific commit is for vshl-capabilities API.
Change-Id: I822c2e8589e39574d707a7c199bea91a686dced7
Signed-off-by: Naveen Bobbili <nbobbili@amazon.com>
Diffstat (limited to 'htdocs/index.html')
-rw-r--r-- | htdocs/index.html | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/htdocs/index.html b/htdocs/index.html new file mode 100644 index 0000000..f322881 --- /dev/null +++ b/htdocs/index.html @@ -0,0 +1,142 @@ +<html> + +<head> + <title>VSHL CAPABILITIES API Test</title> + <link rel="stylesheet" href="binding.css"> + <script type="text/javascript" src="AFB.js"></script> + <script type="text/javascript" src="binding.js"></script> +</head> + +<body class="page-content" onload="connect()"> + + <h1>Voice Service High Level Support API Tester</h1> + + <button id="connected" onclick="init()">Binder WS Fail</button> + <button id="monitoring" onclick="window.open('/monitoring/monitor.html','_monitor_ctl')">Debug/Monitoring</a> + </button> + <button onclick="clearPre('question'); clearPre('output'); clearPre('outevt');">Clear</button> <br><br> + VSHL CAPABILITIES URL: <input type="text" id="vshl-capabilities-address" value="localhost:1111" onchange="connectVshlCapabilities()"> + <br> + <br> + + <div> + <P>Phone Connection Status UI</p> + <button onclick="triggerPhoneConnectionStateChanged('CONNECTED')">Connected</button> + <button onclick="triggerPhoneConnectionStateChanged('DISCONNECTED')">Disconnected</button> + <P>Phone Call Control Inbound Ringing UI</p> + <button onclick="triggerCallStateInBoundRingingAction()">Simulate Inbound Ringing</button> + <P>Phone Call Control UI</p> + <button onclick="triggerCallStateChangedAction('ACTIVE')">Accept</button> + <button onclick="triggerCallStateChangedAction('IDLE')">Reject</button> + </div> + <div> + <p>Playback Controller UI</p> + <button onclick="triggerButtonPressedAction('play')">play</button> + <button onclick="triggerButtonPressedAction('pause')">pause</button> + <button onclick="triggerButtonPressedAction('next')">next</button> + <button onclick="triggerButtonPressedAction('previous')">previous</button> + <button onclick="triggerButtonPressedAction('skip-forward')">skip-forward</button> + <button onclick="triggerButtonPressedAction('skip-backward')">skip-backward</button> + </div> + + <dialog id="templateui-event-chooser"> + <h3 class="dialogheader">Subscribe to the following GUI Metadata Messages</h3> + <div> + <ol> + <li> + <input type="checkbox" id="render_template" checked> + <label>render_template</label> + </li> + <li> + <input type="checkbox" id="clear_template" checked> + <label>clear_template</label> + </li> + <li> + <input type="checkbox" id="render_player_info" checked> + <label>render_player_info</label> + </li> + <li> + <input type="checkbox" id="clear_player_info" checked> + <label>clear_player_info</label> + </li> + </ol> + </div> + <footer> + <button id="templateui-subscribe-btn" type="button" style="margin: 10px">Subscribe</button> + </footer> + </dialog> + + <dialog id="phonecontrol-event-chooser"> + <h3 class="dialogheader">Subscribe to the following phone control messages</h3> + <div> + <ol> + <li> + <input type="checkbox" id="phonecontrol-dial" checked> + <label>phonecontrol/dial</label> + </li> + <li> + <input type="checkbox" id="phonecontrol-redial" checked> + <label>phonecontrol/redial</label> + </li> + <li> + <input type="checkbox" id="phonecontrol-answer" checked> + <label>phonecontrol/answer</label> + </li> + <li> + <input type="checkbox" id="phonecontrol-stop" checked> + <label>phonecontrol/stop</label> + </li> + <li> + <input type="checkbox" id="phonecontrol-send_dtmf" checked> + <label>phonecontrol/send_dtmf</label> + </li> + </ol> + </div> + <footer> + <button id="phonecontrol-subscribe-btn" type="button" style="margin: 10px">Subscribe</button> + </footer> + </dialog> + + <dialog id="navigation-event-chooser"> + <h3 class="dialogheader">Subscribe to the following navigation messages</h3> + <div> + <ol> + <li> + <input type="checkbox" id="set_destination" checked> + <label>set_destination</label> + </li> + <li> + <input type="checkbox" id="cancel_navigation" checked> + <label>cancel_navigation</label> + </li> + </ol> + </div> + <footer> + <button id="navigation-subscribe-btn" type="button" style="margin: 10px">Subscribe</button> + </footer> + </dialog> + + <div id="top" class="row"> + <div id='actions' class="col1"> + <div> + <h2>VSHL CAPABILITIES APIs</h2> + <p>Speech framework's VSHL Capabilities APIs</p> + <button onclick="showTemplateUIEventChooserDialog();">Subscribe to GUI Metadata</button> + <button onclick="showPhoneControlEventChooserDialog();">Subscribe to Phonecontrol messages</button> + <button onclick="showNavigationEventCHooserDialod();">Subscribe to Navigation messages</button> + </div> + + <div id="agentsDiv"> + </div> + </div> + + <div id="main" style="visibility:hidden" class="col2"> + <ol> + <li>Question <pre id="question"></pre> + <li>Response <pre id="output"></pre> + <li>Events: <pre id="outevt"></pre> + </ol> + </div> + </div> + +</body> |