Bug 12501 - Show Dissertation note (MARC21 502) in XSLT results
Summary: Show Dissertation note (MARC21 502) in XSLT results
Status: CLOSED FIXED
Alias: None
Product: Koha
Classification: Unclassified
Component: MARC Bibliographic data support (show other bugs)
Version: master
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Katrin Fischer
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-06-30 10:52 UTC by Katrin Fischer
Modified: 2015-06-04 23:33 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: Small patch
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments
Bug 12501: Show dissertation note (MARC21 502) in XSLT results (3.30 KB, patch)
2014-07-25 10:34 UTC, Katrin Fischer
Details | Diff | Splinter Review
Bug 12501: Show dissertation note (MARC21 502) in XSLT results (3.39 KB, patch)
2014-08-11 09:50 UTC, Katrin Fischer
Details | Diff | Splinter Review
[SIGNED-OFF] Bug 12501: Show dissertation note (MARC21 502) in XSLT results (3.52 KB, patch)
2014-08-11 12:18 UTC, Bernardo Gonzalez Kriegel
Details | Diff | Splinter Review
[PASSED QA] Bug 12501: Show dissertation note (MARC21 502) in XSLT results (3.58 KB, patch)
2014-08-15 18:12 UTC, Kyle M Hall
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Katrin Fischer 2014-06-30 10:52:24 UTC
Bug 9356 added 502 dissertation note to the staff and OPAC detail pages, but not to the result list. Information should also show up on the result list, as it has important information about the year and place of publication, especially if the book has not been published.
Comment 1 Katrin Fischer 2014-07-25 10:34:08 UTC Comment hidden (obsolete)
Comment 2 Bernardo Gonzalez Kriegel 2014-08-09 13:10:24 UTC
Added 502 data to a record, it shows on Detail view opac/staff, but not on
Results..

Another thing is that example CSS is missing it's target id/class
Comment 3 Katrin Fischer 2014-08-11 09:50:09 UTC Comment hidden (obsolete)
Comment 4 Katrin Fischer 2014-08-11 09:52:06 UTC
Hi Bernardo,

I amended the test plan a little and I think I have an idea about what went wrong when you tested: If you catalogued the 502 for testing this, you have to make sure the record got reindexed by Zebra in order to have the note show up in the results list. Hope that was it, could you try again please?
Comment 5 Bernardo Gonzalez Kriegel 2014-08-11 12:18:18 UTC Comment hidden (obsolete)
Comment 6 Bernardo Gonzalez Kriegel 2014-08-11 12:19:39 UTC
(In reply to Katrin Fischer from comment #4)
> I amended the test plan a little and I think I have an idea about what went
> wrong when you tested: If you catalogued the 502 for testing this, you have
> to make sure the record got reindexed by Zebra in order to have the note
> show up in the results list. Hope that was it, could you try again please?

Tried and works, I suppose the problem was the index :)
Comment 7 Kyle M Hall 2014-08-15 18:12:50 UTC
Created attachment 30860 [details] [review]
[PASSED QA] Bug 12501: Show dissertation note (MARC21 502) in XSLT results

Bug 9356 added the dissertation note from MARC21 502 to the staff
and OPAC detail pages. This patch adds it to the result list.

1) Catalog a record with 502
   Examples: http://www.loc.gov/marc/bibliographic/bd502.html
2) Important: Wait until the record got indexed by Zebra or
   index it manually.
3) Verify your note shows up on the detail pages in staff and OPAC
4) Verfiy note also shows up on the result pages in staff and OPAC

5) Hide the dissertation note from display:

OpacUserCSS:
.diss_note {
  display:none;
}

IntranetUserCSS:
.diss_note {
  display:none;
}

6) Verify CSS works and all looks like before...

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Work as describes, value can be hidden using css,
no koha-qa errors

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Comment 8 Tomás Cohen Arazi 2014-08-19 12:36:15 UTC
Patch pushed to master.

Thanks Katrin!