source: sandbox/expresso-solr/solr/example/work/jetty-0.0.0.0-8983-solr.war-_solr-any-/webapp/tpl/cores.html @ 7588

Revision 7588, 6.5 KB checked in by adir, 11 years ago (diff)

Ticket #000 - Adicionando a integracao de buscas com Solr na base a ser isnerida na comunidade

Line 
1<!--
2Licensed to the Apache Software Foundation (ASF) under one or more
3contributor license agreements.  See the NOTICE file distributed with
4this work for additional information regarding copyright ownership.
5The ASF licenses this file to You under the Apache License, Version 2.0
6(the "License"); you may not use this file except in compliance with
7the License.  You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17<div id="cores" class="clearfix">
18
19  <div id="ui-block">&nbsp;</div>
20
21  <div id="frame">
22
23    <div id="actions" class="actions clearfix">
24     
25      <button id="add" class="action"><span>Add Core</span></button>
26      <button id="unload" class="warn"><span>Unload</span></button>
27      <button id="rename" class="action"><span>Rename</span></button>
28      <button id="swap" class="action"><span>Swap</span></button>
29      <button id="reload"><span>Reload</span></button>
30      <button id="optimize"><span>Optimize</span></button>
31
32      <div class="action add" data-rel="add">
33
34        <form>
35
36          <input type="hidden" name="action" value="CREATE">
37
38          <p class="clearfix"><label for="add_name">name:</label>
39          <input type="text" name="name" id="add_name" placeholder="new_core"></p>
40
41          <p class="clearfix"><label for="add_instanceDir">instanceDir:</label>
42          <input type="text" name="instanceDir" id="add_instanceDir" placeholder="new_core"></p>
43
44          <p class="clearfix"><label for="add_dataDir">dataDir:</label>
45          <input type="text" name="dataDir" id="dataDir" placeholder="data"></p>
46
47          <p class="clearfix"><label for="add_config">config:</label>
48          <input type="text" name="config" id="add_config" placeholder="solrconfig.xml"></p>
49
50          <p class="clearfix"><label for="add_schema">schema:</label>
51          <input type="text" name="schema" id="add_schema" placeholder="schema.xml"></p>
52
53          <div class="cloud">
54
55            <p class="clearfix"><label for="add_collection">collection:</label>
56            <input type="text" name="collection" id="add_collection"></p>
57
58            <p class="clearfix"><label for="add_shard">shard:</label>
59            <input type="text" name="shard" id="shard"></p>
60
61          </div>
62
63          <p class="clearfix buttons">
64            <button type="submit" class="submit"><span>Add Core</span></button>
65            <button type="reset" class="reset"><span>Cancel</span></button>
66          </p>
67
68        </form>
69
70      </div>
71
72      <div class="action rename" data-rel="rename">
73
74        <form>
75
76          <input type="hidden" name="action" value="RENAME">
77          <input type="hidden" name="core" data-core="current">
78
79          <p class="clearfix"><label for="rename_other">New Name:</label>
80          <input type="text" name="other" data-core="current" id="rename_other"></p>
81
82          <p class="clearfix buttons">
83            <button type="submit" class="submit"><span>Rename Core</span></button>
84            <button type="reset" class="reset"><span>Cancel</span></button>
85          </p>
86
87        </form>
88
89      </div>
90
91      <div class="action swap" data-rel="swap">
92
93        <form>
94
95          <input type="hidden" name="action" value="SWAP">
96
97          <p class="clearfix"><label for="swap_core">this:</label>
98          <input type="text" id="swap_core" name="core" data-core="current" readonly="readonly"></p>
99
100          <p class="clearfix"><label for="swap_other">and:</label>
101          <select name="other" id="swap_other" name="other" class="other">
102          </select></p>
103
104          <p class="clearfix buttons">
105            <button type="submit" class="submit"><span>Swap Cores</span></button>
106            <button type="reset" class="reset"><span>Cancel</span></button>
107          </p>
108
109        </form>
110
111      </div>
112
113    </div>
114
115    <div id="data">
116
117      <div class="block" id="core-data">
118
119          <h2><span>Core</span></h2>
120         
121          <div class="message-container">
122              <div class="message"></div>
123          </div>
124
125          <div class="content">
126
127          <ul>
128
129            <li class="startTime"><dl class="clearfix">
130              <dt><span>startTime:</span></dt>
131                <dd class="timeago"></dd>
132            </dl></li>
133
134            <li class="instanceDir"><dl class="clearfix">
135              <dt><span>instanceDir:</span></dt>
136                <dd></dd>
137            </dl></li>
138
139            <li class="dataDir"><dl class="clearfix">
140              <dt><span>dataDir:</span></dt>
141                <dd></dd>
142            </dl></li>
143       
144          </ul>
145       
146        </div>
147      </div>
148
149      <div class="block" id="index-data">
150
151          <h2><span>Index</span></h2>
152         
153          <div class="message-container">
154              <div class="message"></div>
155          </div>
156
157          <div class="content">
158         
159          <ul>
160
161            <li class="lastModified"><dl class="clearfix">
162              <dt><span>lastModified:</span></dt>
163                <dd class="timeago"></dd>
164            </dl></li>
165
166            <li class="version"><dl class="clearfix">
167              <dt><span>version:</span></dt>
168                <dd></dd>
169            </dl></li>
170
171            <li class="numDocs"><dl class="clearfix">
172              <dt><span>numDocs:</span></dt>
173                <dd></dd>
174            </dl></li>
175
176            <li class="maxDoc"><dl class="clearfix">
177              <dt><span>maxDoc:</span></dt>
178                <dd></dd>
179            </dl></li>
180
181            <li class="optimized"><dl class="clearfix">
182              <dt><span>optimized:</span></dt>
183                <dd class="ico"><span></span></dd>
184            </dl></li>
185
186            <li class="current"><dl class="clearfix">
187              <dt><span>current:</span></dt>
188                <dd class="ico"><span></span></dd>
189            </dl></li>
190
191            <li class="hasDeletions"><dl class="clearfix">
192              <dt><span>hasDeletions:</span></dt>
193                <dd class="ico"><span></span></dd>
194            </dl></li>
195
196            <li class="directory"><dl class="clearfix">
197              <dt><span>directory:</span></dt>
198                <dd></dd>
199            </dl></li>
200         
201          </ul>
202       
203        </div>
204      </div>
205
206    </div>
207 
208  </div>
209
210  <div id="navigation" class="clearfix">
211 
212  </div>
213
214</div>
Note: See TracBrowser for help on using the repository browser.