1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!--
- 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.
- -->
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" />
- <link rel="stylesheet" type="text/css" href="/static/hadoop.css" />
- <title>Browsing HDFS</title>
- </head>
- <body>
- <div class="modal" id="file-info" tabindex="-1" role="dialog" aria-hidden="true">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title" id="file-info-title">File information</h4>
- </div>
- <div class="modal-body" id="file-info-body">
- <a id="file-info-download">Download</a>
- <a id="file-info-preview" style="cursor:pointer">Tail the file (last 32K)</a>
- <hr />
- <div class="panel panel-info" id="file-info-blockinfo-panel">
- <div class="panel-heading">
- Block information --
- <select class="btn btn-default" id="file-info-blockinfo-list">
- </select>
- </div>
- <div class="panel-body" id="file-info-blockinfo-body"></div>
- </div>
- <div class="panel panel-info" id="file-info-tail" style="display:none">
- <div class="panel-heading">File contents</div>
- <div class="panel-body">
- <div class="input-group-sm">
- <textarea class="form-control" style="height: 150px" id="file-info-preview-body"></textarea>
- </div>
- </div>
- </div>
- </div>
- <div class="modal-footer"><button type="button" class="btn btn-primary"
- data-dismiss="modal">Close</button></div>
- </div>
- </div>
- </div>
- <div class="container">
- <div class="page-header">
- <h1>Browse Directory</h1>
- </div>
- <div class="alert alert-danger" id="alert-panel" style="display:none">
- <button type="button" class="close" onclick="$('#alert-panel').hide();">×</button>
- <div class="alert-body" id="alert-panel-body"></div>
- </div>
- <div class="row">
- <form onsubmit="return false;">
- <div class="input-group"><input type="text" class="form-control" id=
- "directory" /> <span class="input-group-btn"><button class="btn btn-default"
- type="submit" id="btn-nav-directory"><span class="input-group-btn">Go!</span></button></span></div>
- </form>
- </div>
- <br />
- <div id="panel"></div>
- </div>
- <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js">
- </script><script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js">
- </script><script type="text/javascript" src="/static/dust-full-2.0.0.min.js">
- </script><script type="text/javascript" src="/static/dust-helpers-1.1.1.min.js">
- </script><script type="text/javascript" src="dfs-dust.js">
- </script><script type="text/javascript" src="explorer.js">
- </script>
- <hr />
- <p><a href="http://hadoop.apache.org/core">Hadoop</a>, 2013.</p>
- </body>
- </html>
|