lucene/solr/webapp/web/tpl/files.html

95 lines
2.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
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.
-->
<div id="files" class="clearfix">
<div id="frame">
<div id="tree-holder">
<div id="tree" class="tree">#tree</div>
<div id="new-file-holder">
<button><span>Create new file</span></button>
<form method="get">
<p class="note">Enter filename, on the next page you can input content or upload a file.</p>
<input type="text" name="file" placeholder="sample.xml">
<div class="buttons clearfix">
<button type="submit">Next </button>
</div>
</form>
</div>
</div>
<div id="file-content" class="clearfix">
<div class="top clearfix">
<a id="url" class="address-bar" href="#"></a>
<div class="buttons">
<button class="modify-file"><span>View file</span></button>
<button class="view-file"><span>Modify file</span></button>
</div>
</div>
<div class="view-file">
<div class="response">Loading …</div>
</div>
<div class="modify-file">
<p id="new-file-note">The requested file does (not yet) exist. <strong>Save file</strong> or <strong>Upload new file</strong> will create it.</p>
<form method="post" class="modify">
<textarea name="stream.body"></textarea>
<div class="buttons clearfix">
<button type="submit"><span>Save file</span></button>
</div>
</form>
<form method="post" class="upload">
<input type="file" name="fileupload">
<div class="buttons clearfix">
<button><span data-new-title="Upload new file" data-existing-title="Replace current file">Replace current file</span></button>
</div>
</form>
</div>
</div>
</div>
</div>