source: vlo/branches/vlo-3.0/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/wicket/panels/search/AdvancedSearchOptionsPanel.html @ 4963

Last change on this file since 4963 was 4963, checked in by Twan Goosen, 10 years ago

Refactored QueryFacetSelection?: instead of a collection of strings, it now has a 'FacetSelection?' object for each facet which holds a collection as well as a selection type (which can be AND (default), OR, NOT, or NOT EMPTY).

File size: 2.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3<!--
4Copyright (C) 2014 CLARIN
5
6This program is free software: you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program.  If not, see <http://www.gnu.org/licenses/>.
18-->
19<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org" xml:lang="en">
20    <head>
21        <title>facet panel</title>
22        <meta charset="UTF-8">
23    </head>
24    <body>
25        <wicket:panel>
26            <div class="sidebaritem facet collapsedfacet">
27                <!--rounded corners - top ****--> 
28                <div class="rtop"><div class="r1"></div><div class="r2"></div><div class="r3"></div><div class="r4"></div></div>
29                <a href="#" class="expandfacet"><span>expand</span></a>
30                <a href="#" class="collapsefacet"><span>collapse</span></a>
31                <h1><a href="#">Search options</a></h1>
32                <div class="sbilinks facetvalues">
33                    <form id="advancedoptions" action="">
34                        <ul>
35                            <li>
36                                <input wicket:id="fcs" type="checkbox" id="onlyfcs"/>
37                                <label for="onlyfcs">Only include resources that support content search</label>
38                            </li>
39                            <li>
40                                <input type="checkbox" id="onlymdformat"/>
41                                <label for="onlyfcs">Only include resources described with</label>
42                                <select>
43                                    <option>CMDI</option>
44                                    <option>OLAC</option>
45                                </select>
46                            </li>
47                        </ul>
48                        <input type="submit" value="Apply" />
49                    </form>
50                </div>
51                <!--rounded corners - bottom ****--> 
52                <div class="rbottom"><div class="r4"></div><div class="r3"></div><div class="r2"></div><div class="r1"></div></div>
53            </div>
54        </wicket:panel>
55    </body>
56</html>
Note: See TracBrowser for help on using the repository browser.