Tweak order.
[mkws-moved-to-github.git] / doc / mkws-manual.markdown
1 % Embedded metasearching with the MasterKey Widget Set
2 % Mike Taylor
3 % 30 July 2014
4
5
6 Introduction
7 ============
8
9 There are lots of practical problems in building resource discovery
10 solutions. One of the biggest, and most ubiquitous is incorporating
11 metasearching functionality into existing web-sites -- for example,
12 content-management systems, library catalogues or intranets. In
13 general, even when access to core metasearching functionality is
14 provided by simple web-services such as
15 [Pazpar2](http://www.indexdata.com/pazpar2), integration work is seen
16 as a major part of most projects.
17
18 Index Data provides several different toolkits for communicating with
19 its metasearching middleware, trading off varying degrees of
20 flexibility against convenience:
21
22 * pz2.js -- a low-level JavaScript library for interrogating the
23   Service Proxy and Pazpar2. It allows the HTML/JavaScript programmer
24   to create JavaScript applications display facets, records, etc. that
25   are fetched from the metasearching middleware.
26
27 * masterkey-ui-core -- a higher-level, complex JavaScript library that
28   uses pz2.js to provide the pieces needed for building a
29   full-featured JavaScript application.
30
31 * MasterKey Demo UI -- an example of a searching application built on
32   top of masterkey-ui-core. Available as a public demo at
33   http://mk2.indexdata.com/
34
35 * MKDru -- a toolkit for embedding MasterKey-like searching into
36   Drupal sites.
37
38 All of these approaches require programming to a greater or lesser
39 extent. Against this backdrop, we introduced MKWS (the MasterKey
40 Widget Set) -- a set of simple, very high-level HTML+CSS+JavaScript
41 components that can be incorporated into any web-site to provide
42 MasterKey searching facilities. By placing `<div>`s with well-known
43 identifiers in any HTML page, the various components of an application
44 can be embedded: search-boxes, results areas, target information, etc.
45
46
47 Simple Example
48 ==============
49
50 The following is a complete MKWS-based searching application:
51
52     <html>
53       <head>
54         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
55         <title>MKWS demo client</title>
56         <script type="text/javascript" src="http://mkws.indexdata.com/mkws-complete.js"></script>
57         <link rel="stylesheet" href="http://mkws.indexdata.com/mkws.css" />
58       </head>
59       <body>
60         <div id="mkwsSearch"></div>
61         <div id="mkwsResults"></div>
62       </body>
63     </html>
64
65 Go ahead, try it! You don't even need a web-server. Just copy and
66 paste this HTML into a file on your computer -- `/tmp/magic.html`,
67 say -- and point your web-browser at it:
68 `file:///tmp/magic.html`. Just like that, you have working
69 metasearching.
70
71
72 How the example works
73 ---------------------
74
75 If you know any HTML, the structure of the file will be familar to
76 you: the `<html>` element at the top level contains a `<head>` and a
77 `<body>`. In addition to whatever else you might want to put on your
78 page, you can add MKWS elements.
79
80 These fall into two categories. First, the prerequisites in the HTML
81 header, which are loaded from the tool site mkws.indexdata.com:
82
83 * `mkws-complete.js`
84   contains all the JavaScript needed by the widget-set.
85
86 * `mkws.css`
87   provides the default CSS styling
88
89 Second, within the HTML body, `<div>` elements with special IDs that
90 begin `mkws` can be provided. These are filled in by the MKWS code,
91 and provide the components of the searching UI. The very simple
92 application above has only two such components: a search box and a
93 results area. But more are supported. The main `<div>`s are:
94
95 * `mkwsSearch` -- provides the search box and button.
96
97 * `mkwsResults` -- provides the results area, including a list of
98    brief records (which open out into full versions when clicked),
99    paging for large results sets, facets for refining a search,
100    sorting facilities, etc.
101
102 * `mkwsLang` -- provides links to switch between one of several
103    different UI languages. By default, English, Danish and German are
104    provided.
105
106 * `mkwsSwitch` -- provides links to switch between a view of the
107    result records and of the targets that provide them. Only
108    meaningful when `mkwsTargets` is also provided.
109
110 * `mkwsTargets` -- the area where per-target information will appear
111    when selected by the link in the `mkwsSwitch` area. Of interest
112    mostly for fault diagnosis rather than for end-users.
113
114 * `mkwsStat` --provides a status line summarising the statistics of
115    the various targets.
116
117 To see all of these working together, just put them all into the HTML
118 `<body>` like so:
119
120         <div id="mkwsSwitch"></div>
121         <div id="mkwsLang"></div>
122         <div id="mkwsSearch"></div>
123         <div id="mkwsResults"></div>
124         <div id="mkwsTargets"></div>
125         <div id="mkwsStat"></div>
126
127
128 Configuration
129 =============
130
131 Many aspects of the behaviour of MKWS can be modified by setting
132 parameters into the `mkws_config` object. **This must be done *before*
133 including the MKWS JavaScript** so that when that code is executed it
134 can refer to the configuration values. So the HTML header looks like
135 this:
136
137         <script type="text/javascript">
138           var mkws_config = {
139             lang: "da",
140             sort_default: "title",
141             query_width: 60
142           };
143         </script>
144         <script type="text/javascript" src="http://mkws.indexdata.com/mkws-complete.js"></script>
145
146 This configuration sets the UI language to Danish (rather than the
147 default of English), initially sorts search results by title rather
148 than relevance (though as always this can be changed in the UI) and
149 makes the search box a bit wider than the default.
150
151 The full set of supported configuration items is described in the
152 reference guide below.
153
154
155 Control over HTML and CSS
156 =========================
157
158 More sophisticated applications will not simply place the `<div>`s
159 together, but position them carefully within an existing page
160 framework -- such as a Drupal template, an OPAC or a SharePoint page.
161
162 While it's convenient for simple applications to use a monolithic
163 `mkwsResults` area which contains record, facets, sorting options,
164 etc., customised layouts may wish to treat each of these components
165 separately. In this case, `mkwsResults` can be omitted, and the
166 following lower-level components provided instead:
167
168 * `mkwsTermlists` -- provides the facets
169
170 * `mkwsRanking` -- provides the options for how records are sorted and
171    how many are included on each page of results.
172
173 * `mkwsPager` -- provides the links for navigating back and forth
174    through the pages of records.
175
176 * `mkwsNavi` -- when a search result has been narrowed by one or more
177    facets, this area shows the names of those facets, and allows the
178    selected values to be clicked in order to remove them.
179
180 * `mkwsRecords` -- lists the actual result records.
181
182 Customisation of MKWS searching widgets can also be achieved by
183 overriding the styles set in the toolkit's CSS stylesheet. The default
184 styles can be inspected in `mkws.css` and overridden in any
185 styles that appears later in the HTML than that file. At the simplest
186 level, this might just mean changing fonts, sizes and colours, but
187 more fundamental changes are also possible.
188
189 To properly apply styles, it's necessary to understand how the HTML is
190 structured, e.g. which elements are nested within which
191 containers. The structures used by the widget-set are described in the
192 reference guide below.
193
194
195 Refinements
196 ===========
197
198
199 Message of the day
200 ------------------
201
202 Some applications might like to open with content in the area that
203 will subsequently be filled with result-records -- a message of the
204 day, a welcome message or a help page. This can be done by placing an
205 `mkwsMOTD` division anywhere on the page. It will be moved into the
206 `mkwsResults` area and initially displayed, but will be hidden when a
207 search is made.
208
209
210 Customised display using Handlebars templates
211 ---------------------------------------------
212
213 Certain aspects of the widget-set's display can be customised by
214 providing Handlebars templates with well-known classes that begin with
215 the string `mkwsTemplate_`. At present, the supported templates are:
216
217 * `mkwsTemplate_Summary` -- used for each summary record in a list of
218   results.
219
220 * `mkwsTemplate_Record` -- used when displaying a full record.
221
222 For both of these the metadata record is passed in, and its fields can
223 be referenced in the template. As well as the metadata fields
224 (`md-*`), two special fields are provided to the `mkwsTemplate_Summary`
225 template, for creating popup links for full records. These are `_id`,
226 which must be provided as the `id` attribute of a link tag, and
227 `_onclick`, which must be provided as the `onclick` attribute.
228
229 For example, an application can install a simple author+title summary
230 record in place of the usual one providing the following template:
231
232         <script class="mkwsTemplate_Summary" type="text/x-handlebars-template">
233           {{#if md-author}}
234             <span>{{md-author}}</span>
235           {{/if}}
236           <a href="#" id="{{_id}}" onclick="{{_onclick}}">
237             <b>{{md-title}}</b>
238           </a>
239         </script>
240
241 For details of Handlebars template syntax, see
242 [the online documentation](http://handlebarsjs.com/).
243
244
245 Responsive design
246 -----------------
247
248 Metasearching applications may need to appear differently on
249 small-screened mobile devices, or change their appearance when
250 screen-width changes (as when a small device is rotated). To achieve
251 this, MKWS supports responsive design which will move the termlists to
252 the bottom on narrow screens and to the sidebar on wide screens.
253
254 To turn on this behaviour, set the `responsive_design_width` to the desired
255 threshhold width in pixels. For example:
256
257         <script type="text/javascript">
258             var mkws_config = {
259                 responsive_design_width: 990
260             };
261         </script>
262
263 If individual result-related components are in use in place of the
264 all-in-one mkwsResults, then the redesigned application needs to
265 specify the locations where the termlists should appear in both
266 cases. In this case, wrap the wide-screen `mkwsTermlists` element in a
267 `mkwsTermlists-Container-wide` element; and provide an
268 `mkwsTermlists-Container-narrow` element in the place where the narrow-screen
269 termlists should appear.
270
271
272 Popup results with jQuery UI
273 ----------------------------
274
275 The [jQuery UI library](http://en.wikipedia.org/wiki/JQuery_UI)
276 can be used to construct MKWS applications in which the only component
277 generally visible on the page is a search box, and the results appear
278 in a popup. The key part of such an application is this invocation of
279 the MKWS jQuery plugin:
280
281         <div class="mkwsSearch"></div>
282         <div class="mkwsPopup" popup_width="1024" popup_height="650" popup_modal="0" popup_autoOpen="0" popup_button="input.mkwsButton">
283           <div class="mkwsSwitch"></div>
284           <div class="mkwsLang"></div>
285           <div class="mkwsResults"></div>
286           <div class="mkwsTargets"></div>
287           <div class="mkwsStat"></div>
288         </div>
289
290 The necessary scaffolding can be seen in an example application,
291 http://example.indexdata.com/index-popup.html
292
293
294 Authentication and target configuration
295 ---------------------------------------
296
297 By default, MKWS configures itself to use a demonstration account on a
298 service hosted by mkws.indexdata.com. This account (username `demo`,
299 password `demo`) provides access to about a dozen free data
300 sources. Authentication onto this service is via an authentication URL
301 on the same MKWS server, so no explicit configuration is needed.
302
303 In order to search in a customised set of targets, including
304 subscription resources, it's necessary to create an account with
305 Index Data's hosted service proxy, and protect that account with
306 authentication tokens (to prevent unauthorised use of subscription
307 resources). For information on how to do this, see the next section.
308
309
310 MKWS Target Selection
311 =====================
312
313 MKWS accesses targets using the Pazpar2 metasearching engine. Although
314 Pazpar2 can be used directly, using a statically configured set of
315 targets, this usage is unusual. More often, Pazpar2 is fronted by the
316 Service Proxy (SP), which manages authentication, sessions, target
317 selection, etc.
318
319 This document assumes the SP is used, and explains how to go about
320 making a set of targets (a "library") available, how to connect your
321 MKWS application to that library, and how to choose which of the
322 available targets to use.
323
324
325 Maintaining the library
326 -----------------------
327
328 The service proxy accesses sets of targets that are known as
329 "libraries". In general, each customer will have their own library,
330 though some standard libraries may be shared between many customers --
331 for example, a library containing all open-access academic journals.
332 A library can also contain other configuration information, including
333 the set of categories by which targets are classified for the library.
334
335 Libraries are maintained using MKAdmin (MasterKey
336 Admin). Specifically, those used by MKWS are generally maintained on
337 the "MKX Admin" installation at
338 <http://mkx-admin.indexdata.com/console/>
339
340 In general, Index Data will create a library for each customer, then
341 give the customer a username/password pair that they can use to enter
342 MKAdmin and administrate that library.
343
344 Once logged in, customers can select which targets to include (from
345 the list of several thousand that MKAdmin knows about), and make
346 customer-specific modifications -- e.g. overriding the titles of the
347 targets.
348
349 Most importantly, customers' administrators can add authentication
350 credentials that the Service Proxy will used on their behalf when
351 accessing subscription resources -- username/password pairs or proxies
352 to use for IP-based authentication. Note that **it is then crucial to
353 secure the library from use by unauthorised clients**, otherwise the
354 customer's paid subscriptions will be exploited.
355
356 Access to libraries is managed by creating one or more "User Access"
357 records in MKAdmin, under the tab of that name. Each of these records
358 provides a combination of credentials and other data that allow an
359 incoming MKWS client to be identified as having legitimate access to
360 the library. The authentication process, described below, works by
361 searching for a matching User Access record.
362
363
364 Authenticating your MWKS application onto the library
365 -----------------------------------------------------
366
367 Some MKWS applications will be content to use the default library with
368 its selection of targets. Most, though, will want to define their own
369 library providing a different range of available targets. An important
370 case is that of applications that authenticate onto subscription
371 resources by means of back-end site credentials stored in MKAdmin:
372 precautions must be taken so that such library accounts do not allow
373 unauthorised access.
374
375 Setting up such a library is a process of several stages.
376
377 ### Create the User Access account
378
379 Log in to MKAdmin to add a User Access account for your library:
380
381 * Go to <http://mkx-admin.indexdata.com/console/>
382 * Enter the adminstrative username/password
383 * Go to the User Access tab
384 * Create an end-user account
385 * Depending on what authentication method it be used, set the
386   User Access account's username and password, or referring URL, or
387   Service Proxy hostname, or IP-address range.
388
389 If your MWKS application runs at a well-known, permanent address --
390 <http://yourname.com/app.html>, say -- you can set the User Access
391 record so that this originating URL is recognised by setting it into
392 the "Referring URL" field.
393
394 If your application accesses the Service Proxy by a unique virtual
395 hostname -- yourname.sp-mkws.indexdata.com, say -- you can tie the use
396 of this hostname to your library by setting the User Access record's
397 "Host Name" field to name of the host where the SP is accessed. **Note
398 that this is not secure, as other applications can use this virtual
399 hostname to gain access to your library.**
400
401 Or if your application's users are coming from a well-known range of
402 IP-address space, you can enter the range in the "IP Ranges"
403 field. The format of this field is as follows: it can contain any
404 number of ranges, separated by commas; each range is either a single
405 IP address or two addresses separated by a hyphen; each IP address is
406 four small integers separated by periods. For example,
407 `80.229.143.255-80.229.143.255, 5.57.0.0-5.57.255.255, 127.0.0.1`.
408
409 Alternatively, your application can authenticate by username and
410 password credentials. This is a useful approach in several situations,
411 including when you need to specify the use of a different library from
412 usual one. To arrange for this, set the username and password as a
413 single string separated by a slash -- e.g. "mike/swordfish" -- into
414 the User Access record's Authentication field.
415
416 You can set multiple fields into a single User Access record; or
417 create multiple User Access records. For example, a single User Access
418 record can specify both a Referring URL a username/password pair that
419 can be used when running an application from a different URL. But if
420 multiple Referring URLs are needed, then each must be specified in its
421 own User Access record.
422
423 ### Tell the application to use the library
424
425 In the HTML of the application, tell MKWS to authenticate on to the
426 Service Proxy. When referer-based, hostname-based or IP-based
427 authentication is used, this is very simple:
428
429         <script type="text/javascript">
430           var mkws_config = { service_proxy_auth:
431           "//sp-mkws.indexdata.com/service-proxy/?command=auth&action=perconfig" };
432         </script>
433
434 > TODO This should be the default setting
435
436 And ensure that access to the MWKS application is from the correct
437 Referrer URL or IP-range.
438
439 ### (Optional): access by a different virtual hostname
440
441 When hostname-based authentication is in use, it's necessary to access
442 the Service Proxy as the correctly named virtual host. This can be
443 done by setting the `service_proxy_auth` configuration item to a
444 URL containing that hostname, such as
445 <//yourname.sp-mkws.indexdata.com/service-proxy/?command=auth&action=perconfig>
446
447 > TODO It should be possible to change just the hostname without
448 > needing to repeat the rest of the URL (protocol, path, query)
449
450 > TODO When changing the SP authentication URL, the Pazpar2 URL should
451 > in general change along with it.
452
453 ### (Optional): embed credentials for access to the library
454
455 When credential-based authentication is in use (username and
456 password), it's necessary to pass these credentials into the Service
457 Proxy when establishing the session. This can most simply be done just
458 by setting the `service_proxy_auth` configuration item to a URL such as
459 <//sp-mkws.indexdata.com/service-proxy/?command=auth&action=perconfig&username=mike&password=swordfish>
460
461 > TODO It should be possible to add the username and password to the
462 > configuration without needing to repeat the rest of the URL.
463
464 ### (Optional): conceal credentials from HTML source
465
466 Using a credential-based Service-Proxy authentication URL such as the
467 one above reveals the the credentials to public view -- to anyone who
468 does View Source on the MKWS application. This may be acceptable for
469 some libraries, but is intolerable for those which provide
470 authenticated access to subscription resources.
471
472 In these circumstances, a more elaborate approach is necessary. The
473 idea is to make a URL local to the customer that is used for
474 authentication onto the Service Proxy, hiding the credentials in a
475 local rewrite rule. Then local mechanisms can be used to limit access
476 to that local authentication URL. Here is one way to do it when
477 Apache2 is the application's web-server, which we will call
478 yourname.com:
479
480 - Add a rewriting authentication alias to the configuration:
481
482         RewriteEngine on
483         RewriteRule /spauth/ http://mkws.indexdata.com/service-proxy/?command=auth&action=check,login&username=U&password=PW [P]
484
485 - Set the MKWS configuration item `service_proxy_auth` to
486   <http://yourname.com/spauth/>
487 - Protect access to the local path <http://yourname.com/spauth/>
488   (e.g. using a .htaccess file).
489
490
491 Choosing targets from the library
492 ---------------------------------
493
494 MKWS applications can choose what subset of the library's targets to
495 use, by means of several alternative settings on individual widgets or
496 in the `mkws_config` structure:
497
498 * `targets` -- contains a Pazpar2 targets string, typically of the form
499   "pz:id=" or "pz:id~" followed by a pipe-separated list of low-level
500   target IDs.
501   At present, these IDs can take one of two forms, depending on the
502   configuration of the Service Proxy being used: they may be based on
503   ZURLs (so a typical value would be something like
504   `pz:id=josiah.brown.edu:210/innopac|lui.indexdata.com:8080/solr4/select?fq=database:4902`)
505   or they may be UDBs (so a typical value would be something like
506   `pz:id=brown|artstor`)
507
508 * `targetfilter` -- contains a CQL query which is used to find relevant
509   targets from the relvant library. For example,
510   `udb==Google_Images`
511   or
512   `categories=news`
513
514 * `target` -- contains a single UDB, that of the sole target to be
515   used. For example,
516   `Google_Images`.
517   This is merely syntactic sugar for "targetfilter" with the query
518   `udb==NAME`
519
520 For example, a `Records` widget can be limited to searching only in
521 targets that have been categorised as news sources by providing an
522 attribute as follows:
523
524         <div class="mkwsRecords" targetfilter='categories=news'/>
525
526
527 Reference Guide
528 ===============
529
530 Configuration object
531 --------------------
532
533 The configuration object `mkws_config` may be created before including
534 the MKWS JavaScript code to modify default behaviour. This structure
535 is a key-value lookup table, whose entries are described in the table
536 below. All entries are optional, but if specified must be given values
537 of the specified type. If ommitted, each setting takes the indicated
538 default value; long default values are in footnotes to keep the table
539 reasonably narrow.
540
541 ----
542 Element                   Type    Default   Description
543 --------                  -----   --------- ------------
544 debug_level               int     1         Level of debugging output to emit. 0 = none, 1 = messages, 2 = messages with
545                                             datestamps, 3 = messages with datestamps and stack-traces.
546
547 facets                    array   *Note 1*  Ordered list of names of facets to display. Supported facet names are
548                                             `xtargets`, `subject` and `author`.
549
550 lang                      string  en        Code of the default language to display the UI in. Supported language codes are `en` =
551                                             English, `de` = German, `da` = Danish, and whatever additional languages are configured
552                                             using `language_*` entries (see below).
553
554 lang_options              array   []        A list of the languages to offer as options. If empty (the default), then all
555                                             configured languages are listed.
556
557 language_*                hash              Support for any number of languages can be added by providing entries whose name is
558                                             `language_` followed by the code of the language. See the separate section below for
559                                             details.
560
561 pazpar2_url               string  *Note 2*  The URL used to access the metasearch middleware. This service must be configured to
562                                             provide search results, facets, etc. It may be either unmediated or Pazpar2 the
563                                             MasterKey Service Proxy, which mediates access to an underlying Pazpar2 instance. In
564                                             the latter case, `service_proxy_auth` must be provided.
565
566 perpage_default           string  20        The initial value for the number of records to show on each page.
567
568 perpage_options           array   *Note 3*  A list of candidate page sizes. Users can choose between these to determine how many
569                                             records are displayed on each page of results.
570
571 query_width               int     50        The width of the query box, in characters.
572
573 responsive_design_width   int               If defined, then the facets display moves between two locations as the screen-width
574                                             varies, as described above. The specified number is the threshhold width, in pixels,
575                                             at which the facets move between their two locations.
576
577 service_proxy_auth        url     *Note 4*  A URL which, when `use_service_proxy` is true, is fetched once at the beginning of each
578                                             session to authenticate the user and establish a session that encompasses a defined set
579                                             of targets to search in.
580
581 service_proxy_auth_domain domain            Can be set to the domain for which `service_proxy_auth` proxies authentication, so
582                                             that cookies are rewritten to appear to be from this domain. In general, this is not
583                                             necessary, as this setting defaults to the domain of `pazpar2_url`.
584
585 show_lang                 bool    true      Indicates whether or not to display the language menu.
586
587 show_perpage              bool    true      Indicates whether or not to display the perpage menu.
588
589 show_sort                 bool    true      Indicates whether or not to display the sort menu.
590
591 show_switch               bool    true      Indicates whether or not to display the switch menu, for switching between showing
592                                             retrieved records and target information.
593
594 sort_default              string  relevance The label of the default sort criterion to use. Must be one of those in the `sort`
595                                             array.
596
597 sort_options              array   *Note 6*  List of supported sort criteria. Each element of the list is itself a two-element list:
598                                             the first element of each sublist is a pazpar2 sort-expression such as `data:0` and
599                                             the second is a human-readable label such as `newest`.
600
601 use_service_proxy         bool    true      If true, then a Service Proxy is used to deliver searching services rather than raw
602                                             Pazpar2.
603 ----
604
605 Perhaps we should get rid of the `show_lang`, `show_perpage`,
606 `show_sort` and `show_switch` configuration items, and simply display the relevant menus
607 only when their containers are provided -- e.g. an `mkwsLang` element
608 for the language menu. But for now we retain these, as an easier route
609 to lightly customise the display than my changing providing a full HTML
610 structure.
611
612 ### Notes
613
614 1. ["sources", "subjects", "authors"]
615
616 2. /pazpar2/search.pz2
617
618 3. [10, 20, 30, 50]
619
620 4. http://mkws.indexdata.com/service-proxy-auth
621
622 5. http://mkws.indexdata.com/service-proxy/
623
624 6. [["relevance"], ["title:1", "title"], ["date:0", "newest"], ["date:1", "oldest"]]
625
626
627 Language specification
628 ----------------------
629
630 Support for another UI language can be added by providing an entry in
631 the `mkws_config` object whose name is `language_` followed by the
632 name of the language: for example, `language_French` to support
633 French. Then value of this entry must be a key-value lookup table,
634 mapping the English-language strings of the UI into their equivalents
635 in the specified language. For example:
636
637             var mkws_config = {
638               language_French: {
639                 "Authors": "Auteurs",
640                 "Subjects": "Sujets",
641                 // ... and others ...
642               }
643             }
644
645 The following strings occurring in the UI can be translated:
646 `Displaying`,
647 `Next`,
648 `Prev`,
649 `Records`,
650 `Search`,
651 `Sort by`,
652 `Targets`,
653 `Termlists`,
654 `and show`,
655 `found`,
656 `of`,
657 `per page`
658 and
659 `to`.
660
661 In addition, facet names can be translated:
662 `Authors`,
663 `Sources`
664 and
665 `Subjects`.
666
667 Finally, the names of fields in the full-record display can be
668 translated. These include, but may not be limited to:
669 `Author`,
670 `Date`,
671 `Location`,
672 `Subject`
673 and
674 `Title`.
675
676
677
678 jQuery UI popup invocation
679 --------------------------
680
681 The MasterKey Widget Set can be invoked in a popup window on top of the page.
682
683 Note that when using the `popup` layout, facilities from the jQuery UI
684 toolkit are used, so it's necessary to include both CSS and JavaScript
685 from that toolkit. The relevant lines are:
686
687     <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
688     <link rel="stylesheet" type="text/css"
689           href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
690
691     <div class="mkwsSearch"></div>
692     <div class="mkwsPopup" popup_width="1024" popup_height="650" popup_modal="0" popup_autoOpen="0" popup_button="input.mkwsButton">
693       <div class="mkwsSwitch"></div>
694       <div class="mkwsLang"></div>
695       <div class="mkwsResults"></div>
696       <div class="mkwsTargets"></div>
697       <div class="mkwsStat"></div>
698     </div>
699
700 ----
701 Element    Type    Default           Description
702 --------   -----   ---------         ------------
703 popup_width     string     880       Width of the popup window (if used), in
704                                      pixels.
705
706 popup_height    string     760       Height of the popup window (if used), in
707                                      pixels.
708
709 popup_button    string      input.mkwsButton  (Never change this.)
710
711 popup_modal     string      0       Modal confirmation mode. Valid values are 0 or 1
712
713 popup_autoOpen  string      1       Open popup window on load. Valid values are 0 or 1
714
715 ----
716
717
718 The structure of the HTML generated by the MKWS widgets
719 -------------------------------------------------------
720
721 In order to override the default CSS styles provided by the MasterKey Widget
722 Set, it's necessary to understand that structure of the HTML elements that are
723 generated within the components. This knowledge make it possible, for example,
724 to style each `<div>` with class `term` but only when it occurs inside an
725 element with ID `#mkwsTermlists`, so as to avoid inadvertently styling other
726 elements using the same class in the non-MKWS parts of the page.
727
728 The HTML structure is as follows. As in CSS, #ID indicates a unique identifier
729 and .CLASS indicates an instance of a class.
730
731     #mkwsSwitch
732       a*
733
734     #mkwsLang
735       ( a | span )*
736
737     #mkwsSearch
738       form
739         input#mkwsQuery type=text
740         input#mkwsButton type=submit
741
742     #mkwsBlanket
743       (no contents -- used only for masking)
744
745     #mkwsResults
746       table
747         tbody
748           tr
749             td
750               #mkwsTermlists
751                 div.title
752                 div.facet*
753                   div.termtitle
754                   ( a span br )*
755             td
756               div#mkwsRanking
757                 form#mkwsSelect
758                   select#mkwsSort
759                   select#mkwsPerpage
760               #mkwsPager
761               #mkwsNavi
762               #mkwsRecords
763                 div.record*
764                   span (for sequence number)
765                   a (for title)
766                   span (for other information such as author)
767                   div.details (sometimes)
768                     table
769                       tbody
770                         tr*
771                           th
772                           td
773     #mkwsTargets
774       #mkwsBytarget
775         table
776           thead
777             tr*
778               td*
779           tbody
780             tr*
781               td*
782
783     #mkwsStat
784       span.head
785       span.clients
786       span.records
787
788 - - -
789
790 Copyright (C) 2013-2014 by IndexData ApS, <http://www.indexdata.com>