Project

General

Profile

« Previous | Next » 

Revision 743

Modifications that change the package handling behavior of metacat. Package
membership is now determined by an identifier being used as either the subject
or object in a triple. One can not request arbitrary returndocs -- only
those types that have package information embedded can be "returndoctype"
document types. Right now only one "returndoctype" field can be provided.
This needs to be changed to support multiple potential returndoctype fields.

Packages are now defined by triple elements in the eml-dataset-2.0 module,
and so changes reflect this.

Added a new column (packagetype) to xml_relation that defines the document type
of the package for that record.

In addition, I changed the behavior of metacat queries when "back tracing" is
requested. If a "returndoc" element is present in the pathquery, then the
documents are searched, and any hits are traced back to the package with
which the hit document is linked, if it is of type returndoc. Thus, any
hit returns all of the package documents with which the hit document is
associated. If a hit does not have an associated package, no record is
returned for that hit (this is different from previous metacat behavior).
If no returndoc parameter is provided, all docs are searched and all hits
returned.

A new query parameter was added to pathquery that allows us to filter which
document types are searched (independent of the back tracing feature). If
one or more "filterdoctype" element is included, only documents which are
in that list of types will be searched. If you search for doctype A, but
request that doctype B be returned, only documents of type B that have a
package member of type A and match the search criteria will be returned.

To implement this I had to modify many html files, and change substantial
code in DBQuery, QuerySepcification, and MetaCatServlet.

These changes break the URL handling code that was present previously --
now all identifiers are assumed to be from the metacat system, not in
URL format. This probably needs to be revisited.

View differences:

xmltables.sql
235 235

  
236 236
CREATE TABLE xml_relation (
237 237
	relationid    NUMBER(20) PRIMARY KEY, -- unique id
238
	docid         VARCHAR2(250) ,         -- the docid of the package file
238
	docid         VARCHAR2(250),          -- the docid of the package file
239 239
	                                      -- that this relation came from
240
        packagetype   VARCHAR2(250),          -- the type of the package
240 241
	subject       VARCHAR2(512) NOT NULL, -- the subject of the relation
241
	subdoctype    VARCHAR2(128),         	-- the doctype of the subject
242
	subdoctype    VARCHAR2(128),          -- the doctype of the subject
242 243
	relationship  VARCHAR2(128)  NOT NULL,-- the relationship type
243 244
	object        VARCHAR2(512) NOT NULL, -- the object of the relation
244 245
	objdoctype    VARCHAR2(128),          -- the doctype of the object

Also available in: Unified diff