dummied up a native catalog z-source config blob
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 16 Oct 2008 17:53:55 +0000 (17:53 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 16 Oct 2008 17:53:55 +0000 (17:53 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@10847 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm

index 6cc8efb..b40a866 100755 (executable)
@@ -121,6 +121,24 @@ sub query_services {
         }
     }
 
+    # Define the set of native catalog services
+    # XXX There are i18n problems here, but let's get the staff client working first
+    # XXX Move into the DB?
+    $hash->{'native-evergreen-catalog'} = {
+        attrs => {
+            title => {code => 'title', label => 'Title'},
+            author => {code => 'author', label => 'Author'},
+            subject => {code => 'subject', label => 'Subject'},
+            keyword => {code => 'keyword', label => 'Keyword'},
+            tcn => {code => 'tcn', label => 'TCN'},
+            isbn => {code => 'isbn', label => 'ISBN'},
+            issn => {code => 'issn', label => 'ISSN'},
+            publisher => {code => 'publisher', label => 'Publisher'},
+            pubdate => {code => 'pubdate', label => 'Pub Date'},
+            item_type => {code => 'item_type', label => 'Item Type'},
+        }
+    };
+
     return $hash;
 }