1 / 39

Web Z: A Non-Programmers Perspective

Web Z: A Non-Programmers Perspective. Sandy Card State University of New York at Binghamton March 23, 1999. The Goals. Provide patrons with a web-based version of our online catalog. Provide patrons with a means to request materials from our remote storage facility.

israel
Download Presentation

Web Z: A Non-Programmers Perspective

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Web Z: A Non-ProgrammersPerspective Sandy Card State University of New York at Binghamton March 23, 1999

  2. The Goals • Provide patrons with a web-based version of our online catalog. • Provide patrons with a means to request materials from our remote storage facility. • Provide a vehicle for ILL requests. HOWEVER • The product must provide no less information than our character based version.

  3. The Timeline • OCLC training -- October 27-28, 1998 • WebZ loaded in test--November 3, 1998--NT Server 4.0 • Deadline for WebZ to go live-- Jan. 25, 1999 (8:00--start of Spring semester) • Implementation--Jan. 25, 1999 (7:55 a.m.)

  4. Assumptions • Our most important database is our own NOTIS catalog • If a change would enhance NOTIS but not other databases, that would be acceptable

  5. What we started with: NOTIS site release 6.5

  6. At present we have 39 databases--6 catalog based and 33 article based

  7. WebZ--Out of the box:Sample monographic record

  8. WebZ--Out of the box - sample serial record

  9. Needs Assessment • What are your formatting needs • Learn file structure • Basic understanding of Java code • Develop patience or sense of humor

  10. Tools for needs assessment WinGrep TextPad dumpgadget

  11. Dumpgadget supplied formatting needs by showing what fields that were provided by our Z39.50 server were not showing in our display • Series not showing, nor hot • 856 not hot • No 780 or 785 fields • Subject headings search by subdivision • Lack of specifically labeled notes fields • 7xx fields not separate from authors • No ability to separate fields out by indicator

  12. WinGrep--shows file structure

  13. WebZ File Structure MarcCatalogFmt MarcArticleFmt MarcCatalogFullFmt MarcArticleFullFmt MarcCatalogBriefFmt MarcArticleBriefFmt MarcCatalogBookmarkFmt MarcArticleBookmarkFmt plus some specific structures for databases: MarcPapersFrst….. MarcContentsFrst…..

  14. TextPad • Handles multiples files • Text editor • Complies the java files--easier than using the jdk

  15. To make changes to the MarcCatalogFmt.java files • Decide which of the fields that are given behaves most like the field you need included. • Ex. To make the 785 show as “continued by” you need to find a field that matches the requirements. • Is repeatable • Not hot • Has a line break • This leaves out 1xx, 245, 250, 260, 300, 4xx(didn’t want to mess with them), 6xx (or them either) • The closest field that behaves like a 785 is the 505 contents note, as odd as this seems

  16. Once you have chosen a field to replicate, you need to replace every instance of it in the file. For example replace each instance of “contents” with “continues”. It is critical that you are consistent in your usage of spelling and capitalization. Change the MARC tags wherever in the file they appear, for ex. change the 505 in contents to a 780 in continues, changing the using the right subfields

  17. Using TextPad’s search command, find each instance of whatever field you have chosen to replace. There are 2 major sections to change in the MarcCatalogFmt.java file Defining the variable...

  18. and Creating the method Part of method missing due to space limitations

  19. You also need to change the label of the field in the method “labelmaker” to whatever is appropriate for your new field.

  20. The Addcontinues method is then added to the MarcCatalogFullFmt.java file And to the MarcCatalogBookmarkFullFmt

  21. Other changes may need to be made to a method such as the problem we had with serials, where for us, a 8xx field would not show unless there was also a 440. Since 8xx’s are paired with 490’s we did not have most series showing. Changing the method to reflect or instead of and solved this problem.

  22. We had solved most of our problems, even though we had hit a wall with our biggest problem--the subject heading redirected search. We had one week left and were ready to put our system into production when ….

  23. Enter Tim and UMich’s version of the MarcCatalogFmt files. Tim very generously provided us with a copy of his files to try and they proved very easy to work with--especially for a non-programmer.

  24. We made a few changes to Tim’s files. Added new fields for: 590 -- Local notes (was in “notes”) 538 -- Technical notes (was in “notes”) 550 -- Issuing body notes (was in “notes” 775 -- Other editions available 776 -- Issued in other form 242 -- Translated title

  25. Added some very local fields we wanted: 852 -- Other holdings 866 -- Library has 952 -- RLIN holdings

  26. With our NOTIS system we had trouble with redirected author searches. People with no dates and really dead people (those with closed dates) were fine. People with open dates caused our system to return a no hits result.

  27. We were able to easily correct this by simply making the |d in the field not hot. This is easily accomplished by simply putting a colon before the delimiter that you want to exclude from the redirect.

  28. We also chose to make series hot links. This became a problem with attributes and we were able to make the title and corporate series into links, but not the name series. We split the series out and ….

  29. Monographic record on NOTIS

  30. WebZ--Out of the box - sample serial record

  31. Serial record on NOTIS Some fields removed for viewing

  32. WorldCat subject headings from dumpgadget -- note multiple |a in field Need to set up it’s own package using the oclc files

  33. Create new packages edu > suny > fmt > obi edu > worldcat > fmt > obi

  34. Change the methods called in the java files And you’re done

  35. MarcArticleFmt files Databases using MarcArticleFmt files were adequate for our purposes. Databases don’t use the complicated MARC description that Catalog records use. Our database files do not use LC headings

  36. Changes • Add 300 tag for pages • finished writing issuing body tag • changed 260 tag back to one line (published) rather than place, publisher, year • added 945’s to GPO monthly catalog • add 590 local notes • change 690 to local subject heading • added ERIC no.

  37. 945’s (Gov. Info:) -- GPO Monthly Catalog

  38. Fields: Published Local subject(s)

More Related