source: trunk/gsdl3/docs/manual/manual.tex@ 13662

Last change on this file since 13662 was 13284, checked in by daven, 18 years ago

notes on SOAP debugging using TCPMonitor

  • Property svn:keywords set to Author Date Id Revision
File size: 168.1 KB
Line 
1\documentclass[a4paper,11pt]{article}
2\usepackage{isolatin1,times,epsfig}
3\hyphenation{Message-Router Text-Query}
4
5\newenvironment{gsc}% Greenstone text bits
6{\begin{footnotesize}\begin{tt}}%
7{\end{tt}\end{footnotesize}}
8
9\newcommand{\gst}[1]{{\footnotesize \tt #1}}
10\newcommand{\gsdlhome}{\$GSDL3HOME}
11
12\newcommand{\gsii}{Greenstone 2}
13\newcommand{\gsiii}{Greenstone 3}
14\newcommand{\gs}{Greenstone}
15
16\begin{document}
17
18\title{\gsiii\ : A modular digital library.}
19
20% if you work on this manual, add your name here
21\author{Katherine Don, George Buchanan and Ian H. Witten \\[1ex]
22 Department of Computer Science \\
23 University of Waikato \\ Hamilton, New Zealand \\ }
24
25\date{}
26
27\maketitle
28
29\newenvironment{bulletedlist}%
30{\begin{list}{$\bullet$}{\setlength{\itemsep}{0pt}\setlength{\parsep}{0pt}}}%
31{\end{list}}
32
33\noindent
34Greenstone Digital Library Version 3 is a complete redesign and
35reimplementation of the \gs\ digital library software. The current
36version (\gsii) enjoys considerable success and is being widely used.
37\gsiii \ will capitalize on this success, and in addition it will
38\begin{bulletedlist}
39\item improve flexibility, modularity, and extensibility
40\item lower the bar for ``getting into'' the \gs\ code with a view to
41 understanding and extending it
42\item use XML where possible internally to improve the amount of
43 self-documentation
44\item make full use of existing XML-related standards and software
45\item provide improved internationalization, particularly in terms of sort order,
46 information browsing, etc.
47\item include new features that facilitate additional ``content management''
48 operations
49\item operate on a scale ranging from personal desktop to corporate library
50\item easily permit the incorporation of text mining operations
51\item use Java, to encourage multilinguality, X-compatibility, and to permit
52 easier inclusion of existing Java code (such as for text mining).
53\end{bulletedlist}
54Parts of \gs\ will remain in other languages (e.g. MG, MGPP); JNI (Java
55Native Interface) will be used to communicate with these.
56
57A description of the general design and architecture of \gsiii\ is covered by the document {\em The design of Greenstone3: An agent based dynamic digital library} (design-2002.ps, in the docs/manual directory).
58
59This documentation consists of several parts. Section~\ref{sec:install} is for administrators, and covers \gsiii\ installation, how to access the library, and some administration issues. Section~\ref{sec:user} is for users of the software, and looks at using the sample collections, creating new collections, and how to make small customizations to the interface. The remaining sections are aimed towards the \gs\ developer. Section~\ref{sec:develop-runtime} describes the run-time system, including the structure of the software, and the message format, while Section~\ref{sec:develop-build} describes the collection building process. Section~\ref{sec:new-features} describes how to add new features to \gs, such as how to add new services, new page types, new plugins for different document formats. Section~\ref{sec:distributed} describes how to make \gs\ run in a distributed fashion, using SOAP as an example communications protocol. Finally, there are several appendices, including how to install \gs\ from CVS, some notes on Tomcat and SOAP, and a comparison of \gsii\ and \gsiii\ format statements.
60\newpage
61\tableofcontents
62\newpage
63\section{\gs\ installation and administration}\label{sec:install}
64
65This section covers where to get \gsiii\ from, how to install it and how to run it. The standard method of running \gsiii\ is as a Java servlet. We provide the Tomcat servlet container to run the servlet. Standard web servers may be able to be configured to provide servlet support, and thereby remove the need to use Tomcat. Please see your web server documentation for this. This documentation assumes that you are using Tomcat. To access \gsiii, Tomcat must be started up, and then it can be accessed via a web browser.
66
67Ant (Java's XML based build tool) is used for compilation, installation and running Greenstone. The build.xml file is the configuration file for the Greenstone project, and build.properties contains parameters that can be altered by the user.
68
69\subsection{Get and install \gs\ }
70
71\gsiii\ is available for download from Sourceforge:\\
72 \gst{https://sourceforge.net/projects/greenstone3}. There are Windows, Linux and Mac OS X releases. They consist of a ZIP/TAR file which should be unpacked. Please check and edit (if necessary) the installation properties in build.properties, then run 'ant install' in the greenstone3 directory. Please read the file README.txt for more detailed (and up to date) instructions.
73
74Greenstone 3 can be started by running 'ant start', and will be available at \gst{http://localhost:8080/greenstone3}\\
75(or \gst{http://your-computer-name:your-chosen-port/greenstone3}). \\
76This gets you to a welcome page containing links to four servlets: the \gst{test} servlet (this allows you to check that Tomcat is running properly); the standard \gst{library} servlet which serves \gst{localsite} site with the \gst{default} interface; the \gst{classic} servlet which serves \gst{localsite} using the \gst{classic} or \gsii-style interface; the \gst{gateway} servlet, which serves \gst{gateway} site with the \gst{default} interface. The \gst{gateway} site uses a SOAP connection to communicate with \gst{localsite}, and demonstrates the library working in a distributed fashion.
77
78\gsiii\ is also available through CVS (Concurrent Versioning System). This provides the latest development version, and is not guaranteed to be stable. Appendix~\ref{app:cvs} describes how to download and install \gsiii\ from CVS.
79
80\subsection{How the library works}
81
82The standard library program is a Java servlet. We use the Tomcat servlet container to present the servlets over the web. Tomcat takes CGI-style URLs and passes the arguments to the servlet, which processes these and returns a page of HTML. As far as an end-user is concerned, a servlet is a Java version of a CGI program. The interaction is similar: access is via a web browser, using arguments in a URL.
83
84Other types of interfaces can be used, such as Java GUI programs. See Section~\ref{sec:new-interfaces} for details about how to make these.
85
86\subsubsection{Restarting the library}
87
88The library program (actually Tomcat and MYSQL) can be restarted by running \gst{ant restart} in the greenstone3 directory.
89
90Tomcat must be restarted any time you make changes in the following for those changes to take effect:\\
91\begin{bulletedlist}
92\begin{gsc}
93\item \gsdlhome/web/WEB-INF/web.xml
94\item \gsdlhome/packages/tomcat/conf/server.xml
95\end{gsc}
96\item any classes or jar files used by the servlets
97\end{bulletedlist}
98\noindent Note: stdout and stderr for the servlets (on Linux and Mac OS X) both go to\\
99\gst{\gsdlhome/packages/tomcat/logs/catalina.out}
100
101
102\subsection{Directory structure}
103
104Table~\ref{tab:dirs} shows the file hierarchy for \gsiii\ .
105The first part shows the common stuff which can be shared between
106\gs\ users---the source, libraries etc. The second part shows the file hierarchy for the greenstone3/web directory, which comprises the greenstone3 context for Tomcat, and is accessible via Tomcat. The main directories are for sites and interfaces: there can be several sites and interfaces per installation, and they are described in the following section.
107
108
109\begin{table}
110\caption{The \gs\ directory structure}
111\label{tab:dirs}
112{\footnotesize
113\begin{tabular}{l p{8cm}}
114\hline
115\bf directory & \bf description \\
116\hline
117greenstone3
118 & The main installation directory---gsdl3home can be changed to something more standard\\
119greenstone3/src
120 & Source code lives here \\
121greenstone3/src/java/
122 & main greenstone 3 java source code \\
123greenstone3/src/packages
124 & Imported source packages from other systems e.g. MG, MGPP \\
125greenstone3/extensions
126 & Extensions to greenstone 3 core functionality, e.g., Vishnu visualizer, Alerting service \\
127greenstone3/lib
128 & Shared library files\\
129greenstone3/lib/java
130 & Java jar files not needed in the greenstone 3 runtime\\
131greenstone3/lib/jni
132 & Jar files and shared library files (.so, .jnilib, .dll) needed for JNI components \\
133greenstone3/resources
134 & any resources that may be needed\\
135greenstone3/resources/soap
136 & soap service description files \\
137greenstone3/bin
138 & executable stuff lives here\\
139greenstone3/bin/script
140 & some Perl and/or shell building scripts\\
141greenstone3/packages
142 & External packages that may be installed as part of greenstone, e.g. Tomcat, MySQL \\
143greenstone3/docs
144 & Documentation\\
145\hline
146greenstone3/web
147 & This is where the web site is defined. Any static HTML files can go here. This directory is the Tomcat root directory.\\
148greenstone3/web/WEB-INF
149 & The web.xml file lives here (servlet configuration information for Tomcat)\\
150greenstone3/web/WEB-INF/classes
151 & Individual class files needed by the servlet go in here, also properties files for java resource bundles - used to handle all the language specific text. This directory is on the servlet classpath\\
152greenstone3/web/WEB-INF/lib
153 & jar files needed by the servlets go here \\
154greenstone3/web/sites
155 & Contains directories for different sites---a site is a set of collections and services served by a single MessageRouter (MR). The MR may have connections (e.g. soap) to other sites\\
156greenstone3/web/sites/localsite
157 & An example site - the site configuration file lives here\\
158greenstone3/web/sites/localsite/collect
159 & The collections directory \\
160greenstone3/web/sites/localsite/images
161 & Site specific images \\
162greenstone3/web/sites/localsite/transforms
163 & Site specific transforms \\
164greenstone3/web/interfaces
165 & Contains directories for different interfaces - an interface is defined by its images and XSLT files \\
166greenstone3/web/interfaces/default
167 & The default interface\\
168greenstone3/web/interfaces/default/images
169 & The images for the default interface\\
170greenstone3/web/interfaces/default/transforms
171 & The XSLT files for the default interface\\
172greenstone3/web/applet
173 & jar files needed by applets can go here \\
174\hline
175\end{tabular}}
176\end{table}
177
178
179\subsection{Sites and interfaces}\label{sec:sites-and-ints}
180
181[local gs stuff (sites and interfaces) vs installed stuff (code)\\
182where they live, whats the difference, what each contains.]\\
183Sites and interfaces contain the content and presentation information, respectively, for the digital library.
184A site is comprised of a set of collections and possibly some site-wide services. An interface (in this web-based servlet context) is a set of images along with a set of XSLT files used for translating xml output from the library into an appropriate form---HTML in general.
185
186One \gsiii\ installation can have many sites and interfaces, and these can be paired in different combinations. One instantiation of a servlet uses one site and one interface, so every specified pairing results in a new servlet instance. For example, a single site might be served with two different interfaces. This provides different modes of access to the same content. e.g. HTML vs WML, or perhaps providing a completely different look and feel for different audiences. Alternatively, a standard interface may be used with many different sites---providing a consistent mode of access to a lot of different content.
187
188Collections live in the \gst{collect} directory of a site. Any collections that are found in this directory when the servlet is initialized will be loaded up and presented to the user. Collections require valid configuration files, but apart from this, nothing needs to be done to the site to use new collections. Collections added while Tomcat is running will not be noticed automatically. Either the server needs to be restarted, or a configuration request may be sent to the library, triggering a (re)load of the collection (this is described in Section~\ref{sec:runtime-config}).
189
190There are two sites that come with the distribution: \gst{localsite}, and \gst{gateway}. \gst{localsite} has several demo collections, while \gst{gateway} has none. \gst{gateway} specifies that a SOAP connection should be made to \gst{localsite}. Getting this to work involves setting up a soap server for localsite: see Section~\ref{sec:distributed} for details.
191There are also two interfaces provided in the distribution: \gst{default} and \gst{classic}. The default interface is a generic \gsiii\ interface, while the \gst{classic} interface aims to look like the old \gsii\ interface.
192
193Each site and interface has a configuration file which specifies parameters for the site or interface---these are described in Section~\ref{sec:config}.
194
195\subsection{Configuring Tomcat}\label{sec:tomcat-config}
196
197The file \gst{\gsdlhome/web/WEB-INF/web.xml} contains the configuration information for Tomcat. It tells Tomcat what servlets to load, what initial parameters to pass them, and what web names map to the servlets.
198There are four servlets specified in web.xml (these correspond to the four servlet links in the welcome page for \gsiii): one is a test servlet that just prints ``hello greenstone'' to a web page. This is useful if you are having trouble getting Tomcat set up. The other three are the \gs\ library servlets described in Section~\ref{sec:browser-access}, \gst{library}, \gst{classic} and \gst{gateway}. Each servlet must specify which site and which interface to use. Having multiple servlets provides a way of serving different sites, or the same site with a different style of presentation. Site\_name and interface\_name are just two examples of initialization parameters used by the library servlets. The full list is shown in Table~\ref{tab:serv-init}.
199
200For more details about Tomcat see Appendix~\ref{app:tomcat}.
201
202\begin{table}
203\caption{\gs\ servlet initialization parameters}
204\label{tab:serv-init}
205{\footnotesize
206\begin{tabular}{llp{5cm}}
207\hline
208\bf name & \bf sample value & \bf description \\
209\hline
210library\_name & library & the web name of the servlet \\
211interface\_name & default & the name of the interface to use\\
212site\_name & localsite & the name of the site to use (use either site\_name or the three remote\_site parameters)\\
213remote\_site\_name & org.greenstone.site1 & the name of a remote site (can be anything??) \\
214remote\_site\_type & soap & the type of server running on the site \\
215remote\_site\_address & http://www.greenstone.org/greenstone3/services/localsite & The address of the server \\
216default\_lang & en & the default language for the interface\\
217receptionist\_class & NZDLReceptionist & (optional) specifies an alternative Receptionist to use\\
218messagerouter\_class & NewMessageRouter & (optional) specifies an alternative MessageRouter to use\\
219params\_class & NZDLParams & (optional) specifies an alternative GSParams class to use \\
220\hline
221\end{tabular}}
222\end{table}
223
224\subsection{Configuring a \gs\ library}\label{sec:config}
225
226Initial \gsiii\ system configuration is determined by a set of configuration files, all expressed in XML. Each site has a configuration file that binds parameters for the site, \gst{siteConfig.xml}. Each interface has a configuration file, \gst{interfaceConfig.xml}, that specifies Actions for the interface. Collections also have several configuration files; these are discussed in Section~\ref{sec:collconfig}.
227The configuration files are read in when the system is initialized, and their contents are cached in memory. This means that changes made to these files once the system is running will not take immediate effect. Tomcat needs to be restarted for changes to the interface configuration file to take effect. However, changes to the site configuration file can be incorporated sending a system command to the library. There are a series of system commands that can be sent to the library to induce reconfiguration of different modules, including reloading the whole site. This removes the need to restart the system to reflect these changes. These commands are described in Section~\ref{sec:runtime-config}.
228
229\subsubsection{Site configuration file}\label{sec:siteconfig}
230
231The file \gst{siteConfig.xml} specifies the URI for the site (\gst{localSiteName}), the HTTP address for site resources (\gst{httpAddress}), any ServiceClusters that the site provides (for example, collection building), any ServiceRacks that do not belong to a cluster or collection, and a list of
232known external sites to connect to. Collections are not specified in the site
233configuration file, but are determined by the contents of the site's
234collections directory.
235
236The HTTP address is used for retrieving resources from a site outside the XML protocol. Because a site is HTTP accessible through Tomcat, any files (e.g. images) belonging to that site or to its collections can be specified in the HTML of a page by a URL. This avoids having to retrieve these files from a remote site via the XML protocol\footnote{Currently, sites live inside the Tomcat greenstone3 root context, and therefore all their content is accessible over HTTP via the Tomcat address. We need to see if parts can be restricted. Also, if we use a different protocol, then resources from remote sites may need to come through the XML. Also, if we are running locally without using Tomcat, we may want to get them via file:// rather than http://.}.
237
238Figure~\ref{fig:siteconfig} shows two example site configuration files. The first example is for a rudimentary site with no site-wide services,
239which does not connect to any external sites. The second example is for a site with one site-wide service cluster - a collection building cluster. It also connects to the first site using SOAP.
240These two sites happen to be running on the same machine, which is why they can use \gst{localhost} in the address. For site \gst{gsdl1} to talk to site \gst{localsite}, a SOAP server must be run for \gst{localsite}. The address of the SOAP server, in this case, is \gst{http://localhost:8080/greenstone3/services/localsite}.
241
242
243\begin{figure}
244\begin{gsc}\begin{verbatim}
245<siteConfig>
246 <localSiteName value="org.greenstone.localsite"/>
247 <httpAddress value="http://localhost:8080/greenstone3/sites/localsite"/>
248 <serviceClusterList/>
249 <serviceRackList/>
250 <siteList/>
251</siteConfig>
252\end{verbatim}\end{gsc}
253
254\begin{gsc}\begin{verbatim}
255<siteConfig>
256 <localSiteName value="org.greenstone.gsdl1"/>
257 <httpAddress value="http://localhost:8080/greenstone3/sites/gsdl1"/>
258 <serviceClusterList>
259 <serviceCluster name="build">
260 <metadataList>
261 <metadata name="Title">Collection builder</metadata>
262 <metadata name="Description">Builds collections in a
263 gsdl2-style manner</metadata>
264 </metadataList>
265 <serviceRackList>
266 <serviceRack name="GS2Construct"/>
267 </serviceRackList>
268 </serviceCluster>
269 </serviceClusterList>
270 <siteList>
271 <site name="org.greenstone.localsite"
272 address="http://localhost:8080/greenstone3/services/localsite"
273 type="soap"/>
274 </siteList>
275</siteConfig>
276\end{verbatim}\end{gsc}
277\caption{Two sample site configuration files}
278\label{fig:siteconfig}
279\end{figure}
280
281\subsubsection{Interface configuration file}\label{sec:interfaceconfig}
282
283The interface configuration file \gst{interfaceConfig.xml} lists all the actions that the interface knows about at the start (other ones can be loaded dynamically). Actions create the web pages for the library: there is generally one Action per type of page. For example, a query action produces the pages for searching, while a document action displays the documents. The configuration file specifies what short name each action maps to (this is used in library URLs for the a (action) parameter) e.g. QueryAction should use a=q. If the interface uses XSLT, it specifies what XSLT file should be used for each action and possibly each subaction. This makes it easy for developers to implement and use different actions and/or XSLT files without recompilation. The server must be restarted, however.
284
285It also lists all the languages that the interface text files have been translated into. These have a \gst{name} attribute, which is the ISO code for the language, and a \gst{displayElement} which gives the language name in that language (note that this file should be encoded in UTF-8). This language list is used on the Preferences page to allow the user to change the interface language. Details on how to add a new language to a \gsiii\ library are shown in Section~\ref{sec:interface-customise}.
286
287\begin{figure}
288\begin{gsc}\begin{verbatim}
289<interfaceConfig>
290 <actionList>
291 <action name='p' class='PageAction'>
292 <subaction name='home' xslt='home.xsl'/>
293 <subaction name='about' xslt='about.xsl'/>
294 <subaction name='help' xslt='help.xsl'/>
295 <subaction name='pref' xslt='pref.xsl'/>
296 </action>
297 <action name='q' class='QueryAction' xslt='basicquery.xsl'/>
298 <action name='b' class='GS2BrowseAction' xslt='classifier.xsl'/>
299 <action name='a' class='AppletAction' xslt='applet.xsl'/>
300 <action name='d' class='DocumentAction' xslt='document.xsl'/>
301 <action name='xd' class='XMLDocumentAction'>
302 <subaction name='toc' xslt='document-toc.xsl'/>
303 <subaction name='text' xslt='document-content.xsl'/>
304 </action>
305 <action name='pr' class='ProcessAction' xslt='process.xsl'/>
306 <action name='s' class='SystemAction' xslt='system.xsl'/>
307 </actionList>
308 <languageList>
309 <language name="en">
310 <displayItem name='name'>English</displayItem>
311 </language>
312 <language name="fr">
313 <displayItem name='name'>Français</displayItem>
314 </language>
315 <language name='es'>
316 <displayItem name='name'>Español</displayItem>
317 </language>
318 </languageList>
319</interfaceConfig>
320\end{verbatim}\end{gsc}
321\caption{Default interface configuration file}
322\label{fig:ifaceconfig}
323\end{figure}
324
325
326\subsection{Run-time re-initialization}\label{sec:runtime-config}
327
328When Tomcat is started up, the site and interface configuration files are read in, and actions/services/collections loaded as necessary. The configuration is then static unless Tomcat is restarted, or re-configuration commands issued.
329
330There are several commands that can be issued to Tomcat to avoid having to restart the server. These can reload the entire site, or just individual collections. Unfortunately at present there are no commands to reconfigure the interface, so if the interface configuration file has changed, Tomcat must be restarted for those changes to take effect. Similarly, if the Java classes are modified, Tomcat must be restarted then too.
331
332Currently, the runtime configuration commands can only be accessed by typing arguments into the URL; there is no nice web form yet to do this.
333
334The arguments are entered after the \gst{library?} part of the URL. There are three types of commands: configure, activate, deactivate\footnote{There is no security for these commands yet in \gs, so the deactivate/delete command is disabled}. These are specified by \gst{a=s\&sa=c}, \gst{a=s\&sa=a}, and \gst{a=s\&sa=d}, respectively (\gst{a} is action, \gst{sa} is subaction). By default, the requests are sent to the MessageRouter, but they can be sent to a collection/cluster by the addition of \gst{sc=xxx}, where \gst{xxx} is the name of the collection or cluster. Table~\ref{tab:run-time config} describes the commands and arguments in a bit more detail.
335
336\begin{table}
337\caption{Example run-time configuration arguments.}
338\label{tab:run-time config}
339{\footnotesize
340\begin{tabular}{lp{8cm}}
341\hline
342\gst{a=s\&sa=c} & reconfigures the whole site. Reads in siteConfig.xml, reloads all the collections. Just part of this can be specified with another argument \gst{ss} (system subset). The valid values are \gst{collectionList}, \gst{siteList}, \gst{serviceList}, \gst{clusterList}. \\
343\gst{a=s\&sa=c\&sc=XXX} & reconfigures the XXX collection or cluster. \gst{ss} can also be used here, valid values are \gst{metadataList} and \gst{serviceList}. \\
344\gst{a=s\&sa=a} & (re)activate a specific module. Modules are specified using two arguments, \gst{st} (system module type) and \gst{sn} (system module name). Valid types are \gst{collection}, \gst{cluster} \gst{site}.\\
345\gst{a=s\&sa=d} & deactivate a module. \gst{st} and \gst{sn} can be used here too. Valid types are \gst{collection}, \gst{cluster}, \gst{site}, \gst{service}. Modules are removed from the current configuration, but will reappear if Tomcat is restarted.\\
346\gst{a=s\&sa=d\&sc=XXX} & deactivate a module belonging to the XXX collection or cluster. \gst{st} and \gst{sn} can be used here too. Valid types are \gst{service}. \\
347\hline
348\end{tabular}}
349\end{table}
350\newpage
351\section{Using \gsiii\ }\label{sec:user}
352
353Once \gsiii\ is installed, the sample collections can be accessed. The installation comes with several example collections, and Section~\ref{sec:usecolls} describes these collections and how to use them. Section~\ref{sec:buildcol} describes how to build new collections.
354
355\subsection{Using a collection}\label{sec:usecolls}
356
357A collection typically consists of a set of documents, which could be text, HTML, word, PDF, images, bibliographic records etc, along with some access methods, or ``services''. Typical access methods include searching or browsing for document identifiers, and retrieval of content or metadata for those identifiers.
358Searching involves entering words or phrases and getting back lists of documents that contain those words. The search terms may be restricted to particular fields of the document.
359
360Browsing involves navigating pre-defined hierarchies of documents, following links of interest to find documents. The hierarchies may be constructed on different metadata fields, for example, alphabetical lists of Titles, or a hierarchy of Subject classifications. Clicking on a bookshelf icon takes you to a lower level in the hierarchy, while clicking on a book or page icon takes you to a document.
361
362In the standard interface that comes with \gsiii\ \footnote{of course, this is all customizable}, collections in a digital library are presented in the following manner. The 'home' page of the library shows a list of all the public collections in that library. Clicking on a collection link takes you to the home page for the collection, which we call the collection's 'about' page. The standard page banner looks something like that shown in Figure~\ref{fig:page-banner}.
363
364\begin{figure}[h]
365 \centering
366 \includegraphics[width=4in]{pagebanner.ps} %5.8
367 \caption{A sample collection page banner}
368 \label{fig:page-banner}
369\end{figure}
370
371The image at the top left is a link to the collection's home page. The top right has buttons to link to the library home page, help and preferences pages. All the available services are arrayed along a navigation bar, along the bottom of the banner. Clicking on a name accesses that service.
372
373Search type services generally provide a form to fill in, with parameters including what field or granularity to search, and the query itself. Clicking the search button carries out the search, and a list of matching documents will be displayed. Clicking on the icons in the result list takes you to the document itself.
374
375Once you are looking at a document, clicking the open book icon at the top of the document, underneath the navigation bar, will take you back to the service page that you accessed the document from.
376
377\subsection{Building a collection}\label{sec:buildcol}
378
379There are three ways to get a new collection into \gsiii. The first is to build it using the \gsiii\ command line building process. The second way is to use the Greenstone Librarian Interface to build a new collection. This creates a collection in a \gsiii\ context, but uses the \gsii\ Perl collection building process. The third way is to import a pre-built \gsii\ collection.
380
381Collections live in the collect directory of a site. As described in Section~\ref{sec:sites-and-ints}, there can be several sites per \gsiii\ installation. The collect directory is at \gst{\$GSDL3HOME/web/sites/site-name/collect}, where site-name is the name of the site you want your new collection to belong to.
382
383The following three sections describe how to create a collection from scratch, using command line and GLI building, and how to import a \gsii\ collection. Once a collection has been built (and is located in the collect directory), the library server needs to be notified that there is a new collection. This can be accomplished in two ways\footnote{and eventually there will also probably be automatic polling for new collections}. If you are the library administrator, you can restart Tomcat. The library servlet will then be created afresh, and will discover the new collection when it scans the collect directory for the collection list. Alternatively, an activate collection command can be issued to the servlet, using the arguments \gst{a=s\&sa=a\&st=collection\&sn=collname}, where \gst{collname} should be replaced with the collection name---this tells the library program to (re)load the \gst{collname} collection.
384
385
386\subsubsection{Creating a collection from scratch}
387
388To create the director
389Building native \gsiii\ collections is done using the \gst{gs3-build.sh/bat} script, with the \gst{collectionConfig.xml} file controlling how the building is done. There are a number of considerations in building a collection: what documents appear in the collection, how they are indexed for searching, which classifications are used for browsing, etc.
390
391Firstly, the documents that comprise the collection should be placed in the import subdirectory. At present, only documents in this directory will appear in the collection. Documents can be organized into sub folders inside the import directory.
392[TODO: describe the kinds of documents that can be added, something about METS files?]
393
394Metadata for documents can be added using metadata.xml files. These files have already been used in \gsii, and the format is the same in \gsiii. A metadata.xml file has a root element of \gst{<DirectoryMetadata>}. This encloses a series of \gst{<FileSet>} items. Neither of these tags has any attributes. Each \gst{<FileSet>} item includes two parts: firstly, one or more \gst{<FileName>} tags, each of which encloses a regular expression to identify the files which are to be assigned the metadata. Only files in the same directory as the metadata.xml, or in one of its child directories, will be selected. The filename tag encloses the regular expression as text, e.g.:
395
396\begin{gsc}\begin{verbatim}
397<FileName>example</FileName>
398\end{verbatim}\end{gsc}
399
400This would match any file containing the text 'example' in its name. The second part of the \gst{<FileSet>} item is a \gst{<Description>} item. The \gst{<Description>} tag has no attributes, but encloses one or more \gst{<Metadata>} tags. Each \gst{<Metadata>} tag contains one metadata item, i.e. a label to describe the metadata and a corresponding value. The \gst{<Metadata>} tag has one compulsory attribute: ``name''. This attribute gives the metadata label to add to the document. Each \gst{<Metadata>} tag also has an optional attribute: ``mode''. If this attribute is set to ``accumulate'' then the value is added to the document, and any existing values for that metadata item are retained. If the attribute is set to ``set'' or is omitted, then any existing value of the metadata item will be deleted.
401
402\begin{figure}
403\begin{gsc}\begin{verbatim}
404<?xml version="1.0" encoding="UTF-8"?>
405<!DOCTYPE DirectoryMetadata SYSTEM "http://greenstone.org/dtd/DirectoryMetadata
406 /1.0/DirectoryMetadata.dtd">
407<DirectoryMetadata>
408 <FileSet>
409 <FileName>ec160e</FileName>
410 <Description>
411 <Metadata name="Title">The Courier - No.160 - Nov - Dec 1996 -
412 Dossier Habitat - Country reports: Fiji , Tonga (ec160e)</Metadata>
413 <Metadata mode="accumulate" name="Language">English</Metadata>
414 <Metadata mode="accumulate" name="Subject">Settlements and housing:
415 general works incl. low- cost housing, planning techniques, surveying,
416 etc.</Metadata>
417 <Metadata mode="accumulate" name="Subject">The Courier ACP 1990 - 1996
418 Africa-Caribbean-Pacific - European Union</Metadata>
419 <Metadata mode="accumulate" name="Organization">EC Courier</Metadata>
420 <Metadata mode="accumulate" name="AZList">T.1</Metadata>
421 </Description>
422 </FileSet>
423 <FileSet>
424 <FileName>b22bue</FileName>
425 <Description>
426 <Metadata name="Title">Butterfly Farming in Papua New Guinea
427 (b22bue)</Metadata>
428 <Metadata mode="accumulate" name="Language">English</Metadata>
429 <Metadata mode="accumulate" name="Subject">Other animals (micro-
430 livestock, little known animals, silkworms, reptiles, frogs,
431 snails, game, etc.)</Metadata>
432 <Metadata mode="accumulate" name="Organization">BOSTID</Metadata>
433 <Metadata mode="accumulate" name="AZList">T.1</Metadata>
434 <Metadata mode="accumulate" name="Keyword">start a butterfly farm
435 </Metadata>
436 </Description>
437 </FileSet>
438</DirectoryMetadata>
439\end{verbatim}\end{gsc}
440\caption{Sample metadata.xml file}
441\label{fig:metadatafile}
442\end{figure}
443
444Figure~\ref{fig:metadatafile} shows an example metadata.xml file.
445Here, only one file pattern is found in each file set. However, the \gst{Description} tag contains a number of separate metadata items. Note that the \gst{Title} metadata does not have the \gst{mode=accumulate} attribute. This means that when the title is assigned to a document, its existing \gst{Title} information will be lost.
446
447The basic means of finding documents in \gs\ is search. Options for building the search indexes include which indexer to use, what granularity to use for the indexes (e.g. whether to index documents as a whole, or sections of documents), what content the index should have (the whole text of the document or one or many metadata fields). Section-level indexes allow a reader to recall part of a document (for instance, a chapter) rather than the entire document. However, \gsiii\ must be able to identify the internal structure of the document to achieve this. The degree to which structure can be found varies from file format to file format.
448
449An alternative means of finding documents is through browsing. Greenstone can create pre-defined browsing hierarchies based on document metadata. Each browsing structure is called a classifier. Options for building classifiers include what type of classifier to use (linear list or multi-level hierarchy), what metadata to build the classifier on, e.g. Title, Author etc.
450
451The collectionConfig.xml file controls the all of these options for collection building, and the format is described in Section~\ref{sec:collconfig}.
452
453To build a collection, place the source documents and optional metadata.xml file(s) in the import directory, place the \gst{collectionConfig.xml} file in the etc directory, and execute \gst{gs3build.sh/bat sitename collectionname}. The process will run, placing the new indexes in the \gst{building} subdirectory of the collection's directory. You must have MySQL running before you start building---running \gst{ant start} will start up the MySQL server as well as tomcat.
454
455Once the build process is complete, the building directory should be renamed to index (after deleting or renaming the existing index directory, if any), and Tomcat prompted to reload the collection---either by restarting the server, or by sending an activate collection command to the library servlet.
456
457\subsubsection{Using the Librarian Interface}
458
459The Greenstone Librarian Interface (GLI) can be used to create \gsii\ style collections for \gsiii. It can be started under Windows by selecting Greenstone Librarian Interface from the Greenstone 3 Digital Library menu in the Program Files section of the Start menu. On Linux, run \gst{./gli4gs3.sh} from the \gst{greenstone3/gli} directory.
460
461Currently, the GLI works almost exactly the same as for \gsii\footnote{Eventually the GLI will be modified to use native \gsiii\ configuration files and collection building}. Collection configuration is done in a \gsii\ manner. The main difference is that \gsiii\ has different sites and interfaces and servlets, whereas \gsii\ has a single collect directory, and a single runtime cgi program.
462
463The GLI for \gsiii\ has a couple of new configuration parameters: site and servlet. It operates within a single site---you can edit, delete, create new collections within this site. A servlet is also specified for that site---this is used when previewing a collection. While you are working in one site, you cannot edit collections from another site. However, you can base a collection on one from another site. To change the working site and/or servlet, go to Preferences-$>$Connection in the File menu. By default, the GLI will use site \gst{localsite}, and servlet \gst{library}.
464
465Collection building using the GLI will use the \gsii\ Perl scripts and plugins. At the conclusion of the \gsii\ build process, a conversion script will be run to create the \gsiii\ configuration files. This means that format statements are no longer 'live'---changing these will require changes to the \gsiii\ configuration files. You can either rebuild the collection through the GLI (may take a while), or run the conversion script directly (see following section).
466
467Detailed instructions about using the GLI can be found in Sections 3.1 and 3.2 of the Greenstone 2 User's Guide (\gst{GS2-User-en.pdf}. This can be found in your \gsii\ installation, or in the greenstone3/docs/manual directory if you have installed \gsiii\ from a distribution.
468
469
470\subsubsection{Importing a \gsii\ collection}
471
472
473Pre-built \gsii\ collections can also be used in \gsiii\footnote{For information about the \gsii\ software, and how to build collections using it, visit \gst{www.greenstone.org}}. The collection folder should be copied to the collect directory of the site it is to appear in (or a symbolic link may be used if possible).
474The \gsiii\ run time system requires different configuration files for a collection, so you need to run a conversion script. All this does is create the new collectionConfig.xml and buildConfig.xml from the old collect.cfg and build.cfg files. It does not change the collection in any way, so it can still be used by \gsii\ software.
475
476The conversion script is \gst{convert\_coll\_from\_gs2.pl}. To run it, make sure you have run \gst{source setup.bash} (or \gst{setup} in Windows) in your top-level gsdl directory of the \gsii\ installation (as well as running the standard \gst{gs3-setup} command). Then you need to specify the path to the collect directory and the collection name as parameters to the conversion script. For example,
477
478\begin{gsc}
479\begin{verbatim}
480convert_coll_from_gs2.pl -collectdir
481 $GSDL3HOME/web/sites/localsite/collect demo
482\end{verbatim}
483\end{gsc}
484%$
485The script attempts to create \gsiii\ format statements from the old \gsii\ ones. The conversion may not always work properly, so if the collection looks a bit strange under \gsiii\ , you should check the format statements. Format statements are described in Section~\ref{sec:formatstmt}.
486
487Once again, to have the collection recognized by the library servlet, you can either restart Tomcat, or load it dynamically.
488
489\subsection{Collection configuration files}\label{sec:collconfig}
490
491Each collection has two, or possibly three, configuration files, \gst{collectionConfig.xml} and \gst{buildConfig.xml}, and optionally \gst{collectionInit.xml}, that give metadata, display and other information for the
492collection.\footnote{For collections imported from \gsii, \gst{collectionConfig.xml} and \gst{buildConfig.xml}are generated from \gst{collect.cfg} and \gst{build.cfg}.} The first includes user-defined presentation metadata for the collection,
493such as its name and the {\em About this collection} text; gives formatting information for the collection display; and also gives
494instructions on how the collection is to be built. The second is produced by
495the build-time process and includes any metadata that can be determined
496automatically. It also includes configuration information for any ServiceRacks needed by the collection.
497
498All the configuration files should be encoded using UTF-8.
499
500\subsubsection{collectionInit.xml}
501
502This optional file is only used for non-standard, customized collections. It specifies the class name of the non-standard collection class. The only syntax so far is the class name:
503
504\begin{gsc}\begin{verbatim}
505<collectionInit class="XMLCollection"/>
506\end{verbatim}\end{gsc}
507
508Section~\ref{sec:new-coll-types} describes an example collection where this file is used. Depending on the type of collection that this is used for, one or both of the other configuration files may not be needed.
509
510\subsubsection{collectionConfig.xml}
511
512The collection configuration file is where the collection designer (e.g. a librarian) decides what form the collection should take. This includes the collection metadata such as title and description, and also includes what indexes and browsing structures should be built. The format of \gst{collectionConfig.xml} is still under consideration. However, Figure~\ref{fig:collconfig} shows the parts of it that have been defined so far.
513
514Display elements for a collection or metadata for a document can be entered in any language---use lang='en' attributes to metadata elements to specify which language they are in.
515
516\begin{figure}
517\begin{gsc}\begin{verbatim}
518<collectionConfig xmlns:gsf="http://www.greenstone.org/greenstone3/
519 schema/ConfigFormat" xmlns:xslt="http://www.w3.org/1999/XSL/Transform">
520 <metadataList>
521 <metadata name="creator">[email protected]</metadata>
522 </metadataList>
523 <displayItemList>
524 <displayItem name='name' lang='en'>Greenstone3 MG demo collection</displayItem>
525 <displayItem name='description' lang='en'>This is a demonstration
526 collection for the Greenstone3 digital library software.</displayItem>
527 <displayItem name='icon' lang='en'>gs3mgdemo.gif</displayItem>
528 <displayItem name='smallicon' lang='en'>gs3mgdemo_sm.gif</displayItem>
529 </displayItemList>
530 <recognise>
531 <docType name="HTML"/><docType name="Text"/>
532 <docType name="Metadata"/><docType name="JPEG"/>
533 </recognise>
534 <search type="mg" name="mgsearch">
535 <index name="sectext">
536 <field>text</field>
537 <level>section</level>
538 <displayItem name='name' lang="en">chapters</displayItem>
539 <displayItem name='name' lang="fr">chapitres</displayItem>
540 <displayItem name='name' lang="es">capítulos</displayItem>
541 </index>
542 [ ... more indexes ...]
543 <format>
544 <gsf:template match="documentNode"><td valign='top'>
545 <gsf:link><gsf:icon/></gsf:link></td><td><gsf:metadata name='Title'/>
546 </td></gsf:template>
547 </format>
548 </search>
549 <browse>
550 <classifier name="CLTit" type="AZList" horizontalAtTop='true'>
551 <field>Title</field>
552 <sort>Title</sort>
553 <displayItem name='name' lang='en'>Titles</displayItem>
554 </classifier>
555 [... more classifiers ...]
556 <classifier name="CLKeyword" type="Hierarchy">
557 <field>Keyword</field>
558 <sort>Title</sort>
559 <displayItem name='name' lang='en'>HowTo</displayItem>
560 <file URL="keyword.xml"/>
561 <format>
562 <gsf:template match="documentNode">
563 <br /><gsf:link><gsf:metadata name='Keyword' />
564 </gsf:link></gsf:template>
565 </format>
566 </classifier>
567 </browse>
568 <display>
569 <format>
570 <gsf:option name="coverImages" value="false"/>
571 <!--<gsf:option name="documentTOC" value="false"/>-->
572 </format>
573 </display>
574</collectionConfig>
575\end{verbatim}\end{gsc}
576\caption{Sample collectionConfig.xml file (gs3mgdemo collection)}
577\label{fig:collconfig}
578\end{figure}
579
580The \gst{<metadataList>} element specifies some collection metadata, such as creator. The \gst{<displayItemList>} specifies some language dependent information that is used for collection display, such as collection name and short description. These displayItem elements can be specified in different languages.
581
582The \gst{<search>} element specifies what indexes should be built, and provides some display and formatting information for each one. Search has an attribute, \gst{type}, which specifies which indexer to be used for indexing. Currently, \gst{mg} and \gst{mgpp}[??] are available. If type is not specified, mg is used. Multiple search elements may be specified, if more than one indexer is to be used. (Note, this is not yet recognized by the run-time system.)
583
584Search indexes appear as individual \gst{<index>} elements within the \gst{<search>} element. Some choices for the index are made using attributes of the element itself, and some through child elements.
585
586Each index must have a unique name, which is used to identify it within \gsiii\ The name is given as an attribute of the \gst{<index>} element.
587
588The other choices are described using child elements of \gst{<index>}. The \gst{<level>} tag indicates the index level and the \gst{<field>} tag the text to be used. The \gst{<level>} tag can contain one of document, section or paragraph, while the \gst{<field>} tag can contain ``text'' or the name of a metadata field. If the \gst{<level>} tag is omitted, the default setting is to index by document, and if the \gst{<field>} tag is omitted, the default setting is to index the document text.
589
590Example index specifications include:
591
592[NOTE: I think we shouldn't have default level and field and that it must be specified--kjdon]
593
594To index only the title of each separate document in the collection:
595\begin{gsc}\begin{verbatim}
596<index name="dtt">
597 <level>document</level>
598 <field>dc:title</field>
599</index>
600\end{verbatim}\end{gsc}
601...in this case the \gst{<field>} tag refers to the ``title'' metadata item, found in the Dublin Core namespace. The MG search engine would be used on this index.
602
603Alternatively, to index the full document texts by section:
604\begin{gsc}\begin{verbatim}
605<index name="stx">
606 <level>section</level>
607</index>
608\end{verbatim}\end{gsc}
609...or...
610\begin{gsc}\begin{verbatim}
611<index name="stx">
612 <level>section</level>
613 <field>text</field>
614</index>
615\end{verbatim}\end{gsc}
616...in the first example, the \gst{<field>} tag is not explicitly defined, and would default to 'text', whereas it is explicitly set to 'text' in the second example. As they are of the same name, they should not appear in the same \gst{collectionConfig.xml} file.
617
618Moving onto \gst{<classifier>} items, the format is broadly similar to \gst{<index>} items, but with a couple of different choices. Firstly, each classifier should have ``name'' and ``type'' attributes. In the case of \gst{<classifier>} items the ``type'' attribute identifies the type of classifier it is. At present, this should either be ``Hierarchy'' or ``AZList''.
619
620The remaining choices for the classifier should follow as child elements of the \gst{<classifier>} element. The \gst{<file>} element should contain the name of the file that describes the classifier as its ``URL'' attribute. The format of this file varies from classifier type to classifier type. The \gst{<field>} element identifies the name of the field to index. More than one \gst{<field>} element may appear if two or more metadata fields are to be used with the classifier. Finally, the \gst{<sort>} item identifies another metadata field which the items within one classifier node are to be ordered. Unlike the \gst{<index>} element, the \gst{<classifier>} element does not have default, assumed values for its children.
621
622Figure~\ref{fig:hierarchyfile} shows the format of the file for a Hierarchy classifier. [TODO add a description]
623\begin{figure}
624\begin{gsc}\begin{verbatim}
625<Hierarchy>
626 <Classification>
627 <Name>ACCU</Name>
628 <Path>1</Path>
629 <Description>ACCU</Description>
630 </Classification>
631 <Classification>
632 <Name>Agenda 21</Name>
633 <Path>2</Path>
634 <Description>Agenda 21</Description>
635 </Classification>
636 <Classification>
637 <Name>FAO</Name>
638 <Path>3</Path>
639 <Description>FAO</Description>
640 <Children>
641 <Classification>
642 <Name>FAO Better Farming series</Name>
643 <Path>3.1</Path>
644 <Description>FAO Better Farming Series</Description>
645 </Classification>
646 </Children>
647 </Classification>
648</Hierarchy>
649\end{verbatim}\end{gsc}
650\caption{Sample Hierarchy classifier file}
651\label{fig:hierarchyfile}
652\end{figure}
653
654Inside the \gst{<search>} and \gst{<browse>} elements, \gst{<displayItem>} elements are used to provide titles for the indexes or classifiers, while \gst{<format>} elements provide formatting instructions, typically for a document or classifier node in a list of results. Placing the \gst{<format>} instructions at the top level in the search or browse element will apply the format to all the indexes or classifiers, while placing it inside an individual index or classifier element will restrict that formatting instruction to that item.
655
656The \gst{<display>} element contains optional formatting information for the display of documents. Templates that can be specified here include \gst{documentHeading}, \gst{DocumentContent}. Other formatting options may also be specified here, such as whether to display a table of contents and/or cover image for the documents.
657
658Format elements are described in Section~\ref{sec:formatstmt}.
659
660An optional \gst{<replaceList>} element can be included at the top level. This contains a list of strings and their replacements. This is particularly useful for Greenstone 2 collections that use macros.
661
662The format is like the following:
663\begin{gsc}\begin{verbatim}
664<replaceList>
665<replace scope='text' macro="xxx" text="yyy"/>
666<replace scope='metadata' macro="xxx" bundle="yyy" key="zzz"/>
667<replace scope='all' macro='xxx' metadata='yyy'/>
668</replaceList>
669\end{verbatim}\end{gsc}
670
671Scope determines on what text the replacements are carried out: text, metadata, or both (all). An empty scope attribute is equivalent to scope=all. Each replace type can be used with all scope values. Replacing uses Java's 'String.replaceAll' functionality, so macro and replacement text are actually regular expressions. The first example is a straight textual replacement. The second example uses dictionary lookups. xxx will be replaced with the (language-dependent) value for key zzz in resource bundle yyy. The third example uses metadata: xxx will be replaced by the value of the yyy metadata for that document.
672
673Appendix~\ref{app:gs2replace} gives some examples that have been used for Greenstone 2 collections.
674
675\subsubsection{buildConfig.xml}\label{sec:buildconfig}
676
677The file \gst{buildConfig.xml} is produced by the collection building process. Generally it is not necessary to look at this file, but it can be useful in determining what went wrong if the collection doesn't appear quite the way it was planned.
678
679It contains metadata and other information about the collection that can
680be determined automatically, such as the number of
681documents it contains. It also includes a list of ServiceRack classes that are
682required to provide the services that have been built into the
683collection. The serviceRack names are Java classes that are loaded
684dynamically at runtime. Any information inside the serviceRack element is
685specific to that service---there is no set format. Figure~\ref{fig:buildconfig} shows an example. This configuration file specifies that the collection should load up 3 ServiceRacks: \gst{GS2Browse}, \gst{GS2MGPPRetrieve} and \gst{GS2MGPPSearch}. The contents of each \gst{<serviceRack>} element are passed to the appropriate ServiceRack objects for configuration. The \gst{collectionConfig.xml} file content is also passed to the ServiceRack objects at configure time---the \gst{format} and \gst{displayItem} information is used directly from the \gst{collectionConfig.xml} file rather than added into \gst{buildConfig.xml} during building. This enables formatting and metadata changes in \gst{collectionConfig.xml} to take effect in the collection without rebuilding being necessary. However, as these files are cached, the collection needs to be reloaded for the changes to appear in the library.
686
687
688\begin{figure}
689\begin{gsc}\begin{verbatim}
690<buildConfig>
691 <metadataList>
692 <metadata name="numDocs">11</metadata>
693 <metadata name="buildType">mgpp</metadata>
694 </metadataList>
695 <serviceRackList>
696 <serviceRack name="GS2Browse">
697 <classifierList>
698 <classifier name="CL1" content="Title"/>
699 <classifier name="CL2" content="Subject" />
700 <classifier name="CL3" content="Organization" />
701 <classifier name="CL4" content="Howto" />
702 </classifierList>
703 </serviceRack>
704 <serviceRack name="GS2MGPPRetrieve">
705 <defaultLevel name="Sec" />
706 </serviceRack>
707 <serviceRack name="GS2MGPPSearch">
708 <defaultLevel name="Sec" />
709 <levelList>
710 <level name="Sec" />
711 <level name="Doc" />
712 </levelList>
713 <fieldList>
714 <field shortname="ZZ" name="allfields" />
715 <field shortname="TX" name="text" />
716 <field shortname="DL" name="dls.Title" />
717 <field shortname="DS" name="dls.Subject" />
718 <field shortname="DO" name="dls.Organization" />
719 </fieldList>
720 <searchTypeList>
721 <searchType name="form" />
722 <searchType name="plain" />
723 </searchTypeList>
724 <defaultIndex name="idx" />
725 <indexList>
726 <index name="idx" />
727 </indexList>
728 </serviceRack>
729 </serviceRackList>
730\end{verbatim}\end{gsc}
731\caption{Sample buildConfig.xml file (gs2mgppdemo collection)}
732\label{fig:buildconfig}
733\end{figure}
734
735\subsection{Formatting the collection}\label{sec:formatstmt}
736
737Part of collection design involves deciding how the collection should look. \gsiii\ has a default 'look' for a collection, so this is optional. However, the default may not suit the purposes of some collections, so many parts to the look of a collection can be determined by the collection designer.
738
739In standard \gsiii\ , the library is served to a web browser by a servlet, and the HTML is generated using XSLT. XSLT templates are used to format all the parts of the pages. These templates can be overridden by including them in the \gst{collectionConfig.xml} file. Some commonly overridden templates are those for formatting lists: search results list, classifier browsing hierarchies, and for parts of the document display.
740
741Real XSLT templates for formatting search results or classifier lists are quite complicated, and not at all easy for a new user to write. For example, the following is a sample template for formatting a classifier list, to show Keyword metadata as a link to the document.
742
743\begin{gsc}\begin{verbatim}
744<xsl:template match="documentNode" priority="2"
745 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
746 <xsl:param name="collName"/>
747 <td><a href="{\$library_name}?a=d&amp;c={\$collName}&amp;
748 d={@nodeID}&amp;dt={@docType}"><xsl:value-of
749 select="metadataList/metadata[@name='Keyword']"/></a>
750 </td>
751</xsl:template>
752 \end{verbatim}\end{gsc}
753
754To write this, the user would need to know that:
755\begin{bulletedlist}
756\item the variable \gst{\$library\_name} exists,
757\item the collection name is passed in as a parameter called \gst{collName}
758\item metadata for a document is found in a \gst{<metadataList>} and that its form is \gst{<metadata name="Keyword">the value</metadata>}
759\item the arguments needed for the link to the document are \gst{a, sa, c, d, a, dt}.
760\end{bulletedlist}
761
762Since XSLT is written in XML, we can use XSLT to transform XML into XSLT. \gsiii\ provides a simplified set of formatting commands, written in XML, which will be transformed into proper XSLT. The user specifies a \gst{<gsf:template>} for what they want to format---these typically match \gst{documentNode} or \gst{classifierNode} (for node in a classification hierarchy).
763
764The template at the start of this section can be represented as:
765
766\begin{gsc}\begin{verbatim}
767<gsf:template match='documentNode'>
768 <td><gsf:link><gsf:metadata name='Keyword'/></gsf:link></td>
769</gsf:template>
770\end{verbatim}\end{gsc}
771
772Table~\ref{tab:gsf-format} shows the set of 'gsf' (Greenstone Format) elements. If you have come from a \gsii\ background, Appendix~\ref{app:gs2format} shows \gsii\ format elements and their equivalents in \gsiii\ .
773
774\begin{table}
775\caption{Format elements for GSF format language}
776\label{tab:gsf-format}
777{\footnotesize
778\begin{tabular}{p{6.5cm}p{6.5cm}}
779\hline
780\bf Element & \bf Description \\
781\hline
782\gst{<gsf:text/>} & The document's text\\
783\hline
784\gst{<gsf:link>...</gsf:link>} & The HTML link to the document itself \\
785\gst{<gsf:link type='document'>...
786</gsf:link>} & Same as above\\
787\gst{<gsf:link type='classifier'>...
788</gsf:link>} & A link to a classification node (use in classifierNode templates)\\
789\gst{<gsf:link type='source'>...
790</gsf:link>} & The HTML link to the original file---set for documents that have been converted from e.g. Word, PDF, PS \\
791\hline
792\gst{<gsf:icon/>} & An appropriate icon\\
793\gst{<gsf:icon type='document'/>} & same as above\\
794\gst{<gsf:icon type='classifier'/>} & bookshelf icon for classification nodes\\
795\gst{<gsf:icon type='source'/>} & An appropriate icon for the original file e.g. Word, PDF icon\\
796\hline
797\gst{<gsf:metadata name='Title'/>} & The value of a metadata element for the current document or section, in this case, Title\\
798\gst{<gsf:metadata name='Title' select='select-type' [separator='y' multiple='true']/>} & A more extended selection of metadata values. The select field can be one of those shown in Table~\ref{tab:gsf-select-types}. There are two optional attributes: separator gives a String that will be used to separate the fields, default is ``, ``, and if multiple is set to true, looks for multiple values at each section.\\
799\gst{<gsf:metadata name='Date' format='formatDate'/>} & The value of a metadata element for the current document, formatted in some way. Current formatting options available are formatDate: turns '20040201' into '01 February 2004', and formatLanguage: turns 'en' into 'English', both in a language dependent manner. \\
800\hline
801\gst{<gsf:choose-metadata>
802 <gsf:metadata name='metaA'/>
803 <gsf:metadata name='metaB'/>
804 <gsf:metadata name='metaC'/>
805</gsf:choose-metadata>}
806 & A choice of metadata. Will select the first existing one. the metadata elements can have the select, separator and multiple attributes like normal.\\
807\hline
808\gst{<gsf:switch preprocess=
809'preprocess-type'>
810<gsf:metadata name='Title'/>
811<gsf:when test='test-type'
812test-value='xxx'>...</gsf:when>
813<gsf:when test='test-type'
814test-value='yyy'>...</gsf:when>
815<gsf:otherwise>...</gsf:otherwise>
816</gsf:switch>} & switch on the value of a particular metadata - the metadata is specified in gsf:metadata, has the same attributes as normal.\\
817\hline
818\end{tabular}}
819\end{table}
820
821The \gst{<gsf:metadata>} elements are used to output metadata values. The simplest case is \gst{<gsf:metadata name='Title'/>}---this outputs the Title metadata for the current document or section. Namespaces are important here: if the Title metadata is in the Dublin Core (dc) namespace, then the element should look like \gst{<gsf:metadata name='dc.Title'/>}. There are three other attributes for this element. The attribute \gst{multiple} is used when there may be more than one value for the selected metadata.
822For instance, one document may fall into several classification categories, and therefore may have multiple Subject metadata values. Adding \gst{multiple='true'} to the \gst{<gsf:metadata>} element will retrieve all values, not just the first one. Multiple values are separated by commas by default. The \gst{separator} attribute is used to change the separating string. For example, adding \gst{separator=':~'} to the element will separate all values by a colon and a space.
823
824Sometimes you may want to display metadata values for sections other than the current one. For example, in the mgppdemo collection, in a search list we display the Titles of all the enclosing sections, followed by the Title of the current section, all separated by semi-colons. The display ends up looking something like:
825\emph{Farming snails 2; Starting out; Selecting your snails}
826where \emph{Selecting your snails} is the Title of the section in the results list, and \emph{Farming snails 2} and \emph{Starting out} are the Titles of the enclosing sections. The \gst{select} attribute is used to display metadata for sections other than the current one. Table~\ref{tab:gsf-select-types} shows the options available for this attribute. The \gst{separator} attribute is used here also, to specify the separating text.
827
828To get the previous metadata, the format statement would have the following in it:
829
830\begin{gsc}
831\begin{verbatim}
832<gsf:metadata name='Title' select='ancestors' separator='; '/>;
833 <gsf:metadata name='Title'/>
834\end{verbatim}
835\end{gsc}
836
837\begin{table}
838\caption{Select types for metadata format elements}
839\label{tab:gsf-select-types}
840{\footnotesize
841\begin{tabular}{ll}
842\hline
843\bf Select Type & \bf Description\\
844\hline
845current & The current section \\
846parent & The immediate parent section\\
847ancestors & All the parents back to the root (topmost) section\\
848root & The root or topmost section \\
849siblings & All the sibling sections\\
850children & The immediate child sections of the current section\\
851descendents & All the descendent sections\\
852\hline
853\end{tabular}}
854\end{table}
855
856The \gst{<gsf:choose-metadata} element selects the first available metadata value from the list of options.
857\begin{gsc}
858\begin{verbatim}
859<gsf:choose-metadata>
860 <gsf:metadata name='dc.Title'/>
861 <gsf:metadata name='dls.Title'/>
862 <gsf:metadata name='Title'/>
863</gsf:choose-metadata>
864\end{verbatim}
865\end{gsc}
866
867This will display the dls.Title metadata if available, otherwise it will use the dc.Title metadata if available, otherwise it will use the Title metadata. If there are no values for any of these metadata elements, then nothing will be displayed.
868
869The \gst{<gsf:switch>} element allows different formatting depending on the value of a specified metadata element. For example, the following switch statement could be used to display a different icon for each document in a list depending on which organization it came from.
870
871\begin{gsc}
872\begin{verbatim}
873<gsf:switch preprocess='toLower;stripSpace'>
874 <gsf:metadata name='Organization'/>
875 <gsf:when test='equals' test-value='bostid'>
876 <!-- output BOSTID image --></gsf:when>
877 <gsf:when test='equals' test-value='worldbank'>
878 <!-- output world bank image --></gsf:when>
879 <gsf:otherwise><!-- output default image--></gsf:otherwise>
880</gsf:switch>
881\end{verbatim}
882\end{gsc}
883
884Preprocessing of the metadata value is optional. The preprocess types are \gst{toLower} (make the value lowercase), \gst{toUpper} (make the value uppercase), \gst{stripSpace} (removes any whitespace from the value). These operations are carried out on the value of the selected metadata before the test is carried out. Multiple processing types can be specified, separated by ; and they will be applied in the order specified (from left to right).
885
886Each option specifies a test and a test value. Test values are just text. Tests include \gst{startsWith}, \gst{contains}, \gst{exists}, \gst{equals}, \gst{endsWith}. Exists doesn't need a test value. Having an otherwise option ensures that something will be displayed even when none of the tests match.
887
888If none of the gsf elements meets your needs for formatting, XSLT can be entered directly into the format element, giving the collection designer full flexibility over how the collection appears.
889
890The collection specific templates are added into the configuration file \gst{collectionConfig.xml}. Any templates found in the XSLT files can be overridden.
891The important part to adding templates into the configuration file is determining where to put them. Formatting templates cannot go just anywhere---there are standard places for them. Figure~\ref{fig:format-places} shows the positions that templates can occur.
892
893\begin{figure}
894\begin{gsc}\begin{verbatim}
895<collectionConfig>
896 <metadataList/>
897 <displayItemList/>
898 <search>
899 <format> <!--Put here templates related to searching and
900 the query page. The common one is the documentNode
901 template -->
902 <gsf:template match='documentNode'>...</gsf:template>
903 </format>
904 </search>
905 <browse>
906 <classifier name='xx'>
907 <format><!-- put here templates related to formating a
908 particular classifier page. Common ones are documentNode
909 and classifierNode templates-->
910 <gsf:template match='documentNode'>...</gsf:template>
911 <gsf:template match='classifierNode'>...</gsf:template>
912 <gsf:template match='classifierNode' mode='horizontal'>...
913 </gsf:template>
914 </format>
915 </classifier>
916 <classifier>...</classifier>
917 <format><!-- formatting for all the classifiers. these will
918 be overridden by any classifier specific formatting
919 instructions --></format>
920 </browse>
921 <display>
922 <format><!-- here goes any formatting relating to the display
923 of the documents. These are generally named templates,
924 and format options -->
925 <gsf:template name='documentContent'>...</gsf:template>
926 <gsf:option name='TOC' value='true'/>
927 </format>
928 </display>
929</collectionConfig>
930\end{verbatim}\end{gsc}
931\caption{Places for format statements}
932\label{fig:format-places}
933\end{figure}
934
935
936There are also formatting instructions that are not templates but are options.
937These are described in Table~\ref{tab:format_options}. They are entered into the configuration file like \gst{<gsf:option name='coverImages' value='false'/>}
938
939\begin{table}
940\caption{Formatting options}
941\label{tab:format_options}
942{\footnotesize
943\begin{tabular}{llp{5cm}}
944\hline
945\bf option name & \bf values & \bf description \\
946\hline
947coverImages & true, false & whether or not to display cover images for documents \\
948TOC & true, false & whether or not to display the table of contents for the document\\
949\hline
950\end{tabular}}
951\end{table}
952
953Note, format templates are added into the XSLT files before transforming, while the options are added into the page source, and used in tests in the XSLT.
954\subsubsection{Changing the service text strings}
955
956Each collection has a set of services which are the access points for the information in the collection. Each service has a set of text strings which are used to display it. These include name, description, the text on the submit button, and names and descriptions of all the parameters to the service.
957
958These text strings are found in .properties files, in greenstone3/resources/java. The names of the files are based on class names. Subclasses can defined their own properties, or can use their parent class ones. For example, AbstractSearch defines strings for the TextQuery service, in AbstractSearch.properties. GS2MGSearch just uses these default ones, so doesn't need its own property file.
959
960A particular collection can override the properties for any service. For example, if a collection uses the GS2MGSearch service rack (look in the buildConfig.xml file for a list of service racks used), and the collection builder wants to change the text associated with this service, they can put a GS2MGSearch.properties file in the resources directory of the collection.
961This will be used in preference to one in the default resources directory.
962Note that while changes in the default properties files seem to require a tomcat restart to take effect, changes in the collection specific properties files take effect immediately.
963
964\subsection{Customizing the interface}\label{sec:interface-customise}
965
966Format statements in the collection configuration files provide a way to change small parts of the collection display. For large scale customizations to a collection, or ones that apply to a site as a whole, a second mechanism is available. The interface is defined by a set of XSLT files that transform the page data into HTML. Any of these files can be overridden to provide specialized display, on a site or collection basis.
967
968The first section looks at customizing the existing interface, while the second section looks at defining a whole new interface. The last section describes how to add a new language translation of an interface.
969
970\subsubsection{Modifying an existing interface}
971
972Most of an interface is defined by XSLT files, which are stored in \gst{\$GSDL3HOME/\-web/\-interfaces/\-interface-name/\-transform}. These can be changed and the changes will take effect straight away. If changes only apply to certain collections or sites, not everything that uses the interface, you can override some of the files by putting new ones in a different place. XSLT files are looked for in the following order: collection, site, interface, default interface. (This currently only apples to sites, and therefore collections, that reside in the same \gs\ installation as the interface.)
973
974Sites and collections can have a transform directory, which is where customized XSLT files should go. Any XSLT files in here will be used in preference to the interface files when using this collection. For example, if you want to have a completely different layout for the about page of a collection, you can put a new \gst{about.xsl} file into the collection's \gst{transform} directory, and this will be used instead. This is what we do for the Gutenberg sample collection.
975
976This also applies to files that are included from other XSLT files. For example the query.xsl for the query pages includes a file called querytools.xsl. To have a particular site show a different query interface either of these files may need to be modified. Creating a new version of either of these and putting it in the site transform directory will work. Either the new query.xsl will include the default querytools, or the default query.xsl will include the new querytools.xsl. The xsl:include directives are preprocessed by the Java code and full paths added based on availability of the files, so that the correct one is used.
977
978Note that you cannot include a file with the same name as the including file. For example query.xsl cannot include query.xsl (it is tempting to want to do this if you just want to change one template for a particular file, and then include the default. but you cant).
979
980You can add the argument o=xml to any URL and you wil be returned the XML before transformation by a stylesheet. This shows you the XML page source. It can be useful when you are trying to write some new XSLT statements.
981
982\subsubsection{Defining a new interface}
983
984A new interface may be needed if different instantiations of the library require different interfaces, or different developers want their own look and feel. Creating a new interface will allow modifications to be made while leaving the original one intact.
985
986A new interface needs a directory in \gst{\$GSDL3HOME/web/interfaces}, the name of this directory becomes the interface name. Inside, it needs images and transform directories, and an interfaceConfig.xml file. Any XSLT may be overridden for a new interface by putting the replacement in the new transform directory. If the appropriate XSLT file is not there, the one from the default interface will be used - this enables just overriding a few XSLT files as needed.
987
988To use a new interface, the Tomcat web.xml must be edited: either change the interface that a current servlet instance is using, or add another servlet instantiation to the file (see Section~\ref{sec:sites-and-ints} or Appendix~\ref{app:tomcat}). The Tomcat server must be restarted for this to take effect.
989
990\subsubsection{Changing the interface language}
991
992The interface language can be changed by going to the preferences page, and choosing a language from the list, which includes all languages into which the interface has been translated.
993
994It is easy to add a new interface language to \gs\ . Language specific text strings are separated out from the rest of the system to allow for easy incorporation of new languages. These text strings are contained in Java resource bundle properties files. These are plain text files consisting of key-value pairs, located in \gst{resources/java}. Each interface has one named \gst{interface\_name.properties} (where `name' is the interface name). Each service class has one with the same name as the class (e.g. \gst{GS2Search.properties}). To add another language all of the base .properties files must be translated. The translated files keep the same names, but with a language extension added. For example, a French version of \gst{interface\_default.properties} would be named \gst{interface\_default\_fr.properties}.
995
996Keys will be looked up in the properties file closest to the specified language. For example, if language \gst{fr\_CA} was specified (French language, country Canada), and the default locale was \gst{en\_GB}, Java would look at properties files in the following order, until it found the key: \gst{XXX\_fr\_CA.properties}, \gst{XXX\_fr.properties}, \gst{XXX\_en\_GB.properties}, then \gst{XXX\_en.properties}, and finally the default \gst{XXX.properties}.
997
998These new files are available straight away---to use the new language, add e.g. \gst{l=fr} to the arguments in the URL. To get \gs\ to add it in to the list of languages on the preferences page, an entry needs to be added into the languages list in the \gst{interfaceConfig.xml} file (see Section~\ref{sec:interfaceconfig}). Modification of this file requires a restart of the Tomcat server for the changes to be recognized.
999
1000\newpage
1001\section{Developing \gsiii : Run-time system}\label{sec:develop-runtime}
1002
1003[TODO: rewrite this!!]
1004runtime object structure diagram. describe the modules.\\
1005class hierarchy,\\
1006directory structure and where everything lives\\
1007message format.\\
1008overall description of message passing sequence.\\
1009configuration process - start up and runtime\\
1010\\
1011page generation\\
1012accessing the javadoc\\
1013
1014\subsection{Overview of modules??}
1015
1016A \gsiii\ 'library' system consists of many components: MessageRouter, Receptionist, Actions, Collections, ServiceRacks etc. Figure~\ref{fig:local} shows how they fit together in a stand-alone system. The top left part is concerned with displaying the data, while the bottom right part is the collection data serving part. The two sides communicate through the MessageRouter. There is a one-to-one correspondence between modules and Java classes, with the exception of services: for coding and/or run-time efficiency reasons, several Service modules may be grouped together into one ServiceRack class.
1017
1018\begin{figure}[t]
1019 \centering
1020 \includegraphics[width=4in]{local} %5.8
1021 \caption{A simple stand-alone site.}
1022 \label{fig:local}
1023\end{figure}
1024
1025
1026{\em MessageRouter}: this is the central module for a site. It controls the site, loading up all the collections, clusters, communicators needed. All messages pass through the MessageRouter. Communication between remote sites is always done between MessageRouters, one for each site.
1027
1028{\em Collection and ServiceCluster}: these are very similar, and group a set of services into a conceptual group.. They both provide some metadata about the collection/cluster, and a list of services. The services are provided by ServiceRack objects that the collection/cluster loads up. A Collection is a specific type of ServiceCluster. A ServiceCluster groups services that are related conceptually, e.g. all the building services may be part of a cluster. What is part of a cluster is specified by the site configuration file. A Collection's services are grouped by the fact that they all operate on some common data---the documents in the collection.
1029Functionally Collection and ServiceCluster are very similar, but conceptually, and to the user, they are quite different.
1030
1031{\em Service}: these provide the core functionality of the system e.g. searching, retrieving documents, building collections etc. One or more may be grouped into a single Java class (ServiceRack) for code reuse, or to avoid instantiating the same objects several times. For example, MGPP searching services all need to have the index loaded into memory.
1032
1033{\em Communicator/Server}: these facilitate communication between remote modules. For example, if you want MR1 to talk to MR2, you need a Communicator-Server pair. The Server sits on top of MR2, and MR1 talks to the Communicator. Each communication type needs a new pair. So far we have only been using SOAP, so we have a SOAPCommunicator and a SOAPServer.
1034
1035{\em Receptionist}: this is the point of contact for the 'front end'. Its core functionality involves routing requests to the Actions, but it may do more than that. For example, a Receptionist may: modify the request in some way before sending it to the appropriate Action; add some data to the page responses that is common to all pages; transform the response into another form using XSLT. There is a hierarchy of different Receptionist types, which is described in Section~\ref{sec:recepts}.
1036
1037{\em Actions}: these do the job of creating the 'pages'. There is a different action for each type of page, for example PageAction handles semi-static pages, QueryAction handles queries, DocumentAction displays documents. They know a little bit about specific service types. Based on the 'CGI' arguments passed in to them, they construct requests for the system, and put together the responses into data for the page. This data is returned to the Receptionist, which may transform it to HTML. The various actions are described in more detail in Section~\ref{sec:pagegen}.
1038
1039
1040\subsection{Start up configuration}\label{sec:startup-config}
1041
1042We use the Tomcat web server, which operates either stand-alone in a test mode
1043or in conjunction with the Apache web server. The \gs\ LibraryServlet
1044class is loaded by Tomcat and the servlet's \gst{init()} method is called. Each time a
1045\gst{get/put/post} (etc.) is used, a new thread is started and
1046\gst{doGet()/doPut()/doPost()} (etc.) is called.
1047
1048The \gst{init()} method creates a new Receptionist and a new
1049MessageRouter. Default classes (DefaultReceptionist, MessageRouter) are used unless subclasses have been specified in the servlet initiation parameters (see Section~\ref{sec:sites-and-ints}). The appropriate system variables are set for each object (interface
1050name, site name, etc.) and then \gst{configure()} is called on both. The MessageRouter handle
1051is passed to the Receptionist. The servlet then communicates only with
1052the Receptionist, not with the MessageRouter.
1053
1054The Receptionist reads in the \gst{interfaceConfig.xml} file (see Section~\ref{sec:interfaceconfig}), and loads up all the different Action classes. Other Actions may be loaded on the fly as needed. Actions are added to a map, with shortnames for keys. Eg the QueryAction is added with key 'q'. The Actions are passed the MessageRouter reference too.
1055If the Receptionist is a TransformingReceptionist, a mapping between shortnames and XSLT file names is also created.
1056
1057The MessageRouter reads in its site configuration file \gst{siteConfig.xml} (see Section~\ref{sec:siteconfig}). It creates a module map that maps names to objects. This is used for routing the messages. It also keeps small chunks of XML---serviceList, collectionList, clusterList and siteList. These are part of what get returned in response to a describe request (see Section~\ref{sec:describe}.).
1058
1059Each ServiceRack specified in the configuration file is created, then queried for its list of services. Each service name is added to the map, pointing to the ServiceRack object. Each service is also added to the serviceList. After this stage, ServiceRacks are transparent to the system, and each service is treated as a separate module.
1060
1061ServiceClusters are created and passed the \gst{<serviceCluster>} element for configuration. They are added to the map as is, with the cluster name as a key. A serviceCluster is also added to the serviceClusterList.
1062
1063For each site specified, the MessageRouter creates an appropriate type of Communicator object. Then it tries to get the site description. If the server for the remote site is up and running, this should be successful. The site will be added to the mapping with its site name as a key. The site's collections, services and clusters will also be added into the static xml lists. If the server for the remote site is not running, the site will not be included in the siteList or module map. To try again to access the site, either Tomcat must be restarted, or a run-time reconfigure-site command must be sent (see Section~\ref{sec:runtime-config}).
1064
1065The MessageRouter also looks inside the site's \gst{collect} directory, and loads up a Collection object for each valid collection found. If a \gst{collectionInit.xml} file is present, a subclass of Collection may be used.
1066The Collection object reads its \gst{buildConfig.xml} and \gst{collectionConfig.xml}
1067files, determines the metadata, and loads ServiceRack classes based on the
1068names specified in \gst{buildConfig.xml\/}. The \gst{<serviceRack>} XML element is passed to the object to be used in configuration. The \gst{collectionConfig.xml} contents are also passed in to the ServiceRacks. Any format or display information that the services need must be extracted from the collection configuration file.
1069Collection objects are added to the module map with their name as a key, and also a collection element is added into the collectionList XML.
1070
1071\subsection{Message passing}
1072
1073There are two types of messages used by the system: external and internal messages. All messages have an enclosing \gst{<message>} element, which contains either one or more requests, or one or more responses. In the following descriptions, the message element is not shown, but is assumed to be present.
1074Action in \gsiii\ is originated by a request coming in from the outside. In the standard web-based \gs, this comes from a servlet and is passed into the Receptionist. This ``external'' type request is a request for a page of data, and contains a representation of the CGI style arguments. A page of XML is returned, which can be in HTML format or other depending on the output parameter of the request.
1075
1076Messages inside the system (``internal'' messages) all follow the same basic format: message elements contain multiple request elements, or multiple response elements. Messaging is all synchronous. The same number of responses as requests will be returned. Currently all requests are independent, so any requests can be combined into the same message, and they will be answered separately, with their responses being sent back in a single message.
1077
1078When a page request (external request) comes in to the Receptionist, it looks at the action attribute and passes the request to the appropriate Action module. The Action will fire one or more internal requests to the MessageRouter, based on the arguments. The data is gathered into a response, which is returned to the Receptionist. The page that the receptionist returns contains the original request, the response from the action and other info as needed (depends on the type of Receptionist). The data may be transformed in some way --- for the \gs\ servlet we transform using XSLT to generate HTML pages.
1079
1080Actions send internal style messages to the MessageRouter. Some can be answered by it, others are passed on to collections, and maybe on to services. Internal requests are for simple actions, such as search, retrieve metadata, retrieve document text
1081There are different internal request types: describe, process, system, format, status. Process requests do the actual work of the system, while the other types get auxiliary information. The format of the requests and responses for each internal request type are described in the following sections. External style requests, and their page responses are described in the Section about page generation (Section~\ref{sec:pagegen}).
1082
1083\subsection{'describe'-type messages}\label{sec:describe}
1084
1085The most basic of the internal standard requests is ``describe-yourself'', which can be sent to any module in the system. The module responds with a semi-predefined piece of XML, making these requests very efficient. The response is predefined apart from any language-specific text strings, which are put together as each request comes in, based on the language attribute of the request.
1086\begin{quote}\begin{gsc}\begin{verbatim}
1087<request lang='en' type='describe' to=''/>
1088\end{verbatim}\end{gsc}\end{quote}
1089If the \gst{to} field is empty, a request is answered by the MessageRouter.
1090An example response from a MessageRouter might look like this:
1091\begin{quote}\begin{gsc}\begin{verbatim}
1092<response lang='en' type='describe'>
1093 <serviceList/>
1094 <siteList>
1095 <site name='org.greenstone.gsdl1'
1096 address='http://localhost:8080/greenstone3/services/localsite'
1097 type='soap' />
1098 </siteList>
1099 <serviceClusterList>
1100 <serviceCluster name="build" />
1101 </serviceClusterList>
1102 <collectionList>
1103 <collection name='org.greenstone.gsdl1/
1104 org.greenstone.gsdl2/fao' />
1105 <collection name='org.greenstone.gsdl1/demo' />
1106 <collection name='org.greenstone.gsdl1/fao' />
1107 <collection name='myfiles' />
1108 </collectionList>
1109</response>
1110\end{verbatim}\end{gsc}\end{quote}
1111This MessageRouter has no individual site-wide services (an empty \gst{<serviceList>}), but has a service cluster called build (which provides collection importing and building functionality). It
1112communicates with one site, \gst{org.greenstone.gsdl1}. It is aware of four
1113collections. One of these, \gst{myfiles}, belongs to it; the other three are
1114available through the external site. One of those collections is actually from
1115a further external site.
1116
1117It is possible to ask just for a specific part of the information provided by a
1118describe request, rather than the whole thing. For example, these two
1119messages get the \gst{collectionList} and the \gst{siteList} respectively:
1120\begin{quote}\begin{gsc}\begin{verbatim}
1121<request lang='en' type='describe' to=''>
1122 <paramList>
1123 <param name='subset' value='collectionList'/>
1124 </paramList>
1125</request>
1126
1127<request lang='en' type='describe' to=''>
1128 <paramList>
1129 <param name='subset' value='siteList'/>
1130 </paramList>
1131</request>
1132\end{verbatim}\end{gsc}\end{quote}
1133
1134Subset options for the MessageRouter include \gst{collectionList}, \gst{serviceClusterList}, \gst{serviceList}, \gst{siteList}.
1135
1136When a collection or service cluster is asked to describe itself, what is returned is a list of metadata, some display elements, and a list of services. For example, here is such a message, along with a sample response.
1137
1138\begin{quote}\begin{gsc}\begin{verbatim}
1139<request lang='en' type='describe' to='mgppdemo'/>
1140
1141<response from="mgppdemo" type="describe">
1142 <collection name="mgppdemo">
1143 <displayItem lang="en" name="name">greenstone mgpp demo
1144 </displayItem>
1145 <displayItem lang="en" name="description">This is a
1146 demonstration collection for the Greenstone digital
1147 library software. It contains a small subset (11 books)
1148 of the Humanity Development Library. It is built with
1149 mgpp.</displayItem>
1150 <displayItem lang="en" name="icon">mgppdemo.gif</displayItem>
1151 <serviceList>
1152 <service name="DocumentStructureRetrieve" type="retrieve" />
1153 <service name="DocumentMetadataRetrieve" type="retrieve" />
1154 <service name="DocumentContentRetrieve" type="retrieve" />
1155 <service name="ClassifierBrowse" type="browse" />
1156 <service name="ClassifierBrowseMetadataRetrieve"
1157 type="retrieve" />
1158 <service name="TextQuery" type="query" />
1159 <service name="FieldQuery" type="query" />
1160 <service name="AdvancedFieldQuery" type="query" />
1161 <service name="PhindApplet" type="applet" />
1162 </serviceList>
1163 <metadataList>
1164 <metadata name="creator">[email protected]</metadata>
1165 <metadata name="numDocs">11</metadata>
1166 <metadata name="buildType">mgpp</metadata>
1167 <metadata name="httpPath">http://kanuka:8090/greenstone3/sites/
1168 localsite/collect/mgppdemo</metadata>
1169 </metadataList>
1170 </collection>
1171</response>
1172\end{verbatim}\end{gsc}\end{quote}
1173
1174Subset options for a collection or serviceCluster include \gst{metadataList}, \gst{serviceList}, and \gst{displayItemList}.
1175
1176This collection provides many typical services. Notice how this response lists the services available, while the collection configuration file for this collection (Figure~\ref{fig:collconfig}) described serviceRacks. Once the service racks have been configured, they become transparent in the system, and only services are referred to.
1177There are three document retrieval services, for structural information, metadata, and content. The Classifier services retrieve classification structure and metadata. These five services were all provided by the GS2MGPPRetrieve ServiceRack. The three query services were provided by GS2MGPPSearch serviceRack, and provide different kinds of query interface. The last service, PhindApplet, is provided by the PhindPhraseBrowse serviceRack and is an applet service.
1178
1179A \gst{describe} request sent to a service returns a list of parameters that
1180the service accepts and some display information, (and in future may describe the content type for the request and response). Subset options for the request include \gst{paramList} and \gst{displayItemList}.
1181
1182Parameters can be in the following formats:
1183\begin{quote}\begin{gsc}\begin{verbatim}
1184<param name='xxx' type='integer|boolean|string|invisible' default='yyy'/>
1185<param name='xxx' type='enum_single|enum_multi' default='aa'/>
1186 <option name='aa'/><option name='bb'/>...
1187</param>
1188<param name='xxx' type='multi' occurs='4'>
1189 <param .../>
1190 <param .../>
1191</param>
1192\end{verbatim}\end{gsc}\end{quote}
1193
1194If no default is specified, the parameter is assumed to be mandatory.
1195Here are some examples of parameters:
1196\begin{quote}\begin{gsc}\begin{verbatim}
1197<param name='case' type='boolean' default='0'/>
1198
1199<param name='maxDocs' type='integer' default='50'/>
1200
1201<param name='index' type='enum' default='dtx'>
1202 <option name='dtx'/>
1203 <option name='stt'/>
1204 <option name='stx'/>
1205<param>
1206
1207<!-- this one is for the text box and field list for the
1208simple field query-->
1209<param name='simpleField' type='multi' occurs='4'>
1210 <param name='fqv' type='string'/>
1211 <param name='fqf' type='enum_single'>
1212 <option name='TI'/><option name='AU'/><option name='OR'/>
1213 </param>
1214</param>
1215
1216\end{verbatim}\end{gsc}\end{quote}
1217The type attribute is used to determine how to display the parameters on a web page or interface. For example, a string parameter may result in a text entry box, a boolean an on/off button, enum\_single/enum\_multi a drop-down menu, where one or many items, respectively, can be selected.
1218A multi-type parameter indicates that two or more parameters are associated, and should be displayed appropriately. For example, in a field query, the text box and field list should be associated. The occurs attribute specifies how many times the parameter should be displayed on the page.
1219Parameters also come with display information: all the text strings needed to present them to the user. These include the name of the parameter and the display values for any options. These are included in the above parameter descriptions in the form of \gst{<displayItem>} elements.
1220
1221A service description also contains some display information---this includes the name of the service, and the text for the submit button.
1222
1223Here is a sample describe request to the FieldQuery service of collection mgppdemo, along with its response. The parameters in this example include their display information. Figure~\ref{fig:query-display} shows an example HTML search form that may be generated from this describe response.
1224
1225\begin{quote}\begin{gsc}\begin{verbatim}
1226<request lang="en" to="mgppdemo/FieldQuery" type="describe" />
1227
1228<response from="mgppdemo/FieldQuery" type="describe">
1229 <service name="FieldQuery" type="query">
1230 <displayItem name="name">Form Query</displayItem>
1231 <displayItem name="submit">Search</displayItem>
1232 <paramList>
1233 <param default="Doc" name="level" type="enum_single">
1234 <displayItem name="name">Granularity to search at</displayItem>
1235 <option name="Doc">
1236 <displayItem name="name">Document</displayItem>
1237 </option>
1238 <option name="Sec">
1239 <displayItem name="name">Section</displayItem>
1240 </option>
1241 <option name="Para">
1242 <displayItem name="name">Paragraph</displayItem>
1243 </option>
1244 </param>
1245 <param default="1" name="case" type="boolean">
1246 <displayItem name="name">Turn casefolding </displayItem>
1247 <option name="0">
1248 <displayItem name="name">off</displayItem>
1249 </option>
1250 <option name="1">
1251 <displayItem name="name">on</displayItem>
1252 </option>
1253 </param>
1254 <param default="1" name="stem" type="boolean">
1255 <displayItem name="name">Turn stemming </displayItem>
1256 <option name="0">
1257 <displayItem name="name">off</displayItem>
1258 </option>
1259 <option name="1">
1260 <displayItem name="name">on</displayItem>
1261 </option>
1262 </param>
1263 <param default="10" name="maxDocs" type="integer">
1264 <displayItem name="name">Maximum documents to return
1265 </displayItem>
1266 </param>
1267 <param name="simpleField" occurs="4" type="multi">
1268 <displayItem name="name"></displayItem>
1269 <param name="fqv" type="string">
1270 <displayItem name="name">Word or phrase </displayItem>
1271 </param>
1272 <param default="ZZ" name="fqf" type="enum_single">
1273 <displayItem name="name">in field</displayItem>
1274 <option name="ZZ">
1275 <displayItem name="name">allfields</displayItem>
1276 </option>
1277 <option name="TX">
1278 <displayItem name="name">text</displayItem>
1279 </option>
1280 <option name="TI">
1281 <displayItem name="name">Title</displayItem>
1282 </option>
1283 <option name="SU">
1284 <displayItem name="name">Subject</displayItem>
1285 </option>
1286 <option name="ORG">
1287 <displayItem name="name">Organization</displayItem>
1288 </option>
1289 <option name="SO">
1290 <displayItem name="name">Source</displayItem>
1291 </option>
1292 </param>
1293 </param>
1294 </paramList>
1295 </service>
1296</response>
1297\end{verbatim}\end{gsc}\end{quote}
1298
1299\begin{figure}[t]
1300 \centering
1301 \includegraphics[width=3.5in]{query2.ps}
1302 \caption{The previous query service describe response as displayed on the search page.}
1303 \label{fig:query-display}
1304\end{figure}
1305
1306A describe request to an applet type service returns the applet HTML element: this will be embedded into a web page to run the applet.
1307\begin{quote}\begin{gsc}\begin{verbatim}
1308<request type='describe' to='mgppdemo/PhindApplet'/>
1309
1310<response type='describe'>
1311 <service name='PhindApplet' type='query'>
1312 <applet ARCHIVE='phind.jar, xercesImpl.jar, gsdl3.jar,
1313 jaxp.jar, xml-apis.jar'
1314 CODE='org.greenstone.applet.phind.Phind.class'
1315 CODEBASE='lib/java'
1316 HEIGHT='400' WIDTH='500'>
1317 <PARAM NAME='library' VALUE=''/>
1318 <PARAM NAME='phindcgi' VALUE='?a=a&amp;sa=r&amp;sn=Phind'/>
1319 <PARAM NAME='collection' VALUE='mgppdemo' />
1320 <PARAM NAME='classifier' VALUE='1' />
1321 <PARAM NAME='orientation' VALUE='vertical' />
1322 <PARAM NAME='depth' VALUE='2' />
1323 <PARAM NAME='resultorder' VALUE='L,l,E,e,D,d' />
1324 <PARAM NAME='backdrop' VALUE='interfaces/default/>
1325 images/phindbg1.jpg'/>
1326 <PARAM NAME='fontsize' VALUE='10' />
1327 <PARAM NAME='blocksize' VALUE='10' />
1328 The Phind java applet.
1329 </applet>
1330 <displayItem name="name">Browse phrase hierarchies</displayItem>
1331 </service>
1332</response>
1333\end{verbatim}\end{gsc}\end{quote}
1334
1335Note that the library parameter has been left blank. This is because library refers to the current servlet that is running and the name is not necessarily known in advance. So either the applet action or the Receptionist must fill in this parameter before displaying the HTML.
1336
1337\subsection{'system'-type messages}\label{sec:system}
1338
1339``System'' requests are used to tell a MessageRouter, Collection or ServiceCluster to update its cached information and activate or deactivate other modules. For example, the MessageRouter has a set of Collection modules that it can talk to. It also holds some XML information about those collections---this is returned when a request for a collection list comes in. If a collection is deleted or modified, or a new one created, this information may need to change, and the list of available modules may also change. Currently these requests are initiated by particular CGI requests (see Section~\ref{sec:runtime-config}).
1340
1341The basic format of a system request is as follows:
1342
1343\begin{quote}\begin{gsc}\begin{verbatim}
1344<request type='system' to=''>
1345 <system .../>
1346</request>
1347\end{verbatim}\end{gsc}\end{quote}
1348
1349One or more actual requests are specified in system elements. The following are examples:
1350\begin{quote}\begin{gsc}\begin{verbatim}
1351<system type='configure' subset=''/>
1352<system type='configure' subset='collectionList'/>
1353<system type='activate' moduleType='collection' moduleName='demo'/>
1354<system type='deactivate' moduleType='site' moduleName='site1'/>
1355\end{verbatim}\end{gsc}\end{quote}
1356
1357The first request reconfigures the whole site---the MessageRouter goes through its whole configure process again. The second request just reconfigures the collectionList---the MessageRouter will delete all its collection information, and re-look through the collect directory and reload all the collections again.
1358The third request is to activate collection demo. This could be a new collection, or a reactivation of an old one. If a collection module already exists, it will be deleted, and a new one loaded. The final request deactivates the site site1---this removes the site from the siteList and module map, and also removes any of that sites collections/services from the static lists.
1359
1360A response just contains a status message\footnote{TODO: add in error/status codes}, for example:
1361\begin{quote}\begin{gsc}\begin{verbatim}
1362<status>MessageRouter reconfigured successfully</status>
1363<status>Error on reconfiguring collectionList</status>
1364<status>collection:demo activated</status>
1365<status>site:site1 deactivated</status>
1366\end{verbatim}\end{gsc}\end{quote}
1367
1368System requests are mainly answered by the MessageRouter. However, Collections and ServiceClusters will respond to a subset of these requests.
1369
1370\subsection{'format'-type messages}\label{sec:format}
1371
1372Collection designers are able to specify how their collection looks to a certain degree. They can specify format statements for display that will apply to the results of a search, the display of a document, entries in a classification hierarchy, for example. This info is generally service specific. All services respond to a format request, where they return any service specific formatting information. A typical request and response looks like this:
1373\begin{quote}\begin{gsc}\begin{verbatim}
1374<request lang="en" to="mgppdemo/FieldQuery" type="format" />
1375
1376<response from="mgppdemo/FieldQuery" type="format">
1377 <format>
1378 <gsf:template match="documentNode"><td><gsf:link>
1379 <gsf:metadata name="Title" />(<gsf:metadata name="Source" />)
1380 </gsf:link></td>
1381 </gsf:template>
1382 </format>
1383</response>
1384\end{verbatim}\end{gsc}\end{quote}
1385
1386The actual format statements are described in Section~\ref{sec:formatstmt}. They are templates written directly in XSLT, or in GSF (GreenStone Format) which is a simple XML representation of the more complicated XSLT templates.
1387GSF-style format statements need to be converted to proper XSLT. This is currently done by the Receptionist (but may be moved to an ActionHelper): the format XML is transformed to XSLT using XSLT with the config\_format.xsl stylesheet.
1388
1389\subsection{'status'-type messages}\label{sec:status}
1390
1391These are only used with process-type services, which are those where a request is sent to start some type of process (see Section~\ref{sec:process}). An initial 'process' request to a 'process' service generates a response which states whether the process had successfully started, and whether its still continuing. If the process is not finished, status requests can be sent repeatedly to the service to poll the status, using the pid to identify the process. Status codes are used to identify the state of a process. The values used at the moment are listed in Table~\ref{tab:status codes}\footnote{A more standard set of codes should probably be used, for example, the HTTP codes}.
1392
1393\begin{table}
1394\caption{Status codes currently used in \gsiii\ }
1395\label{tab:status codes}
1396{\footnotesize
1397\begin{tabular}{llp{8cm}}
1398\hline
1399\bf code name & \bf code & \bf meaning \\
1400& \bf value & \\
1401\hline
1402SUCCESS & 1 & the request was accepted, and the process was completed \\
1403ACCEPTED & 2 & the request was accepted, and the process has been started, but it is not completed yet \\
1404ERROR & 3 & there was an error and the process was stopped \\
1405CONTINUING & 10 & the process is still continuing \\
1406COMPLETED & 11 & the process has finished \\
1407HALTED & 12 & the process has stopped \\
1408INFO & 20 & just an info message that doesn't imply anything \\
1409\hline
1410\end{tabular}}
1411\end{table}
1412
1413 The following shows an example status request, along with two responses, the first a 'OK but continuing' response, and the second a 'successfully completed' response. The content of the status elements in the two responses is the output from the process since the last status update was sent back.
1414
1415\begin{quote}\begin{gsc}\begin{verbatim}
1416<request lang="en" to="build/ImportCollection" type="status">
1417 <paramList>
1418 <param name="pid" value="2" />
1419 </paramList>
1420</request>
1421
1422<response from="build/ImportCollection">
1423 <status code="2" pid="2">Collection construction: import collection.
1424command = import.pl -collectdir /research/kjdon/home/greenstone3/web/sites/
1425 localsite/collect test1
1426starting
1427 </status>
1428</response>
1429
1430<response from="build/ImportCollection">
1431 <status code="11" pid="2">RecPlug: getting directory
1432/research/kjdon/home/greenstone3/web/sites/localsite/collect/test1/import
1433WARNING - no plugin could process /.keepme
1434
1435*********************************************
1436Import Complete
1437*********************************************
1438* 1 document was considered for processing
1439* 0 were processed and included in the collection
1440* 1 was rejected. See /research/kjdon/home/greenstone3/web/sites/
1441 localsite/collect/test1/etc/fail.log for a list of rejected documents
1442Success
1443 </status>
1444</response>
1445\end{verbatim}\end{gsc}\end{quote}
1446
1447\subsection{'process'-type messages}
1448
1449Process requests and responses provide the major functionality of the system---these are the ones that do the actual work. The format depends on the service they are for, so I'll describe these by service.
1450
1451Query type services TextQuery, FieldQuery, AdvancedFieldQuery (GS2MGSearch, GS2MGPPSearch), TextQuery (LuceneSearch)
1452The main type of requests in the system are for services. There are different types of services, currently: \gst{query}, \gst{browse}, \gst{retrieve}, \gst{process}, \gst{applet}, \gst{enrich}. Query services do some kind of search and return a list of document identifiers. Retrieve services can return the content of those documents, metadata about the documents, or other resources. Browse is for browsing lists or hierarchies of documents. Process type services are those where the request is for a command to be run. A status code will be returned immediately, and then if the command has not finished, an update of the status can be requested. Applet services are those that run an applet. Enrich services take a document and return the document with some extra markup added.
1453
1454 Other possibilities include transform, extract, accrete. These types of service generally enhance the functionality of the first set. They may be used during collection formation: 'accrete' documents by adding them to a collection, 'transform' the documents into a different format, 'extract' information or acronyms from the documents, 'enrich' those documents with the information extracted or by adding new information. They may also be used during querying: 'transform' a query before using it to query a collection, or 'transform' the documents you get back into an appropriate form.
1455
1456The basic structure of a service 'process' request is as follows:
1457\begin{quote}\begin{gsc}\begin{verbatim}
1458
1459<request lang='en' type='process' to='demo/TextQuery'>
1460 <paramList/>
1461 other elements...
1462</request>
1463
1464\end{verbatim}\end{gsc}\end{quote}
1465
1466The parameters are name-value pairs corresponding to parameters that were specified in the service description sent in response to a describe request.
1467
1468\begin{quote}\begin{gsc}\begin{verbatim}
1469<param name='case' value='1'/>
1470<param name='maxDocs' value='34'/>
1471<param name='index' value='dtx'/>
1472\end{verbatim}\end{gsc}\end{quote}
1473
1474Some requests have other content---for document retrieval, this would be a list of document identifiers to retrieve. For metadata retrieval, the content is the list of documents to retrieve metadata for.
1475
1476Responses vary depending on the type of request. The following sections look at the process type requests and responses for each type of service.
1477
1478\subsubsection{'query'-type services}
1479Responses to query requests contain a list of document identifiers, along with some other information, dependent on the query type. For a text query, this includes term frequency information, and some metadata about the result. For instance, a text query on 'snail farming', with the parameter 'maxDocs=10' might return the first 10 documents, and one of the query metadata items would be the total number of documents that matched the query.\footnote{no metadata about the query result is returned yet.}
1480
1481The following shows an example query request and its response.
1482
1483Find at most 10 Sections in the mgppdemo collection, containing the word snail (stemmed), returning the results in ranked order:
1484\begin{quote}\begin{gsc}\begin{verbatim}
1485<request lang='en' to="mgppdemo/TextQuery" type="process">
1486 <paramList>
1487 <param name="maxDocs" value="10"/>
1488 <param name="queryLevel" value="Section"/>
1489 <param name="stem" value="1"/>
1490 <param name="matchMode" value="some"/>
1491 <param name="sortBy" value="1"/>
1492 <param name="index" value="t0"/>
1493 <param name="case" value="0"/>
1494 <param name="query" value="snail"/>
1495 </paramList>
1496</request>
1497
1498<response from="mgppdemo/TextQuery" type="process">
1499 <metadataList>
1500 <metadata name="numDocsMatched" value="59" />
1501 </metadataList>
1502 <documentNodeList>
1503 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2"
1504 docType='hierarchy' nodeType="leaf" />
1505 <documentNode nodeID="HASH010f073f22033181e206d3b7.2.12"
1506 docType='hierarchy' nodeType="leaf" />
1507 <documentNode nodeID="HASH010f073f22033181e206d3b7.1"
1508 docType='hierarchy' nodeType="interior" />
1509 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.2.2"
1510 docType='hierarchy' nodeType="leaf" />
1511 ...
1512 </documentNodeList>
1513 <termList>
1514 <term field="" freq="454" name="snail" numDocsMatch="58" stem="3">
1515 <equivTermList>
1516 <term freq="" name="Snail" numDocsMatch="" />
1517 <term freq="" name="snail" numDocsMatch="" />
1518 <term freq="" name="Snails" numDocsMatch="" />
1519 <term freq="" name="snails" numDocsMatch="" />
1520 </equivTermList>
1521 </term>
1522 </termList>
1523</response>
1524\end{verbatim}\end{gsc}\end{quote}
1525
1526The list of document identifiers includes some information about document type and node type. Currently, document types include \gst{simple}, \gst{paged} and \gst{hierarchy}. \gst{simple} is for single section documents, i.e. ones with no sub-structure. \gst{paged} is documents that have a single list of sections, while \gst{hierarchy} type documents have a hierarchy of nested sections. For \gst{paged} and \gst{hierarchy} type documents, the node type identifies whether a section is the root of the document, an internal section, or a leaf.
1527
1528The term list identifies, for each term in the query, what its frequency in the collection is, how many documents contained that term, and a list of its equivalent terms (if stemming or casefolding was used).
1529
1530\subsubsection{'browse'-type services}
1531
1532Browse type services are used for classification browsing. The request consists of a list of classifier identifiers, and some structure parameters listing what structure to retrieve.
1533
1534\begin{quote}\begin{gsc}\begin{verbatim}
1535<request lang="en" to="mgppdemo/ClassifierBrowse" type="process">
1536 <paramList>
1537 <param name="structure" value="ancestors" />
1538 <param name="structure" value="children" />
1539 </paramList>
1540 <classifierNodeList>
1541 <classifierNode nodeID="CL1.2" />
1542 </classifierNodeList>
1543</request>
1544
1545<response from="mgppdemo/ClassifierBrowse" type="process">
1546 <classifierNodeList>
1547 <classifierNode nodeID="CL1">
1548 <nodeStructure>
1549 <classifierNode nodeID="CL1">
1550 <classifierNode nodeID="CL1.2">
1551 <classifierNode nodeID="CL1.2.1" />
1552 <classifierNode nodeID="CL1.2.2" />
1553 <classifierNode nodeID="CL1.2.3" />
1554 <classifierNode nodeID="CL1.2.4" />
1555 <classifierNode nodeID="CL1.2.5" />
1556 </classifierNode>
1557 </classifierNode>
1558 </nodeStructure>
1559 </classifierNode>
1560 </classifierNodeList>
1561</response>
1562\end{verbatim}\end{gsc}\end{quote}
1563
1564Possible values for structure parameters are \gst{ancestors}, \gst{parent}, \gst{siblings}, \gst{children}, \gst{descendents}. The response gives, for each identifier in the request, a \gst{<nodeStructure>} element with all the requested structure put together into a hierarchy. The structure may include classifier and document nodes.
1565
1566
1567\subsubsection{'retrieve'-type services}
1568
1569Retrieval services are special in that requests are not explicitly initiated by a user from a form on a web page, but are called from actions in response to other things. This means that their names are hard-coded into the Actions. DocumentContentRetrieve, DocumentStructureRetrieve and DocumentMetadataRetrieve are the standard names for retrieval services for content, structure, and metadata of documents. Requests to each of these include a list of document identifiers. Because these generally refer to parts of documents, the elements are called \gst{<documentNode>}. For the content, that is all that is required. For the metadata retrieval service, the request also needs parameters specifying what metadata is required. For structure retrieval services, requests need parameters specifying what structure or structural info is required.
1570
1571Some example requests and responses follow.
1572
1573Give me the Title metadata for these documents:
1574\begin{quote}\begin{gsc}\begin{verbatim}
1575
1576<request lang="en" to="mgppdemo/DocumentMetadataRetrieve" type="process">
1577 <paramList>
1578 <param name="metadata" value="Title" />
1579 </paramList>
1580 <documentNodeList>
1581 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2"/>
1582 <documentNode nodeID="HASH010f073f22033181e206d3b7.2.12"/>
1583 <documentNode nodeID="HASH010f073f22033181e206d3b7.1"/>
1584 ...
1585 </documentNodeList>
1586</request>
1587
1588<response from="mgppdemo/DocumentMetadataRetrieve" type="process">
1589 <documentNodeList>
1590 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2">
1591 <metadataList>
1592 <metadata name="Title">Putting snails in your second pen</metadata>
1593 </metadataList>
1594 </documentNode>
1595 <documentNode nodeID="HASH010f073f22033181e206d3b7.2.12">
1596 <metadataList>
1597 <metadata name="Title">Now you must decide</metadata>
1598 </metadataList>
1599 </documentNode>
1600 <documentNode nodeID="HASH010f073f22033181e206d3b7.1">
1601 <metadataList>
1602 <metadata name="Title">Introduction</metadata>
1603 </metadataList>
1604 </documentNode>
1605 </documentNodeList>
1606</response>
1607\end{verbatim}\end{gsc}\end{quote}
1608
1609One or more parameters specifying metadata may be included in a request. Also, a metadata value of \gst{all} will retrieve all the metadata for each document.
1610
1611Any browse-type service must also implement a metadata retrieval service to provide metadata for the nodes in the classification hierarchy. The name of it is the browse service name plus \gst{MetadataRetrieve}. For example, the ClassifierBrowse service described in the previous section should also have a ClassifierBrowseMetadataRetrieve service. The request and response format is exactly the same as for the DocumentMetadataRetrieve service, except that \gst{<documentNode>} elements are replaced by \gst{<classifierNode>} elements (and the corresponding list element is also changed).
1612
1613Give me the text (content) of this document:
1614\begin{quote}\begin{gsc}\begin{verbatim}
1615<request lang="en" to="mgppdemo/DocumentContentRetrieve" type="process">
1616 <paramList />
1617 <documentNodeList>
1618 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2" />
1619 </documentNodeList>
1620</request>
1621
1622<response from="mgppdemo/DocumentContentRetrieve" type="process">
1623 <documentNodeList>
1624 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2">
1625 <nodeContent>&lt;Section&gt;
1626 &lt;/B&gt;&lt;P ALIGN=&quot;JUSTIFY&quot;&gt;&lt;/P&gt;
1627 &lt;P ALIGN=&quot;JUSTIFY&quot;&gt;190. When the plants in
1628 your second pen have grown big enough to provide food and
1629 shelter, you can put in the snails.&lt;/P&gt;
1630 </nodeContent>
1631 </documentNode>
1632 </documentNodeList>
1633</response>
1634\end{verbatim}\end{gsc}\end{quote}
1635
1636The content of a node is returned in a \gst{<nodeContent>} element. In this case it is escaped HTML.
1637
1638Give me the ancestors and children of the specified node, along with the number of siblings it has:
1639\begin{quote}\begin{gsc}\begin{verbatim}
1640<request lang="en" to="mgppdemo/DocumentStructureRetrieve" type="process">
1641 <paramList>
1642 <param name="structure" value="ancestors" />
1643 <param name="structure" value="children" />
1644 <param name="info" value="numSiblings" />
1645 </paramList>
1646 <documentNodeList>
1647 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2" />
1648 </documentNodeList>
1649</request>
1650
1651<response from="mgppdemo/DocumentStructureRetrieve" type="process">
1652 <documentNodeList>
1653 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2">
1654 <nodeStructureInfo>
1655 <info name="numSiblings" value="2" />
1656 </nodeStructureInfo>
1657 <nodeStructure>
1658 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd"
1659 docType='hierarchy' nodeType="root">
1660 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4"
1661 docType='hierarchy' nodeType="interior">
1662 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd.4.2"
1663 docType='hierarchy' nodeType="leaf" />
1664 </documentNode>
1665 </documentNode>
1666 </nodeStructure>
1667 </documentNode>
1668 </documentNodeList>
1669</response>
1670\end{verbatim}\end{gsc}\end{quote}
1671
1672Structure is returned inside a \gst{<nodeStructure>} element, while structural info is returned in a \gst{<nodeStructureInfo>} element. Possible values for structure parameters are as for browse services: \gst{ancestors}, \gst{parent}, \gst{siblings}, \gst{children}, \gst{descendents}, \gst{entire}. Possible values for info parameters are \gst{numSiblings}, \gst{siblingPosition}, \gst{numChildren}.
1673
1674\subsubsection{'process'-type services}\label{sec:process}
1675Requests to process-type services are not requests for data---they request some action to be carried out, for example, create a new collection, or import a collection. The response is a status or an error message. The import and build commands may take a long time to complete, so a response is sent back after a successful start to the command. The status may be polled by the requester to see how the process is going.
1676
1677Process requests generally contain just a parameter list. Like for any service, the parameters used by a process-type service can be obtained by a describe request to that service.
1678
1679Here are two example requests for process-services that are part of the build service cluster (hence the addresses all begin with 'build/'), followed by an example response:
1680
1681\begin{quote}\begin{gsc}\begin{verbatim}
1682<request lang='en' type='process' to='build/NewCollection'>
1683 <paramList>
1684 <param name='creator' value='[email protected]'/>
1685 <param name='collName' value='the demo collection'/>
1686 <param name='collShortName' value='demo'/>
1687 </paramlist>
1688</request>
1689
1690<request lang='en' type='process' to='build/ImportCollection'>
1691 <paramList>
1692 <param name='collection' value='demo'/>
1693 </paramlist>
1694</request>
1695
1696<response from="build/ImportCollection">
1697 <status code="2" pid="2">Starting process...</status>
1698</response>
1699\end{verbatim}\end{gsc}\end{quote}
1700
1701The \gst{code} attribute in the response specifies whether the command has been successfully stated, whether its still going, etc (see Table~\ref{tab:status codes} for a list of currently used codes). The pid attribute specifies a process id number that can be used when querying the status of this process. The content of the status element is (currently) just the output from the process so far. Status messages, which were described in Section~\ref{sec:status}, are used to find out how the process is going, and whether it has finished or not.
1702
1703\subsubsection{'applet'-type services}
1704
1705Applet-type services are those that process the data for an applet. A request consists only of a list of parameters, and the response contains an \gst{<appletData>} element that contains the XML data to be returned to the applet. The format of this is entirely specific to the applet---there is no set format to the applet data.
1706
1707Here is an example request and response, used by the Phind applet:
1708\begin{quote}\begin{gsc}\begin{verbatim}
1709 <request type='query' to='mgppdemo/PhindApplet'>
1710 <paramList>
1711 <param name='pc' value='1'/>
1712 <param name='pptext' value='health'/>
1713 <param name='pfe' value='0'/>
1714 <param name='ple' value='10'/>
1715 <param name='pfd' value='0'/>
1716 <param name='pld' value='10'/>
1717 <param name='pfl' value='0'/>
1718 <param name='pll' value='10'/>
1719 </paramList>
1720 </request>
1721
1722 <response type='query' from='mgppdemo/PhindApplet'>
1723 <appletData>
1724 <phindData df='9' ef='46' id='933' lf='15' tf='296'>
1725 <expansionList end='10' length='46' start='0'>
1726 <expansion df='4' id='8880' num='0' tf='59'>
1727 <suffix> CARE</suffix>
1728 </expansion>
1729 ...
1730 </expansionList>
1731 <documentList end='10' length='9' start='0'>
1732 <document freq='78' hash='HASH4632a8a51d33c47a75c559' num='0'>
1733 <title>The Courier - N??159 - Sept- Oct 1996 Dossier Investing
1734 in People Country Reports: Mali ; Western Samoa
1735 </title>
1736 </document>
1737 ...
1738 </documentList>
1739 <thesaurusList end='10' length='15' start='0'>
1740 <thesaurus df='7' id='12387' tf='15' type='RT'>
1741 <phrase>PUBLIC HEALTH</phrase>
1742 </thesaurus>...
1743 </thesaurusList>
1744 </phindData>
1745 </appletData>
1746 </response>
1747
1748\end{verbatim}\end{gsc}\end{quote}
1749
1750\subsubsection{'enrich'-type services}
1751
1752Enrich services typically take some text of documents (inside \gst{<nodeContent>} tags) and returns the text marked up in some way. One example of this is the GatePOSTag service: this identifies Dates, Locations, People and Organizations in the text, and annotates the text with the labels. In the following example, the request is for Location and Dates to be identified.
1753
1754\begin{quote}\begin{gsc}\begin{verbatim}
1755<request lang="en" to="GatePOSTag" type="process">
1756 <paramList>
1757 <param name="annotationType" value="Date,Location" />
1758 </paramList>
1759 <documentNodeList>
1760 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd">
1761 <nodeContent>
1762 FOOD AND AGRICULTURE ORGANIZATION OF THE UNITED NATIONS
1763 Rome 1986
1764 P-69
1765 ISBN 92-5-102397-2
1766 FAO 1986
1767 </nodeContent>
1768 </documentNode>
1769 </documentNodeList>
1770</request>
1771
1772<response from="GatePOSTag" type="process">
1773 <documentNodeList>
1774 <documentNode nodeID="HASHac0a04dd14571c60d7fbfd">
1775 <nodeContent>
1776 FOOD AND AGRICULTURE ORGANIZATION OF THE UNITED NATIONS
1777 <annotation type="Location">Rome</annotation>
1778 <annotation type="Date">1986</annotation>
1779 P-69
1780 ISBN 92-5-102397-2
1781 FAO <annotation type="Date">1986</annotation>
1782 </nodeContent>
1783 </documentNode>
1784 </documentNodeList>
1785</response>
1786\end{verbatim}\end{gsc}\end{quote}
1787
1788\subsection{Page generation}\label{sec:pagegen}
1789
1790A 'page' is some XML or HTML (or other?) data returned in response to an
1791external 'page'-type request. These requests originate from outside \gs\ , for example from a servlet, or Java application, and are received by the Receptionist. As described below in Section~\ref{sec:page-requests}, the requests are XML representations of \gs\ URLs. One of the arguments is action (a). This tells the Receptionist which Action module to pass the request to.
1792
1793Action modules decode the rest of the arguments to determine what requests need to be made to the system. One or more internal requests may be made to the MessageRouter. A request for format information from the Collection/Service may also be made. The resulting data is gathered together into a single XML response, \gst{<page>}, and returned to the Receptionist.
1794
1795The page format is described in Section~\ref{sec:page-format}. The XML may be returned as is, or may be modified by the Receptionist. The various Receptionists are described in Section~\ref{sec:recepts}. The default receptionist used by a servlet transforms the XML into HTML using XSL stylesheets. Section~\ref{sec:collformat} looks at collection specific formatting, in particular for HTML output.
1796Sections~\ref{sec:pageaction} to \ref{sec:systemaction} look at the various actions and what kind of data they gather.
1797
1798\subsubsection{'page'-type requests and their arguments}\label{sec:page-requests}
1799
1800These are requests for a 'page' of data---for example, the home page for a site; the query page for a collection; the text of a document. They contain, in XML, a list of arguments specifying what type of page is required. If the external context is a servlet, the arguments represent the 'CGI' arguments in a \gs\ URL. The two main arguments are \gst{a} (action) and \gst{sa} (subaction). All other arguments are encoded as parameters.
1801
1802Here are some examples of requests\footnote{In a servlet context, these correspond to the arguments \gst{a=p\&sa=about\&c=demo\&l=fr}, and \gst{a=q\&l=en\&s=TextQuery\&c=demo\&rt=r\&ca=0\&st=1\&m=10\&q=snail}.}:
1803
1804\begin{quote}\begin{gsc}\begin{verbatim}
1805<request type='page' action='p' subaction='about'
1806 lang='fr' output='html'>
1807 <paramList>
1808 <param name='c' value='demo'/>
1809 </paramList>
1810</request>
1811\end{verbatim}\end{gsc}\end{quote}
1812
1813\begin{quote}\begin{gsc}\begin{verbatim}
1814<request type='page' action='q' lang='en' output='html'>
1815 <paramList>
1816 <param name='s' value='TextQuery'/>
1817 <param name='c' value='demo'/>
1818 <param name='rt' value='r'/>
1819 <!-- the rest are the service specific params -->
1820 <param name='ca' value='0'/> <!-- casefold -->
1821 <param name='st' value='1'/> <!-- stem -->
1822 <param name='m' value='10'/> <!-- maxdocs -->
1823 <param name='q' value='snail'/> <!-- query string -->
1824 </paramList>
1825</request>
1826\end{verbatim}\end{gsc}\end{quote}
1827
1828There are some standard arguments used in Greenstone, and they are described in Table~\ref{tab:args}. These are used by Receptionists and Actions. The GSParams class specifies all the general basic arguments, and whether they should be saved or not (Some arguments need to be saved during a session, and this needs to be implemented outside \gs\ proper --- currently we do this in the servlet, using servlet session handling). The servlet has an init parameter \gst{params\_class} which specifies which params class to use: GSParams can be subclassed if necessary. The Receptionist and Actions must not have conflicting argument names.
1829
1830Other arguments are used dynamically and come from the Services. Service arguments must always be saved during a session. Services may be created by different people, and may reside on a different site. There is no guarantee that there is no conflict with argument names between services and actions. Therefore service parameters are namespaced when they are put on the page, whereas interface (receptionist and action) parameters have no namespace. The default namespace is s1 (service1) --- any parameters that are for the service will be prefixed by this. For example, the case parameter for a search will be put in the page as s1.case, and the resulting argument in a search URL will be s1.case. When actions are deciding which parameters need to be sent in a request to a service, they can use the namespace information.
1831
1832If there are two or more services combined on a page with a single submit button, they will use namespaces s1, s2, s3 etc as needed. The s (service) parameter will end up with a list of services. For example, \gst{s=TextQuery,MusicQuery,} and the order of these determines the mapping order of the namespaces, i.e. s1 will map to TextQuery, s2 to MusicQuery.
1833
1834\begin{table}
1835{\footnotesize
1836\begin{tabular}{lll}
1837\hline
1838\bf Argument & \bf Meaning &\bf Typical values \\
1839\hline
1840a & action & a (applet), q (query), b (browse), p (page), pr (process) \\
1841& & s (system)\\
1842sa & subaction & home, about (page action)\\
1843c & collection or & demo, build \\
1844& service cluster \\
1845s & service name & TextQuery, ImportCollection \\
1846rt & request type & d (display), r (request), s (status) \\
1847ro & response only & 0 or 1 - if set to one, the request is carried out \\
1848& & but no processing of the results is done \\
1849& & currently only used in process actions \\
1850o & output type & XML, HTML, WML \\
1851l & language & en, fr, zh ...\\
1852d & document id & HASHxxx \\
1853r & resource id & ???\\
1854pid & process handle & an integer identifying a particular process request \\
1855\hline
1856\end{tabular}}
1857\caption{Generic arguments that can appear in a \gs\ URL}
1858\label{tab:args}
1859\end{table}
1860
1861\subsubsection{page format}\label{sec:page-format}
1862
1863The basic page format is:
1864\begin{quote}\begin{gsc}\begin{verbatim}
1865<page lang='en'>
1866 <pageRequest/>
1867 <pageResponse/>
1868</page>
1869\end{verbatim}\end{gsc}\end{quote}
1870
1871* show configuration and describe whats its used for
1872
1873There are two main elements in the page: pageRequest, pageResponse. The pageRequest is the original request that came into the Receptionist---this is included so that any parameters can be preset to their previous values, for example, the query options on the query form. The pageResponse contains all the data that has been gathered from the system by the action. The other two elements contain extra information needed by XSLT. Config contains run-time variables such as the location of the gsdl home directory, the current site name, the name of the executable that is running (e.g. library)---these are needed to allow the XSLT to generate correct HTML URLs. Display contains some of the text strings needed in the interface---these are separate from the XSLT to allow for internationalization.
1874
1875The following subsections outline, for each action, what data is needed and what requests are generated to send to the system.
1876
1877
1878Once the XML page has been put together, the page to return to the user is created by transforming the XML using XSLT. The output is HTML at this stage, but it will be possible to generate alternative outputs, such as XML, WML etc. A set of XSLT files defines an 'interface'. Different users can change the look of their web pages by creating new XSLT files for a new 'interface'. Just as we have a sites directory where different sites 'live' (ie where their configuration file and collections are located), we have an interfaces directory where the different interfaces 'live' (ie their transforms and images are located there). The default XSLT files are
1879located in interfaces/default/transforms. Collections, sites and other interfaces
1880can override these files by having their own copy of the appropriate
1881files. New interfaces have their own directory inside interfaces/. Sites and collections can have a transform directory containing XSLT files. The order in which the XSLT files are looked for is collection, site, current
1882interface, default interface.\footnote{this currently breaks down for remote sites - need to rethink it a bit.}
1883***TODO*** describe a bit more?? currently only can get this locally
1884
1885\subsubsection{Receptionists}\label{sec:recepts}
1886
1887The receptionist is the controlling module for the page generation part of \gs\ . It has the job of loading up all the actions, and it knows about the message router it and the actions are supposed to talk to. It routes messages received to the appropriate action (page-type messages) or directly to the message router (all other types). Receptionists also do other things, for example, adding to the page received back from the action any information that is common to all pages.
1888
1889There are different ways of providing an interface to \gs\ , from web based CGI style (using servlets) to Java GUI applications. These different interfaces require slightly different responses from a receptionist, so we provide several standard types of receptionist.
1890
1891Receptionist: This is the most basic receptionist. The page it returns consists of the original request, and the response from the action it was sent to. Methods preProcessRequest, and postProcessPage are called on the request and page, respectively, but in this basic receptionist, they don't do anything.
1892
1893TransformingReceptionist: This extends Receptionist, and overwrites postProcessPage to transform the page using XSLT. An XSLT is listed for each action in the receptionists configuration file, and this is used to transform the page. First, some display information, and configuration information is added to the page. Then it is transformed using the specified XSLT for the action, and returned.
1894
1895WebReceptionist: The WebReceptionist extends TransformingReceptionist. It doesn't do much else except some argument conversion. To keep the URLs short, parameters from the services are given shortnames, and these are used in the web pages.
1896
1897DefaultReceptionist: This extends WebReceptionist, and is the default one for \gsiii\ servlets. Due to the page design, some extra information is needed for each page: some metadata about the current collection. The receptionist sends a describe request to the collection to get this, and appends it to the page before transformation using XSLT.
1898
1899NZDLReceptionist: (do we want to talk about this?) This is an example of a custom receptionist. For a look-alike nzdl.org system, even more information is needed for each page, namely the list of classifiers available from the ClassifierBrowse service.
1900
1901By default, the LibraryServlet uses DefaultReceptionist. However, there is a servlet init-param called \gst{receptionist} which can be set to make the servlet use a different one.
1902
1903\subsubsection{Collection specific formatting}\label{sec:collformat}
1904get format info, transform gsf->xsl. transform xml->html
1905
1906configuration params are passed in to the transformation
1907\subsubsection{CGI arguments}
1908
1909
1910\subsubsection{Page action}\label{sec:pageaction}
1911
1912PageAction is responsible for displaying kinds of information pages, such as the home page of the library, or the home page of a collection, or the help and preferences pages. These pages are not associated with specific services like the other page types. In general, the data comes from describe requests to various modules.
1913The different pages are requested using the subaction argument. For the 'home' page, a 'describe' request is sent to the MessageRouter---this returns a list of all the collections, services, serviceClusters and sites known about. For each collection, its metadata is retrieved via a 'describe' request. This metadata is added into the previous result, which is then added into the page. For the 'about' page, a \gst{describe} request is sent to the module that the about page is about: this may be a collection or a service cluster. This returns a list of metadata
1914and a list of services.
1915
1916To get an external html page embedded into a greenstone collection, i.e. a two frame page, with the top frame containing the collection header and navigation bar, and the second frame containg the external page, use subaction html.
1917A url would look like
1918a=p\&amp;sa=html\&amp;c=collname\&amp;url=externalurl
1919
1920\subsubsection{Query action}\label{sec:queryaction}
1921
1922The basic URL is \gst{a=q\&s=TextQuery\&c=demo\&rt=d/r}.
1923There are three query services which have been implemented: TextQuery, FieldQuery, and AdvancedFieldQuery. These are all handled in the same way by query action.
1924For each page, the service description is requested from the service of the current collection (via a describe request). This is currently done every time the query page is
1925displayed, but should be cached. The description includes a list of the parameters available for the query, such as case/stem, max num docs to return, etc. If the request type (rt) parameter is set to d for display, the action only needs to display the form, and this is the only request to the service. Otherwise, the submit button has been pressed, and a query request to the TextQuery service is sent. This has all the parameters from the URL put into the parameter list. A list of document identifiers
1926is returned. A followup query is sent to the MetadataRetrieve service of the collection: the content includes the list of
1927documents, with a request for some of their metadata. Which metadata to retrieve is determined by looking through the XSLT that will be used to transform the page. The service description and query result are combined into a page of XML, which is returned to the Receptionist.
1928
1929\subsubsection{Applet action}\label{sec:appletaction}
1930
1931There are two types of request to the applet action: \gst{a=a \& rt=d\/} and
1932\gst{a=a \& rt=r\/}. The value \gst{rt=d\/} means ``display the applet.'' A
1933\gst{describe} request is sent to the service, which returns the \gst{<applet>} HTML element. The transformation file \gst{applet.xsl} embeds this
1934into the page, and the servlet returns the HTML.
1935
1936The value \gst{rt=r} signals a request from the applet. A process request containing all the parameters is sent to the applet service. The result contains an appletData element, which contains a single element - this element is returned
1937directly to the applet, in XML. No transformation is done.
1938Because the AppletAction doesn't know or care anything about the applet data, it can work with any applet-service pair.
1939
1940Note that the applet HTML may need to know the name of the \gst{library}
1941program. However, that name is chosen by the person who installed the software
1942and will not necessarily be ``library''. To get around this, the applet can
1943put a parameter called ``library'' into the applet data with a null value:
1944\begin{quote}\begin{gsc}\begin{verbatim}
1945<PARAM NAME='library' VALUE=''/>
1946\end{verbatim}\end{gsc}\end{quote}
1947When the AppletAction encounters this parameter it inserts the name of the
1948current library servlet as its value.
1949
1950\subsubsection{Document action}\label{sec:documentaction}
1951
1952DocumentAction is responsible for displaying a document to the user. The display might involve some metadata and/or text for a document or part of a document. For hierarchical documents, a table of contents may be shown, while for paged documents (those with a single linear list of sections), next and previous page buttons may be shown. These different display types require different information about the document. Depending on the arguments, DocumentAction will send requests to several services: DocumentMetadataRetrieve, DocumentStructureRetrieve and DocumentContentRetrieve.
1953
1954A basic display, for example, Title and text, involves a metadata request to get the Title, and a content request to get the text. Hierarchical table of contents display requires a structure request. If the entire contents is to be displayed, the parameter \gst{structure=entire} would be sent in the request. Otherwise, parameters \gst{structure=ancestors}, \gst{structure=children} and possibly \gst{structure=siblings} may be used, depending in the position of the current node in the document. These return a hierarchical structure of nodes, containing ancestor nodes, child nodes and sibling nodes, respectively.
1955For paged display, the structure is not actually needed. A structure request is still sent, but this time it requests some information, rather the structure itself. The information requested includes the number of siblings and the current position of the current node, or the number of children (if the current node is the root of the document).
1956
1957Metadata may be requested for the current node, or for any nodes in the structure, and content also. The metadata and content are added into the appropriate nodes in the structure hierarchy, and this is returned as the page data.
1958
1959\subsubsection{XML Document action}\label{sec:xmldocumentaction}
1960
1961XMLDocumentAction is a little different to the standard DocumentAction. It operates in two modes, \gst{text} and \gst{toc}. In \gst{text} mode, it will retrieve the content of the current document node using a DocumentContentRetrieve request. In \gst{toc} mode, it retrieves the entire table of contents for the document using a DocumentStructureRetrieve request. Either mode may also retrieve metadata for the current section or each section in the table of contents.
1962
1963\subsubsection{GS2Browse action}\label{sec:browseaction}
1964
1965GS2BrowseAction is for displaying Greenstone 2 style classifiers.
1966\subsubsection{System action}\label{sec:systemaction}
1967
1968SystemAction allows for manual reconfiguration of various components at run-time. There is no interactive web-page displaying the options, it merely turns a set of CGI arguments into an XML system request. The response from a system request is a message which is displayed to the user.
1969
1970\begin{table}
1971\caption{Configure CGI arguments}
1972\label{tab:system-cgi}
1973{\footnotesize
1974\begin{tabular}{ll}
1975\hline
1976\bf arg & \bf description\\
1977\hline
1978a=s & system action\\
1979sa=c$|$a$|$d & type of system request: c (configure), a (add/activate), \\
1980& d (delete/deactivate) \\
1981c=demo & the request will go to this collection/servicecluster \\
1982& instead of the message router\\
1983ss=collectionList & subset for configure: only reconfigure this part.\\
1984& For the MessageRouter, can be serviceClusterList, serviceList, \\
1985& collectionList, siteList.\\
1986& For a collection/cluster, can be metadataList or serviceList.\\
1987sn=demo & \\
1988st=collection& \\
1989\hline
1990\end{tabular}}
1991\end{table}
1992
1993
1994\subsection{Other code information}
1995
1996Greenstone has a set of Utility classes, which are briefly described in Table~\ref{tab:utils}.
1997
1998\begin{table}[h]
1999\caption{The utility classes in org.greenstone.gsdl3.util}
2000\label{tab:utils}
2001{\footnotesize
2002\begin{tabular}{lp{3.75in}}
2003\hline
2004\bf Utility class & \bf Description\\
2005\hline
2006CollectionClassLoader & ClassLoader that knows about a collection's resource directory \\
2007DBInfo & Class to hold info from GDBM database entry \\
2008Dictionary & wrapper around a Resource Bundle, providing strings with parameters\\
2009GDBMWrapper & Wrapper for GDBM database. Uses JavaGDBM\\
2010GSConstants & holds some constants used for servlet arguments and configuration variables\\
2011GSEntityResolver & an EntityResolver which can be used to find resources such as DTDs\\
2012GSFile & class to create all \gs\ file paths e.g. used to locate configuration files, XSLT files and collection data. \\
2013GSHTML & provides convenience methods for dealing with HTML, e.g. making strings HTML safe\\
2014GSParams & contains names and default values for interface parameters\\
2015NZDLParams & a subclass of GSParams which holds default service parameters too, necessary for the classic style interface.\\
2016GSPath & used to create, examine and modify message address paths\\
2017GSSQL & contains static strings for all the SQL table/field names\\
2018GSStatus & some static codes for status messages\\
2019GSXML & lots of methods for extracting information out of \gs\ XML, and creating some common types of elements. Also has static Strings for element and attribute names used by \gs\ .\\
2020GSXSLT & some manipulation functions for \gs\ XSLT\\
2021GlobalProperties & Holds the global properties (from global.properties) \\
2022MacroResolver & Used with replace elements in collection configuration files, replaces a macro or string with another string, metadata or text from a dictionary\\
2023GS2MacroResolver & MacroResolver for GS2 collections, that uses the GDBM database\\
2024Misc & miscellaneous functions\\
2025MyNodeList & A simple implementation of an XML NodeList\\
2026OID & class to handle \gs\ (2) OIDs\\
2027GS3OID & subclass of OID to handle \gsiii\ OIDs\\
2028Processing & Runs an external process and prints the output from the process \\
2029SQLQuery & contains a connection to a SQL database, along with some methods for accessing the data, such as converting MG numbers to and from Greenstone OIDs.\\
2030XMLConverter & provides methods to create new Documents, parse Strings or Files into Documents, and convert Nodes to Strings\\
2031XMLTransformer & methods to transform XML using XSLT \\
2032XSLTUtil & contains static methods to be called from within XSLT \\
2033\hline
2034\end{tabular}}
2035\end{table}
2036
2037\newpage
2038\section{Collection building architecture}\label{sec:develop-build}
2039**** GEORGE ****
2040how building actually works\\
2041the building structure/architecture\\
2042modules API\\
2043
2044\newpage
2045\section{Developing \gsiii\ : Adding new features}\label{sec:new-features}
2046
2047\subsection{Creating new services}\label{sec:new-services}
2048
2049*inherit from ServiceRack - abstract base class. this handles the main process method, determines the service name and request type. if request type is describe, and to is empty, it returns a list of services (short\_service\_info) which is initialized in the configure method. a describe request to a particular service results in getServiceDescription being called, which must be supplied by the subclass.
2050other request types (process) get sent to processXXX methods, where XXX is the service name.
2051
2052* what methods are expected
2053
2054*service type responses expected
2055
2056*a browse type service must also implement servicenameMetadataRetrieve service.
2057
2058* should a metadata retrieval service advertise what metadata is available??
2059
2060standard service type vs new service type - standard needs some xml response syntax.
2061
2062\subsection{creating new actions/pages}\label{sec:new-pages}
2063
2064\subsection{new interfaces}\label{sec:new-interfaces}
2065
2066It is easy to create new interfaces to \gsiii. Here we are talking about interfaces other than those to display in typical browser.
2067
2068Handheld devices: Use the standard servlet setup, but with a different set of XSLT files to format the pages for small screens, or use WML.
2069
2070Java GUI Interface: There are couple of alternatives. Depending on what you want to display in the GUI, you could talk to either a Receptionist or a MessageRouter. The library classes can be set up and compiled into the GUI program.
2071Talking to a Receptionist will give you access to pages of XML. It is likely that the standard Receptionist class would be used - this doesn't transform the data to HTML. Queries such as ``give me the home page of a collection'' and ``do the following search'' can be issued. All the data needed for the result view is returned. Queries are quite simple, but are limited to what kinds of Actions are available in the library.
2072Talking to a MessageRouter requires a bit more effort on the part of the GUI program, but results in greater flexibility. The kinds of queries that can be issued are individual units of action, such as ``describe yourself'', ``search'', ``retrieve the content for this document''. More than one request may need to be made for a particular feature of the GUI. However you can ask for any combination of data available in the system, you are not relying on Actions. What you will implement though, may be a lot like the Action code in terms of request sequences.
2073
2074Interfaces in other programming languages: Because the communication is all XML based, other interfaces can talk to the Java library if a communication protocol is set up. This could be done using SOAP for example. Like for Java GUI interfaces, the program could talk to a Receptionist or to a MessageRouter.
2075e.g. Java interface. where you can interface to. MR vs Receptionist. different receptionists. e.g., handheld - using servlet, transforming recpt, but new set of XSLT Java program other program - talk to recpt but just get back XML data for pages. Java gui - just talk to MR, do all processing itself.
2076
2077Remote interfaces: remote interfaces can be set up in the same way as above, using a communication protocol between the interface, and the library program.
2078
2079\subsection{Adding new classifiers}\label{sec:new-classifiers}
2080*** GEORGE ***
2081\subsection{Adding new plugins}\label{sec:new-plugins}
2082*** GEORGE ***
2083
2084\subsection{New types of collections}\label{sec:new-coll-types}
2085
2086There are two types of standard \gs\ collections: collections built with the \gsiii\ building system, and collections that are imported from \gsii\ . There are many options to collection building but it is conceivable that these options don't meet the needs of all collection builders. \gsiii\ has an ability to use any type of collection you can come up with, assuming some Java code is provided.
2087
2088There are four levels of customization that may be needed with new collections: service, collection, interface XSLT, and action levels. We will use the example collections that come with \gs\ to describe these different levels.
2089
2090Firstly, new service classes need to be written to provide the functionality to search/browse/whatever the collection. If the services have similar interfaces and functionality to the standard services, this may be all that is needed. For example, the \gsii\ MGPP collections were the first to be served in \gsiii\ . When we came to do \gsii\ MG collections, all we had to do was write some new service classes that interacted with MG instead of MGPP. Because these collections used the same type of services, this was all we had to do. The format of the configuration files was similar, they just specified MG serviceRack classes rather than MGPP ones.
2091
2092The XML Sample Texts (gberg) collection, however, was done quite differently to the standard collections. New services were provided to search the database (built with Lucene) and to provide the documents and parts of documents (using XSLT to transform the raw XML files). The collectionConfig file had some extra information in it: a list of the documents in the collection along with their Titles. Because the standard collection class has no notion of document lists, a new class was created (org.greenstone.gsdl3.collection.XMLCollection). This class is basically the same as a standard collection class except that it looks for and stores in memory the documentList from the collectionConfig file.
2093
2094To tell \gs\ to load up a different type of collection class, we use another configuration file: etc/collectionInit.xml. This specifies the name of the collection class to use.
2095Currently, this is all that is specified in that file, but you may want to add parameters for the class etc.
2096
2097\gst{<collectionInit class="XMLCollection"/>}
2098
2099The display for the collection is also quite different. The home page for the collection displays the list of documents. To achieve this, the describe response from the collection had to include the list, and a new XSLT was written for the collection that displayed this. Collection XSLT should be put in the transform directory of the collection\footnote{These are currently only used when running \gs\ in a non-distributed fashion, but it will be added in properly at some stage}.
2100
2101Document display is significantly different to standard \gs\ . There are two modes of display: table of contents mode, and content mode. Clicking on a document link from the collection home page takes the user to the table of contents for the collection. Clicking on one of the sections in the table of contents takes them to a display of that section. To facilitate this, not only do we need new XSLT files , we also needed a new action. XMLDocumentAction was created, that used two subactions, toc and text, for the different modes of display.
2102
2103The Receptionist was told about this new action by the addition of the following element to the interfaceConfig.xml file:
2104
2105\begin{gsc}\begin{verbatim}
2106<action name='xd' class='XMLDocumentAction'>
2107 <subaction name='toc' xslt='document-toc.xsl'/>
2108 <subaction name='text' xslt='document-content.xsl'/>
2109</action>
2110\end{verbatim}\end{gsc}
2111
2112XSLT files are linked to subactions rather than the action as a whole. The collection supplies the two XSLT files written appropriately for the data it contains.
2113
2114All links that link to the documents have to be changed to use the xd action rather than the standard d action. These include the links from the home page, and the links from query results.
2115
2116Querying of the collection is almost the same as usual. The query service provides a list of parameters, does the query and then sends back a list of document identifiers. The standard query action was fine for this collection. The change occurs in the way that the results are displayed---this is accomplished using a format statement supplied in the collectionConfig file inside the search node.
2117
2118\begin{gsc}\begin{verbatim}
2119<search>
2120 <format>
2121 <gsf:template match="documentNode">
2122 <xsl:param name="collName"/>
2123 <xsl:param name="serviceName"/>
2124 <td>
2125 <b><a href="{$library_name}?a=xd&amp;sa=text&amp;c={$collName}&
2126 amp;d={@nodeID}&amp;p.a=q&amp;p.s={$serviceName}">
2127 <xsl:choose>
2128 <xsl:when test="metadataList/metadata[@name='Title']">
2129 <gsf:metadata name="Title"/>
2130 </xsl:when>
2131 <xsl:otherwise>(section)</xsl:otherwise>
2132 </xsl:choose>
2133 </a>
2134 </b> from <b><a href="{$library_name}?a=xd&amp;sa=toc&amp;
2135 c={$collName}&amp;d={@nodeID}.rt&amp;p.a=q&amp;p.s={$serviceName}">
2136 <gsf:metadata name="Title" select="root"/></a></b>
2137 </td>
2138 </gsf:template>
2139 </format>
2140</search>
2141\end{verbatim}\end{gsc}
2142
2143Instead of displaying an icon and the Title, it displays the Title of the section and the title of the document. Both of these are linked to the document: the section title to the content of that section, the document title to the table of contents for the document. Because these require non-standard arguments to the library, these parts of the template are written in XSLT not \gs\ format language. As is shown here it is perfectly feasible to write a format statement that includes XSLT mixed in with \gs\ format elements.
2144
2145The document display uses CSS to format the output---these are kept in the collection and specified in the collections XSLT files. The documents also specify DTD files. Due to the way we read in the XML files, Tomcat sometimes has trouble locating the DTDs. One option is to make all the links absolute links to files in the collection folder, the other option is to put them in \gs\ 's DTD folder greenstone3/resources/dtd.
2146
2147\subsection{The Classic Interface}
2148
2149The library seen at \gst{http://www.greenstone.org/greenstone3/nzdl} is like a mirror to \gst{http://www.nzdl.org}---it aims to present the same collections, in the same way but using \gsiii\ instead of \gsii\ . It uses a new site (nzdl) with the classic interface. The web.xml file had a new servlet entry in it to specify the combination of nzdl site and classic interface.
2150
2151The site was created by making a directory called nzdl in the sites folder. A siteConfig file was created. Because it is running on Linux, we were able to link to all the collections in the old \gs\ installation. The convert\_coll\_from\_gs2.pl script was run over all the collections to produce the new XML configuration files.
2152
2153The classic interface was created to be used by this site (and is now a standard part of Greenstone).
2154In many cases, creating a new interface just requires the new images and XSLT to be added to the new directory(see Sections~\ref{sec:sites-and-ints} and \ref{sec:interface-customise}). This classic interface required a bit more customization.
2155
2156The standard \gsiii\ navigation bar lists all the services available for the collection. In \gsii\ , the navigation bar provides the search option, and the different classifiers. This is not service specific, but hard coded to the search and classifiers. The XSLT that produces the navigation bar needed to be altered to produce this. But also, a new Receptionist was needed.
2157The standard receptionist (DefaultReceptionist) gathers a little bit of extra information for each page of XML before transforming it: this is the list of services for the collection and their display information, allowing the services to be listed along the navigation bar. This is information that is needed by every page (except for the library home page) and therefore is obtained by the receptionist instead of by each action. The nzdl interface needed a bit more information than this: for the ClassifierBrowse service, if there was one, the list of classifiers and their display elements must be obtained. So a new Receptionist (NZDLReceptionist) was written that inherited from DefaultReceptionist, and added this new info into the page.
2158
2159One of the servlet initialization parameters is the receptionist class: this was added to the servlet definition in the web.xml file so that the LibraryServlet would load up the right receptionist class.
2160
2161
2162\newpage
2163\section{Distributed \gs\ }\label{sec:distributed}
2164
2165\gs\ is designed to run in a distributed fashion. One \gs\ installation can talk to several sites on different computers. This requires some sort of communication protocol. Any protocol can be used, currently we have a simple SOAP protocol.
2166
2167more explanation..
2168
2169\begin{figure}[h]
2170 \centering
2171 \includegraphics[width=4in]{remote} %5.8
2172 \caption{A distributed digital library configuration running over several servers}
2173 \label{fig:remote}
2174\end{figure}
2175
2176We have used Apache Axis SOAP implementation. This is run as a servlet in Tomcat. Axis is setup during installation of Greenstone. For more details about SOAP in Greenstone, see Appendix~\ref{app:soap}. Debugging soap is described in Appendix~\ref{app:soap-debug}.
2177
2178\subsection{Serving a site using soap}
2179
2180A webs service for localsite comes predeployed, but if you want to setup a service for another site, run \gst{ant soap-deploy-site}. This will prompt you for the sitename (its directory name), and a siteuri - a unique identifier for the web service. Tomcat needs to be running for this to work.
2181
2182The ant target deploys the service for the site specified. A resource file (\gst{<sitename>.wsdd}) is created which is used to specify the service. It can be found in \gst{greenstone3/resources/soap}, and is generated from \gst{site.wsdd.template}.
2183
2184The address of the new SOAP service will be tomcatserver-address/greenstone3/services/sitename, for example, www.greenstone.org/greenstone3/services/localsite.
2185
2186\subsection{Connecting to a site web service}
2187
2188There are two ways to use a remote site. First, if you have a local site running, then the site can also connect to other remote sites. In the siteConfig.xml file, you need to add a site element into the siteList element.
2189
2190For example, to get siteA to talk to siteB, you need to deploy a SOAP server on siteB, then add a \gst{<site>} element to the \gst{<siteList>} of siteA's \gst{siteConfig.xml} file (in \gst{greenstone3/web/sites/siteA/siteConfig.xml}).
2191
2192In the \gst{<siteList>} element, add the following (substituting the chosen site uri for siteBuri):
2193
2194\begin{gsc}\begin{verbatim}
2195<site name="siteBuri"
2196 address="http://localhost:8080/greenstone3/services/siteBuri"
2197 type="soap"/>
2198\end{verbatim}\end{gsc}
2199
2200(Note that localhost and 8080 should be changed to the values you entered when installing \gsiii. Localhost will only work for servers on the smae machine.).
2201
2202If you have changed the siteConfig.xml file for a site that is running, it will need to be reconfigured. Either restart Tomcat, or reconfigure through a URL:
2203e.g. \gst{http://localhost:8080/greenstone3/library?a=s\&sa=c}.
2204Several sites can be connected to in this manner.
2205
2206The second option is if you have a receptionist set up on a machine where you have no site, and you only want to connect to a single remote site. Instead of using site\_name in the servlet initialisation parameters (in greenstone3/web/WEB-INF/web.xml), you can specify remote\_site\_name, remote\_site\_type and remote\_site\_address. A communicator object will be set up instead of a MessageRouter and the receptionist will talk to the communicator.
2207
2208\appendix
2209
2210\newpage
2211\section{Using \gsiii\ from CVS}\label{app:cvs}
2212
2213[TODO: need to make sure building stuff is in here]
2214
2215\gsiii\ is also available via CVS. You can download the latest version of the code. This is not guaranteed to be stable, in fact it is likely to be unstable. The advantage of using CVS is that you can update the code and get the latest fixes.
2216
2217Note that you will need the Java 2 SDK, version 1.4.0 or higher, and Ant (Apache's Java based build tool, http://ant.apache.org) installed.
2218
2219To check out the \gs\ code, use:
2220
2221\begin{quote}\begin{gsc}\begin{verbatim}
2222cvs -d :pserver:cvs\[email protected]:2402/usr/local/
2223 global-cvs/gsdl-src co -P greenstone3
2224\end{verbatim}\end{gsc}\end{quote}
2225
2226If you need it, the password for anonymous CVS access is \gst{anonymous}. Note that some older versions of CVS have trouble accessing this repository due to the port number being present. We are using version 1.11.1p1.
2227
2228Greenstone is built and installed using Ant (Apache's Java based build tool,
2229http://ant.apache.org). You will need a Java Development
2230Environment (1.4 or higher), and Ant installed to use Greenstone. You can download Ant from \\\gst{http://ant.apache.org/bindownload.cgi}.
2231
2232In the greenstone3 directory, you can run 'ant' which will give you a help message.
2233Running 'ant -projecthelp' gives a list of the targets that you can run - these
2234do various things like compile the source code, startup the server etc.
2235
2236The README.txt file has up-to-date instructions for installing from CVS. Briefly, for a first time install, run 'ant prepare install'.
2237
2238The file build.properties contains various parameters that can be set by the user. Please check these settings before running the installation process. The install process will ask you if you accept the properties before starting.
2239For a non-interactive version of the install, run
2240ant -Dproperties.accepted=yes install
2241
2242To log the output in build.log, run
2243ant -Dproperties.accepted=yes -logfile build.log install
2244
2245Under Linux, Java and C/C++ compilation is carried out. For windows, since Visual Studio is not a standard component, only Java compilation is carried out. Pre-compiled binaries are provided for the C/C++ components (source packages and Greenstone 2 style building). If you have Visual Studio installed (version 6), you can run the compile-windows-c++ targets to compile the code locally. (Don't forget to setup the Visual Studio environment first, by running, e.g. C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT or equivalent.)
2246
2247
2248Note: \gst{gs3-setup} sets the environment variables \gst{CLASSPATH, PATH, JAVA\_HOME} and needs to be done in a shell before doing collection building etc.
2249
2250To startup or shutdown the library (includes the Tomcat server and MYSQL server), the commands are (run from the greenstone3 directory):
2251
2252\begin{quote}\begin{gsc}
2253ant start \\
2254ant stop
2255\end{gsc}\end{quote}
2256
2257If you want to restart only Tomcat, run \gst{ant restart-tomcat}.
2258
2259\newpage
2260\section{Tomcat}\label{app:tomcat}
2261
2262Tomcat is a servlet container, and Greenstone 3 runs as a servlet inside it.
2263
2264The file \gst{\gsdlhome/packages/tomcat/conf/server.xml} is the Tomcat configuration file. The installation process adds a context for \gsiii\ servlets (\gst{\gsdlhome/web})---this tells Tomcat where to find the web.xml file, and what URL (\gst{/greenstone3}) to give it. Anything inside the context directory is accessible via Tomcat\footnote{can we use .htaccess files to restrict access??}. For example, the index.html file that lives in \gst{\gsdlhome/web} can be accessed through the URL \gst{localhost:8080/greenstone3/index.html}. The demo collection's images can be accessed through \\
2265\gst{localhost:8080/greenstone3/sites/localsite/collect/demo/images/}.
2266
2267
2268Greenstone sets up Tomcat to run on port 8080 by default. To change this, you can edit the tomcat.port property in build.properties. If you do this before installing Greenstone, then running 'ant install' will use the new port number. If you want to change it later on, shutdown tomcat, run 'ant reconfigure-server-settings', then when you restart tomcat it will use the new port.
2269
2270Note: Tomcat must be shutdown and restarted any time you make changes in the following for those changes to take effect:
2271\begin{bulletedlist}
2272\begin{gsc}
2273\item \gsdlhome/web/WEB-INF/web.xml
2274\item \gsdlhome/packages/tomcat/conf/server.xml
2275\end{gsc}
2276\item any classes or jar files used by the servlets
2277\end{bulletedlist}
2278\noindent Note: stdin and stdout for the servlets (on Linux) both go to\\
2279\gst{\gsdlhome/packages/tomcat/logs/catalina.out}
2280
2281On startup, the servlet loads in its collections and services. If the site or collection configuration files are changed, these changes will not take effect until the site/collection is reloaded. This can be done through the reconfiguration messages (see Section~\ref{sec:runtime-config}), or by restarting Tomcat.
2282
2283We have set up Tomcat to follow symlinks. To disable this feature, remove the \gst{<Resources>} element from the greenstone3 context in \\\gst{\$GSDL3HOME/packages/tomcat/conf/server.xml}:
2284
2285\begin{quote}\begin{gsc}
2286<Context path="/greenstone3" docBase="\$GSDL3HOME/web" debug="1" \\
2287reloadable="true">\\
2288 <Resources allowLinking='true'/>\\
2289</Context>\\
2290\end{gsc}\end{quote}
2291
2292By default, Tomcat allows directory listings. To disable this, change the 'listings' parameter to false in the default servlet definition, in Tomcat's web.xml file (\gst{\$GSDL3HOME/packages/tomcat/conf/web.xml}):
2293
2294We have set the greenstone context to be reloadable. This means that if a class or resource file in web/WEB-INF/lib or web/WEB-INF/classes changes, the servlet will be reloaded. This is useful for development, but should be turned off for production mode (set the reloadable attribute to false).
2295
2296Tomcat uses a Manager to handle HTTP session information. This may be stored between restarts if possible. To use a persistent session handling manager, uncomment the \gst{<Manager>} element in \\
2297\gst{\$GSDL3HOME/packages/tomcat/conf/server.xml}. For the default manager, session information is stored in the work directory:\\
2298\gst{\$GSDL3HOME/packages/tomcat/work/Catalina/localhost/greenstone3/SESSIONS.ser}. Delete this file to clear the cached session info. Note that Tomcat needs to be shutdown to delete this file.
2299
2300\subsection{Proxying Tomcat with apache}
2301
2302Instead of incorporating servlet support into your existing web server, an easy alternative is to proxy Tomcat. The \gst{http://www.greenstone.org/greenstone3} site uses apache to proxy Tomcat. ProxyPass and ProxyPassReverse directives need to be added to the Virtualhost description for the www.greenstone.org server.
2303
2304\begin{quote}\begin{gsc}
2305<VirtualHost xx.xx.xx.xx>\\
2306ServerName www.greenstone.org\\
2307...\\
2308ProxyPass /greenstone3 http://puka.cs.waikato.ac.nz:8080/greenstone3\\
2309ProxyPassReverse /greenstone3 http://puka.cs.waikato.ac.nz:8080/greenstone3\\
2310</VirtualHost>\\
2311\end{gsc}\end{quote}
2312
2313In our example, the \gsiii\ servlet can be accessed at \\
2314\gst{http://www.greenstone.org/greenstone3/library}, instead of at \\
2315\gst{http://puka.cs.waikato.ac.nz:8080/greenstone3/library}, which is not publically accessible.
2316
2317\subsection{Running Tomcat behind a proxy}
2318
2319Almost everything works fine when Tomcat is running behind a proxy. The only time this causes trouble is if the servlet itself needs to make external HTTP connections. We do this in the infomine demo collection for example. One of the service classes sends HTTP requests to the infomine database at riverside. Since this is going through the proxy, a username and password is needed. It is not sufficient to prompt the user for a password because they are unlikely to have a password for the particular proxy that Tomcat is using. What we have done at present is to put a proxy element in the siteConfig.xml file. Here you have to enter a suitable username and password for the proxy server. Unfortunately these are entered in plain text. And the file is viewable via the servlet. So we need a better solution.
2320
2321\newpage
2322\section{SOAP}\label{app:soap}
2323
2324Greenstone uses the Apache Axis SOAP implementation for distributed communications. Axis runs as a servlet inside Tomcat, and SOAP web services can be deployed by this Axis servlet. The Greenstone installation process sets up Axis for Tomcat, and predeploys the localsite web service.
2325
2326To deploy a SOAP service for other sites, run \gst{ant soap-deploy-site}
2327
2328This will prompt you for the sitename (the site's directory name), and a unique URI for the site. It creates a new SOAPServer class for the site \\(\gst{\$GSDL3HOME/src/java/org/greenstone/gsdl3/SOAPServer<sitename>.java}), creates a resource file for deployment (\gst{\$GSDL3HOME/resources/soap/<sitename>.wsdd}), and then tries to deploy the service.
2329
2330Information about deployed services is maintained between Tomcat sessions---you only need to deploy something once. To undeploy a site, use \gst{ant undeploy-soap-site}.
2331
2332The axis services can be accessed at \gst{localhost:8080/greenstone3/index.jsp}.
2333
2334\subsection{Debugging SOAP}\label{app:soap-debug}
2335
2336If you need to debug the SOAP stuff for some reason, or just want to look at the SOAP messages that are being passed back and forth, you can use the TCP monitor. This intercepts messages coming in to one port, displays them, and passes them to another port.
2337To run it, type:
2338
2339\begin{quote}\gst{java -cp \$GSDL3HOME/web/WEB-INF/lib/axis.jar \\
2340org.apache.axis.utils.tcpmon}
2341\end{quote}
2342
2343The listen port is the port that you want the monitor to be listening on. It should 'act as' a Listener, with target hostname 127.0.0.1 (localhost), and target port the port that Tomcat is running on (8080). You need to modify the address used to talk to the SOAP service. For example, if you want to monitor traffic between the gateway site and the localsite SOAP server, you will need to edit gateway's siteConfig.xml file and change the port number (in the site element) to whatever you have chosen as the listen port.
2344
2345For example, in the Admin panel of TCPMonitor the Target Hostname might be 127.0.0.1, and the Target Port # 8080. Set the Listen Port # to be a different port, such as 8070 and click Add. This produces a new tab panel where you can see the messages arriving at port 8070 before being forwarded to port 8080. You then need to set your test request from your SOAP application to arrive at port 8070 and you will see copies of the messages in the new tab panel.
2346
2347
2348\newpage
2349\section{Tidying up the formatting for imported Greenstone 2 collections}\label{app:gs2tidy}
2350
2351\subsection{Format statements: \gsii\ vs \gsiii\ }\label{app:gs2format}
2352The following table shows the \gsii\ format elements, and their equivalents in \gsiii\
2353\begin{table}[h]
2354\caption{\gsiii\ equivalents of \gsii\ format statements}
2355{\footnotesize
2356\begin{tabular}{ll}
2357\hline
2358\bf \gsii\ & \bf \gsiii\ \\
2359\hline
2360\gst{[Text]} & \gst{<gsf:text/>} \\
2361\gst{[num]} & \gst{<gsf:metadata name='docnum'/>}\\
2362\gst{[link][/link]} & \gst{<gsf:link></gsf:link>} or \\
2363& \gst{<gsf:link type='document'></gsf:link>}\\
2364\gst{[srclink][/srclink]} & \gst{<gsf:link type='source'></gsf:link>}\\
2365\gst{[icon]} & \gst{<gsf:icon/>} or \\
2366& \gst{<gsf:icon type='document'/>}\\
2367\gst{[srcicon]} & \gst{<gsf:icon type='source'/>}\\
2368\gst{[Title]} (metadata) & \gst{<gsf:metadata name='Title'/>} or \\
2369& \gst{<gsf:metadata name='Title' select='current'/>}\\
2370\gst{[parent:Title]} & \gst{<gsf:metadata name='Title' select='parent' />}\\
2371\gst{[parent(All):Title]} & \gst{<gsf:metadata name='Title' select='ancestors'/>}\\
2372\gst{[parent(Top):Title]} & \gst{<gsf:metadata name='Title' select='root' />}\\
2373\gst{[parent(All': '):Title]} & \gst{<gsf:metadata name='Title' select='ancestors'}\\
2374& \gst{ separator=': ' />}\\
2375\gst{[sibling(All': '):Title]} & \gst{<gsf:metadata name='Title' multiple='true'} \\
2376& \gst{ separator=': ' />}\\
2377\gst{\{Or\}\{[dc.Title],} & \gst{<gsf:choose-metadata>}\\
2378\gst{ [dls.Title], [Title]\}}& \gst{ <gsf:metadata name='dc.Title'/>}\\
2379& \gst{ <gsf:metadata name='dls.Title'/>}\\
2380& \gst{ <gsf:metadata name='Title'/>}\\
2381& \gst{</gsf:choose-metadata>}\\
2382\gst{\{If\}\{[parent:Title],} & \gst{<gsf:choose-metadata>}\\
2383\gst{ [parent:Title], [Title]\}}& \gst{ <gsf:metadata name='Title' select='parent'/>}\\
2384& \gst{ <gsf:metadata name='Title'/>}\\
2385& \gst{</gsf:choose-metadata>}\\
2386\gst{\{If\}\{[Subject],} & \gst{<gsf:switch>}\\
2387\gst{ <td>[Subject]</td>\}}& \gst{ <gsf:metadata name='Subject'/>}\\
2388& \gst{ <gsf:when test='exists'>} \\
2389& \gst{ <td><gsf:metadata name='Subject'/></td>}\\
2390& \gst{ </gsf:when></gsf:switch>}\\
2391\hline
2392\end{tabular}}
2393\end{table}
2394\subsection{Cleaning up macros}\label{app:gs2replace}
2395
2396Here we show some of the replace items that have been used for Greenstone 2 collections.
2397
2398Getting rid of silly backslashes:
2399\begin{gsc}\begin{verbatim}
2400<replace scope='text' macro="\\?\\\(" text="\("/>
2401\end{verbatim}\end{gsc}
2402
2403Macro resolving using resource bundles and metadata:
2404\begin{gsc}\begin{verbatim}
2405<replace scope='metadata' macro="_magazines_" bundle="NZDLMacros"
2406 key="Magazines"/>
2407<replace scope='all' macro='_thisOID_' metadata='archivedir'/>
2408<replace macro="_httpcollimg_"
2409 text="sites/localsite/collect/folktale/index/assoc"/>
2410\end{verbatim}\end{gsc}
2411
2412Fixing up broken external links:
2413\begin{gsc}\begin{verbatim}
2414<replace macro="_httpextlink_&amp;rl=1&amp;href="
2415 text="?a=d&amp;c=folktale&amp;s0.ext=1&amp;d="/>
2416<replace macro="_httpextlink_&amp;rl=0&amp;href="
2417 text="?a=p&amp;sa=html&amp;c=folktale&amp;url="/>
2418\end{verbatim}\end{gsc}
2419
2420These two examples show how to deal with Greenstone 2's external link macros. The first one is for a 'relative' external link. In this case, the links are like URL's but they actually refer to Greenstone internal documents. So the Greenstone 3 link is to the document, but with parameter s0.ext signifying that the d argument will need translating before retrieving the content.
2421The second example is a truly external link. This is translated into a HTML type page action, where the URL is presented as a frame along with the collection header in a separate frame.
2422
2423Sometimes we need to add in macros to be resolved in a second step:
2424\begin{gsc}\begin{verbatim}
2425<replace macro="_iconpdf_" scope="metadata"
2426 text="&lt;img title='_texticonpdf_' src='interfaces/default/images/ipdf.gif'/&gt;"/>
2427<replace macro="_texticonpdf_" scope="metadata" bundle="interface_classic"
2428 key="texticonpdf"/>
2429\end{verbatim}\end{gsc}
2430
2431\end{document}
Note: See TracBrowser for help on using the repository browser.