Bug 38494 - Koha should consider authority heading use in cataloging
Summary: Koha should consider authority heading use in cataloging
Status: Pushed to main
Alias: None
Product: Koha
Classification: Unclassified
Component: MARC Authority data support (show other bugs)
Version: Main
Hardware: All All
: P3 enhancement
Assignee: Janusz Kaczmarek
QA Contact: Marcel de Rooy
URL:
Keywords: release-notes-needed
Depends on:
Blocks: 33296 38514
  Show dependency treegraph
 
Reported: 2024-11-20 12:56 UTC by Janusz Kaczmarek
Modified: 2025-03-20 16:23 UTC (History)
4 users (show)

See Also:
GIT URL:
Change sponsored?: Sponsored
Patch complexity: Small patch
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
25.05.00
Circulation function:


Attachments
Bug 38494: Add 'ConsiderHeadingUse' system preference (3.69 KB, patch)
2024-11-20 23:12 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (3.02 KB, patch)
2024-11-20 23:12 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Add 'ConsiderHeadingUse' system preference (3.74 KB, patch)
2024-11-20 23:16 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (3.07 KB, patch)
2024-11-20 23:17 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (4.18 KB, patch)
2024-11-21 16:41 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Add 'ConsiderHeadingUse' system preference (3.75 KB, patch)
2024-11-21 16:45 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (3.08 KB, patch)
2024-11-21 16:45 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Add 'ConsiderHeadingUse' system preference (3.80 KB, patch)
2024-11-22 08:38 UTC, Roman Dolny
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (3.13 KB, patch)
2024-11-22 08:38 UTC, Roman Dolny
Details | Diff | Splinter Review
Bug 38494: Add 'ConsiderHeadingUse' system preference (3.80 KB, patch)
2025-02-11 17:46 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (3.25 KB, patch)
2025-02-11 17:46 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: Add 'ConsiderHeadingUse' system preference (3.90 KB, patch)
2025-03-14 10:14 UTC, Marcel de Rooy
Details | Diff | Splinter Review
Bug 38494: Koha should consider authority heading use in cataloging (3.34 KB, patch)
2025-03-14 10:14 UTC, Marcel de Rooy
Details | Diff | Splinter Review
Bug 38494: (QA follow-up) Add comment and extend pref desc (2.02 KB, patch)
2025-03-14 10:15 UTC, Marcel de Rooy
Details | Diff | Splinter Review
Bug 38494: (follow-up) Text amendments clarifying that it is about MARC21 records (4.84 KB, patch)
2025-03-20 15:21 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review
Bug 38494: (follow-up) Text amendments clarifying that it is about MARC21 records (5.94 KB, patch)
2025-03-20 15:28 UTC, Janusz Kaczmarek
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Janusz Kaczmarek 2024-11-20 12:56:11 UTC
In MARC 21 authority records, three bytes (008/14-16) indicate what the heading can be used for (main/added entry, subject entry, series entry).  Koha should be able to respect the record's intended use in authority search during cataloging, provided that the authority file is well formed.  Also, we should be able to decide between more strict but correct behavior and current lax behavior.
Comment 1 Phil Ringnalda 2024-11-20 21:38:37 UTC
I think so too :)

I can't remember whether I actually looked at whether you could do it with LinkerOptions rather than yet another pref, though.

*** This bug has been marked as a duplicate of bug 33296 ***
Comment 2 Janusz Kaczmarek 2024-11-20 23:11:09 UTC
This is not a duplicate to Bug 33296.  Automated linker will be the next step.  This is for cataloging authority finder, which is, technically, not connected with the linker.
Comment 3 Janusz Kaczmarek 2024-11-20 23:12:57 UTC
Created attachment 174863 [details] [review]
Bug 38494: Add 'ConsiderHeadingUse' system preference

Add new system preference 'ConsiderHeadingUse' to by able to consider
the intended use of authority records (008/14-16) during cataloging
and linking.
Comment 4 Janusz Kaczmarek 2024-11-20 23:12:59 UTC
Created attachment 174864 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch
Comment 5 Janusz Kaczmarek 2024-11-20 23:16:58 UTC
Created attachment 174865 [details] [review]
Bug 38494: Add 'ConsiderHeadingUse' system preference

