blob: 361d5bd35c3134382c7bb0c8b9100e34f7eb1558 [file] [log] [blame]
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="scripts/controller.js" charset="utf-8"></script>
<title>warp</title>
</head>
<body onLoad="Controller.init()">
<div data-role="page" id="home">
<div data-role="header">
<h4>Access Policies</h4>
<a onClick="Controller.update()" data-role="button" data-icon="refresh" data-iconpos="notext">Refresh</a>
</div> <!-- /header -->
<div data-role="content">
<p>Select the widget you want to view, grant or revoke widget access request policies for from the list below.</p>
<br>
<ul data-role="listview" id="widgets-listview">
</ul>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="widget">
<div data-role="header">
<a href="#home" data-direction="reverse" data-icon="home" data-iconpos="notext">Home</a>
<h4 class="widget-title">Widget Title Goes Here</h4>
</div> <!-- /header -->
<div data-role="content">
<ul data-role="listview" id="policies-listview" data-filter="true">
</ul>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="policy">
<div data-role="header">
<a href="#home" data-direction="reverse" data-icon="home" data-iconpos="notext">Home</a>
<h4 id="policy-title">Policy Details</h4>
</div> <!-- /header -->
<div data-role="content">
<p><b>Widget</b> <span class="widget-title"></span></p>
<p><b>Origin</b> <span id="policy-origin"></span></p>
<div id="policy-field" data-role="fieldcontain">
<fieldset id="policy-fieldset" data-role="controlgroup" data-type="horizontal">
<input type="radio" name="radio-view" id="granted-radio-button" value="granted"/>
<label for="granted-radio-button">Granted</label>
<input type="radio" name="radio-view" id="denied-radio-button" value="denied"/>
<label for="denied-radio-button">Denied</label>
</fieldset>
</div>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>