include jquery.json-2.4.js lib
[mkws-moved-to-github.git] / examples / htdocs / popup.html
1 <html>
2   <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4     <title>MKWS demo: popup search box</title>
5
6     <link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
7     <link rel="stylesheet" type="text/css" href="http://mkws.indexdata.com/mkws.css" />
8
9     <script type="text/javascript">
10       mkws_config = {
11         show_lang: false,
12         perpage_default: 10,
13         query_width: 50,
14         service_proxy_auth: "http://mkws.indexdata.com/service-proxy-auth"
15      };
16     </script>
17
18     <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
19     <script type="text/javascript" src="http://jquery-json.googlecode.com/files/jquery.json-2.4.js"></script>
20     <!-- legacy libs for testing
21     <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
22     <script src="http://code.jquery.com/ui/1.8.0/jquery-ui.min.js"></script>
23     -->
24
25     <script type="text/javascript" src="http://mkws.indexdata.com/pazpar2/js/pz2.js"></script>
26     <script type="text/javascript" src="http://mkws.indexdata.com/mkws.js"></script>
27
28   </head>
29   <body>
30     <script type="text/javascript">
31      jQuery.pazpar2({ "layout":"popup", width: 800, height: 500 } );
32     </script>
33
34     <pre>
35       An embryonic MasterKey Widget Set
36 =================================
37
38 This directory contains an embryonic MasterKey Widget Set, based
39 initially on "jsdemo" though now far removed from those beginnnings.
40
41
42 How this works
43 --------------
44
45 The goal is to make it that as much of the searching functionality as
46 possible is hosted on
47         http://mkws.indexdata.com/
48 so that very simple websites such as
49         http://example.indexdata.com/
50 can have MasterKey searching with minimal effort.
51
52 The following files must be hosted on mkws.indexdata.com:
53         mkws.js
54         mkws.css
55         /pazpar2/js/pz2.js (*)
56
57 The following files make up the application:
58         index.html
59         favicon.ico [optional]
60         robots.txt [optional]
61
62 (At present, the client application's configuruation also needs an
63 Alias for /service-proxy/, to avoid cross-site scripting issues. We
64 will fix this.)
65
66 (*) if you don't have already installed pazpar2 on the machine, you can
67 do it by installing a debian package or check it out from GIT:
68 $ git clone ssh://git.indexdata.com:222/home/git/pub/pazpar2
69
70 Configuring a client
71 --------------------
72
73 The application's HTML must contains the following elements as well as
74 whatever makes up the application itself:
75
76 [...]
77     </pre>
78     <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
79   </body>
80 </html>