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.
Created attachment 30078 [details] [review] 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) Verify your note shows up on the detail pages in staff and OPAC 3) Verfiy note also shows up on the result pages in staff and OPAC The dissertation note can be hidden using the following CSS: OpacUserCSS: display:none; } IntranetUserCSS: display:none; } 4) Verify CSS works and all looks like before...
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
Created attachment 30687 [details] [review] 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...
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?
Created attachment 30688 [details] [review] [SIGNED-OFF] 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
(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 :)
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>
Patch pushed to master. Thanks Katrin!