Add new system preference 'ConsiderHeadingUse' to be able to consider
the intended use of authority records (008/14-16) during cataloging
and linking.

Sponsored-by: Ignatianum University in Cracow
Comment 6 Janusz Kaczmarek 2024-11-20 23:17:00 UTC
Created attachment 174866 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch

Sponsored-by: Ignatianum University in Cracow
Comment 7 Katrin Fischer 2024-11-21 09:20:10 UTC
I need to investigate a bit more how it represents in MARC for us, but I know that for GND records you can use the same records for both main/added and subject. So we don't have that differentiation in our authority file I believe.
Comment 8 Janusz Kaczmarek 2024-11-21 10:37:10 UTC
(In reply to Katrin Fischer from comment #7)
> I need to investigate a bit more how it represents in MARC for us, but I
> know that for GND records you can use the same records for both main/added
> and subject. So we don't have that differentiation in our authority file I
> believe.

Of course, it is totally correct.  In such a case the authority record should have 008/14-15 = 'aa'. 

I am aware that there are libraries with authority files of low quality, self/automatically generated, not paying attention to 008.  Therefor this feature should be optional, with default = 'do not'. 

For us it is essential because we are using more than one authority file for subject heading and only one for main/added headings.  It happens that in different authority files there are names of equal form but only one file should be used for main/added entries.  And this is controlled by 008/14-16.

The story is in some sense analogous to the use of different thesauri (cf. Bug 30280). 

Official MARC 21 documentation regarding this topic: https://www.loc.gov/marc/authority/ad008.html
Comment 9 Janusz Kaczmarek 2024-11-21 16:41:15 UTC
Created attachment 174897 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch

Sponsored-by: Ignatianum University in Cracow
Comment 10 Janusz Kaczmarek 2024-11-21 16:45:16 UTC
Created attachment 174898 [details] [review]
Bug 38494: Add 'ConsiderHeadingUse' system preference

Add new system preference 'ConsiderHeadingUse' to be able to consider
the intended use of authority records (008/14-16) during cataloging
and linking.

Sponsored-by: Ignatianum University in Cracow
Comment 11 Janusz Kaczmarek 2024-11-21 16:45:19 UTC
Created attachment 174899 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch

Sponsored-by: Ignatianum University in Cracow
Comment 12 Roman Dolny 2024-11-22 08:38:52 UTC
Created attachment 174914 [details] [review]
Bug 38494: Add 'ConsiderHeadingUse' system preference

Add new system preference 'ConsiderHeadingUse' to be able to consider
the intended use of authority records (008/14-16) during cataloging
and linking.

Sponsored-by: Ignatianum University in Cracow
Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Comment 13 Roman Dolny 2024-11-22 08:38:54 UTC
Created attachment 174915 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch

Sponsored-by: Ignatianum University in Cracow
Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Comment 14 Janusz Kaczmarek 2025-02-11 17:46:31 UTC
Created attachment 177744 [details] [review]
Bug 38494: Add 'ConsiderHeadingUse' system preference

Add new system preference 'ConsiderHeadingUse' to be able to consider
the intended use of authority records (008/14-16) during cataloging
and linking.

Sponsored-by: Ignatianum University in Cracow
Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Comment 15 Janusz Kaczmarek 2025-02-11 17:46:33 UTC
Created attachment 177745 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch

Sponsored-by: Ignatianum University in Cracow
Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>
Comment 16 Janusz Kaczmarek 2025-02-11 17:47:04 UTC
Rebased.
Comment 17 Marcel de Rooy 2025-03-07 09:12:33 UTC
Could you please explain:
+        my $biblio_tag  = substr( $index, 4, 3 );
+            my $heading_use_search_field =
+                  $biblio_tag =~ /^[127]/ ? 'Heading-use-main-or-added-entry'
+                : $biblio_tag =~ /^6/     ? 'Heading-use-subject-added-entry'
+                : $biblio_tag =~ /^[48]/  ? 'Heading-use-series-added-entry'

How does index look? Couldnt find it so quickly.
Maybe needing some comment here?

+            if ($heading_use_search_field) {
+                push @marclist,  $heading_use_search_field;
+                push @and_or,    'and';
+                push @excluding, '';
+                push @operator,  'is';
+                push @value,     'a';
+            }
What if it is marked No attempt to code? Thats something else as Not appropiate?

Please clarify. Changing status for need of feedback. Thx.
Comment 18 Janusz Kaczmarek 2025-03-07 09:22:27 UTC
008/14-16 is explained in https://www.loc.gov/marc/authority/ad008.html

I consider that:
Heading use-main or added entry = 100, 110, 111, 130, 240, 700, 710, 711, 730
Heading use-subject added entry = 600, 610, 611 ...
Heading use-series added entry = 440 (if anybody is still using it), 800, 810, 811, 830

If the auth data is not precise, i.e. in 008/14-16 no attempt to code is used then the new syspref ConsiderHeadigUse should remain off (the default setting).
Comment 19 Janusz Kaczmarek 2025-03-07 09:34:58 UTC
(In reply to Marcel de Rooy from comment #17)
> How does index look? Couldnt find it so quickly.

You can see 'index' parameter in the url of auth-finder.pl, e.g.:

localhost:8081/cgi-bin/koha/authorities/auth_finder.pl?source=biblio&authtypecode=PERSO_NAME&index=tag_100_subfield_a_545156_359309&value_mainstr=&value_main=

In this case: index=tag_100_subfield_a_545156_359309

so substr($index, 4, 3) gives you the biblio tag.
Comment 20 Marcel de Rooy 2025-03-14 10:07:25 UTC
(In reply to Janusz Kaczmarek from comment #19)
> (In reply to Marcel de Rooy from comment #17)
> > How does index look? Couldnt find it so quickly.
> 
> You can see 'index' parameter in the url of auth-finder.pl, e.g.:
> 
> localhost:8081/cgi-bin/koha/authorities/auth_finder.
> pl?source=biblio&authtypecode=PERSO_NAME&index=tag_100_subfield_a_545156_3593
> 09&value_mainstr=&value_main=
> 
> In this case: index=tag_100_subfield_a_545156_359309
> 
> so substr($index, 4, 3) gives you the biblio tag.

Thx. I should have known that :)
Comment 21 Marcel de Rooy 2025-03-14 10:07:57 UTC
(In reply to Janusz Kaczmarek from comment #18)
> 008/14-16 is explained in https://www.loc.gov/marc/authority/ad008.html
> 
> I consider that:
> Heading use-main or added entry = 100, 110, 111, 130, 240, 700, 710, 711, 730
> Heading use-subject added entry = 600, 610, 611 ...
> Heading use-series added entry = 440 (if anybody is still using it), 800,
> 810, 811, 830
> 
> If the auth data is not precise, i.e. in 008/14-16 no attempt to code is
> used then the new syspref ConsiderHeadigUse should remain off (the default
> setting).

Thanks.
Will add a follow-up to get this info in too.
Comment 22 Marcel de Rooy 2025-03-14 10:14:55 UTC
Created attachment 179315 [details] [review]
Bug 38494: Add 'ConsiderHeadingUse' system preference

Add new system preference 'ConsiderHeadingUse' to be able to consider
the intended use of authority records (008/14-16) during cataloging
and linking.

Sponsored-by: Ignatianum University in Cracow
Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Comment 23 Marcel de Rooy 2025-03-14 10:14:58 UTC
Created attachment 179316 [details] [review]
Bug 38494: Koha should consider authority heading use in cataloging

In MARC 21 authority records, three bytes (008/14-16) indicate what the
heading can be used for (main/added entry, subject entry, series entry).
Koha should be able to respect the record's intended use in authority
search during cataloging, provided that the authority file is well
formed.  Also, we should be able to decide between more strict but
correct behavior and current lax behavior.

Test plan:
----------
1. Apply the patch; updatedatabase ; restart_all
2. Set the ShowHeadingUse system preference to ‘Show’
3. Go to the Cataloging editor and open the authority finder plugin for
   the 100 field. Search for Peter. With standard ktd test data you should
   get 9 results, some with ‘v’ before Main/Added Entry, some with ‘x’.
   These with ‘x’ are not to be used in this context, provided you use a
   well-formed authority file
4. Set ConsiderHeadingUse system preference to ‘Do’
5. Repeat p. 3.  You should get now only 4 Peters – those with ‘v’
   before Main/Added Entry (008/14 = ‘a’)
6. You can repeat the test for subject headings (6XX) and series
   headings (sometimes you would have to modify the test data, e.g. there
   are few authority records with 008/16 = ‘a’ (series use)
7. This should work equally with Zebra and with Elasticsearch

Sponsored-by: Ignatianum University in Cracow
Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Comment 24 Marcel de Rooy 2025-03-14 10:15:00 UTC
Created attachment 179317 [details] [review]
Bug 38494: (QA follow-up) Add comment and extend pref desc

See BZ comment18.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Comment 25 Katrin Fischer 2025-03-20 07:44:42 UTC
Some comments:

1) It appears this is a MARC21 only feature and it should be highlighted as such in the release notes and in the system preference description.

2) I think "no" should be 0 here?

+              default: no
+              choices:
+                  1: Do
+                  0: "Don't"

Please review and follow-up.
Comment 26 Janusz Kaczmarek 2025-03-20 08:44:46 UTC
(In reply to Katrin Fischer from comment #25)
> Some comments:
> 
> 1) It appears this is a MARC21 only feature and it should be highlighted as
> such in the release notes and in the system preference description.
> 
> 2) I think "no" should be 0 here?
> 
> +              default: no
> +              choices:
> +                  1: Do
> +                  0: "Don't"
> 
> Please review and follow-up.

Thank Katrin for reviewing. I am not sure, tbh. In authorities.pref I just followed a pattern from neighboring preferences. The default is expressed there with yes/no (I am not sure what impact and where these defaults may have -- in a fast code review I was not able to find any).

As to the MARC21 note in preference description, I may add one, but again, the twin systempreference ConsiderHeadingUse which I looked at when creating this one does not mention MARC21. So in this case, shouldn't both rather be corrected in a separate follow up? What do you think?
Comment 27 Katrin Fischer 2025-03-20 14:25:13 UTC
(In reply to Janusz Kaczmarek from comment #26)
> (In reply to Katrin Fischer from comment #25)
> > Some comments:
> > 
> > 1) It appears this is a MARC21 only feature and it should be highlighted as
> > such in the release notes and in the system preference description.
> > 
> > 2) I think "no" should be 0 here?
> > 
> > +              default: no
> > +              choices:
> > +                  1: Do
> > +                  0: "Don't"
> > 
> > Please review and follow-up.
> 
> Thank Katrin for reviewing. I am not sure, tbh. In authorities.pref I just
> followed a pattern from neighboring preferences. The default is expressed
> there with yes/no (I am not sure what impact and where these defaults may
> have -- in a fast code review I was not able to find any).
> 
> As to the MARC21 note in preference description, I may add one, but again,
> the twin systempreference ConsiderHeadingUse which I looked at when creating
> this one does not mention MARC21. So in this case, shouldn't both rather be
> corrected in a separate follow up? What do you think?

Hmmm, I believe maybe the default was supposed to be used with the editor, but since we also add an entry to systempreferences it just default to the database value? I suppose we can ignore that then.

I think adding a note to both would be great as a quick follow-up here if you don't mind!
Comment 28 Janusz Kaczmarek 2025-03-20 14:51:56 UTC
(In reply to Katrin Fischer from comment #27)
> I think adding a note to both would be great as a quick follow-up here if
> you don't mind!

No problem. In this bug (ConsiderHeadingUse is a separate think), or (preferable) in a new bug?
Comment 29 Katrin Fischer 2025-03-20 14:58:11 UTC
I'd prefer here as a follow-up (text change, I'll QA)
Comment 30 Janusz Kaczmarek 2025-03-20 15:21:21 UTC
Created attachment 179537 [details] [review]
Bug 38494: (follow-up) Text amendments clarifying that it is about MARC21 records

Refers to ConsiderHeadingUse and ShowHeadingUse systempreferences.
Comment 31 Janusz Kaczmarek 2025-03-20 15:28:03 UTC
Created attachment 179543 [details] [review]
Bug 38494: (follow-up) Text amendments clarifying that it is about MARC21 records

Refers to ConsiderHeadingUse and ShowHeadingUse systempreferences.
Comment 32 Katrin Fischer 2025-03-20 16:23:47 UTC
Pushed for 25.05!

Well done everyone, thank you!