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

Revision 7588, 3.1 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="dataimport" class="clearfix">
18
19  <div id="frame">
20
21    <div id="current_state">
22
23      <span class="time"></span>
24      <div class="info">
25        <strong></strong>
26        <div class="details"></div>
27      </div>
28   
29    </div>
30
31    <div id="config-error">
32
33      Dataimport XML-Configuration is not valid
34
35    </div>
36
37    <div class="block hidden" id="config">
38
39      <h2>
40        <a class="toggle"><span>Dataimport Configuration</span></a>
41        <a class="reload_config" title="Reload Configuration">Reload</a>
42      </h2>
43       
44      <div class="message-container">
45          <div class="message"></div>
46      </div>
47
48      <div class="content">
49
50        <div id="dataimport_config">
51
52          <div class="loader">Loading ...</div>
53       
54        </div>
55
56      </div>
57   
58    </div>
59 
60  </div>
61
62  <div id="form">
63
64    <div id="navigation">
65
66      <ul></ul>
67
68    </div>
69
70    <form action="#" method="get">
71
72      <label for="command">
73        <a rel="help">Command</a>
74      </label>
75      <select name="command" id="command">
76        <option>full-import</option>
77        <option>delta-import</option>
78      </select>
79
80      <label for="verbose" class="checkbox">
81        <input type="checkbox" name="verbose" id="verbose" value="true">
82        <a rel="help">Verbose</a>
83      </label>
84
85      <label for="clean" class="checkbox">
86        <input type="checkbox" name="clean" id="clean" value="true">
87        <a rel="help">Clean</a>
88      </label>
89
90      <label for="commit" class="checkbox">
91        <input type="checkbox" name="commit" id="commit" value="true">
92        <a rel="help">Commit</a>
93      </label>
94
95      <label for="optimize" class="checkbox">
96        <input type="checkbox" name="optimize" id="optimize" value="true">
97        <a rel="help">Optimize</a>
98      </label>
99
100      <label for="entity">
101        <a rel="help">Entity</a>
102      </label>
103      <select id="entity"></select>
104
105      <label for="start">
106        <a rel="help">Start</a>,
107        <a rel="help">Rows</a>
108      </label>
109      <input type="text" id="start" placeholder="0">
110      <input type="text" id="rows" placeholder="10">
111
112      <label for="custom_parameters">
113        <a rel="help">Custom Parameters</a>
114      </label>
115      <input type="text" id="custom_parameters" value="">
116
117      <button type="submit">Execute Import</button>
118   
119    </form>
120 
121  </div>
122
123</div>
Note: See TracBrowser for help on using the repository browser.