Changeset 5999 for trunk/gsdl3


Ignore:
Timestamp:
2003-11-25T16:25:18+13:00 (20 years ago)
Author:
kjdon
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/web/sites/localsite/collect/gberg/README

    r5959 r5999  
    1 This collection is a demonstration collection for Greenstone3 and lucene. The aim is to demonstrate that you can have pretty much whatever you want as a collection as long as you have suitable services for it. The collection has not been built using Greenstone2 or Greenstone3 style building. Instead, simple java programs using the Lucene API have been created to do teh indexing, and document retrieval is simply done from the original (actually slightly modified) XML documents.
     1This collection is a demonstration collection for Greenstone3 and lucene. The aim is to demonstrate that you can have pretty much whatever you want as a collection as long as you have suitable services for it. The collection has not been built using Greenstone2 or Greenstone3 style building. Instead, simple java programs using the Lucene API have been created to do the indexing, and document retrieval is simply done from the original (actually slightly modified) XML documents.
    22
    3 To build this collection, you need to javac the files in the java directory.
    4 Then in the gberg directory run
     3BUILDING
     4
     5To build this collection (assuming you are starting from the gberg directory where this file is located):
     6
     7cd java
     8javac *.java
     9cd ..
    510java -classpath $CLASSPATH:./java BuildXMLColl $GSDL3HOME/web/sites/localsite gberg
    6 Then rename the building directory to index, and copy the buildConfig.xml file from the etc directory into the index directory. (I never got around to generating this from the build programs).
     11mv building index
     12cp etc/buildConfig.xml index
     13cp import/*.dtd $GSDL3HOME/resources/dtd/
     14
     15ABOUT THIS COLLECTION
    716
    817This collection uses some custom xslt files which are found in the transform directory. Because document display is handled differently, it uses xd for the document action. In the interface config file, the xd action has been added, mapping to XMLDocumentAction, with separate xsl stylesheets for toc and text subactions.
     
    2029document id, scope, tag name, gs3:id
    2130
    22 document id refers to the work, and is generated from the original documetn filename. eg origin.xml became origin.
     31document id refers to the work, and is generated from the original document filename. eg origin.xml becomes origin.
    2332
    2433XMLTagInfo provides lists of tags that are scopeable and indexable. Scopable tags are not necessarily indexed, but are recorded as part of the id as a scope. This is to speed up searching for the appropriate tag during retrieval. Scopeable tags should only occur once per document.
Note: See TracChangeset for help on using the changeset viewer.