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

Revision 7588, 4.6 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<html>
2
3<!--
4Licensed to the Apache Software Foundation (ASF) under one or more
5contributor license agreements.  See the NOTICE file distributed with
6this work for additional information regarding copyright ownership.
7The ASF licenses this file to You under the Apache License, Version 2.0
8(the "License"); you may not use this file except in compliance with
9the License.  You may obtain a copy of the License at
10
11http://www.apache.org/licenses/LICENSE-2.0
12
13Unless required by applicable law or agreed to in writing, software
14distributed under the License is distributed on an "AS IS" BASIS,
15WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16See the License for the specific language governing permissions and
17limitations under the License.
18-->
19
20<head>
21   
22  <title>Solr Admin</title>
23   
24  <link rel="icon" type="image/ico" href="img/favicon.ico">
25
26  <link rel="stylesheet" type="text/css" href="css/styles/common.css">
27  <link rel="stylesheet" type="text/css" href="css/styles/analysis.css">
28  <link rel="stylesheet" type="text/css" href="css/styles/cloud.css">
29  <link rel="stylesheet" type="text/css" href="css/styles/cores.css">
30  <link rel="stylesheet" type="text/css" href="css/styles/dashboard.css">
31  <link rel="stylesheet" type="text/css" href="css/styles/dataimport.css">
32  <link rel="stylesheet" type="text/css" href="css/styles/index.css">
33  <link rel="stylesheet" type="text/css" href="css/styles/java-properties.css">
34  <link rel="stylesheet" type="text/css" href="css/styles/logging.css">
35  <link rel="stylesheet" type="text/css" href="css/styles/menu.css">
36  <link rel="stylesheet" type="text/css" href="css/styles/plugins.css">
37  <link rel="stylesheet" type="text/css" href="css/styles/query.css">
38  <link rel="stylesheet" type="text/css" href="css/styles/replication.css">
39  <link rel="stylesheet" type="text/css" href="css/styles/schema-browser.css">
40  <link rel="stylesheet" type="text/css" href="css/styles/threads.css">
41  <link rel="stylesheet" type="text/css" href="css/chosen.css">
42   
43  <script type="text/javascript">
44   
45  var app_config = {};
46   
47  app_config.solr_path = '${contextPath}';
48  app_config.core_admin_path = '${adminPath}';
49   
50  </script>
51   
52</head>
53<body>
54   
55  <div id="wrapper">
56   
57    <div id="header">
58           
59      <a href="./" id="solr"><span>Apache SOLR</span></a>
60
61      <p id="environment">&nbsp;</p>
62
63    </div>
64
65    <div id="main" class="clearfix">
66       
67      <div id="content-wrapper">
68        <div id="content">
69                 
70          &nbsp;
71                 
72        </div>
73      </div>
74           
75      <div id="menu-wrapper">
76        <div>
77                 
78          <ul id="menu">
79
80            <li id="index" class="global"><p><a href="#/">Dashboard</a></p></li>
81
82            <li id="logging" class="global"><p><a href="#/~logging">Logging</a></p>
83              <ul>
84                <li class="level"><a href="#/~logging/level">Level</a></li>
85              </ul>
86            </li>
87
88            <li id="cloud" class="global optional"><p><a href="#/~cloud">Cloud</a></p>
89              <ul>
90                <li class="tree"><a href="#/~cloud">Tree</a></li>
91                <li class="graph"><a href="#/~cloud?view=graph">Graph</a></li>
92                <li class="rgraph"><a href="#/~cloud?view=rgraph">Graph (Radial)</a></li>
93                <li class="dump"><a href="#/~cloud">Dump</a></li>
94              </ul>
95            </li>
96
97            <li id="cores" class="global"><p><a href="#/~cores">Core Admin</a></p></li>
98
99            <li id="java-properties" class="global"><p><a href="#/~java-properties">Java Properties</a></li>
100
101            <li id="threads" class="global"><p><a href="#/~threads">Thread Dump</a></p></li>
102           
103          </ul>
104
105          <ul id="menu-selector">
106          </ul>
107                 
108        </div>
109      </div>
110           
111      <div id="meta">
112               
113        <ul>
114                   
115          <li class="documentation"><a href="http://lucene.apache.org/solr/"><span>Documentation</span></a></li>
116          <li class="issues"><a href="http://issues.apache.org/jira/browse/SOLR"><span>Issue Tracker</span></a></li>
117          <li class="irc"><a href="http://webchat.freenode.net/?channels=#solr"><span>IRC Channel</span></a></li>
118          <li class="mailinglist"><a href="http://wiki.apache.org/solr/UsingMailingLists"><span>Community forum</span></a></li>
119          <li class="wiki-query-syntax"><a href="http://wiki.apache.org/solr/SolrQuerySyntax"><span>Solr Query Syntax</span></a></li>
120                   
121        </ul>
122               
123      </div>
124           
125    </div>
126   
127  </div>
128   
129  <script src="js/require.js" data-main="js/main"></script>
130
131</body>
132</html>
Note: See TracBrowser for help on using the repository browser.