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