8000 import: SLSP by rerowep · Pull Request #3517 · rero/rero-ils · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

import: SLSP #3517

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,10 @@ def marc21_to_subjects_6XX(self, key, value):
'610': False,
'611': True
}
if tag_key in ['610', '611']:
subject['conference'] = conference_per_tag[tag_key]
elif tag_key in ['600t', '610t', '611t']:
# if tag_key in ['610', '611']:
# subject['conference'] = conference_per_tag[tag_key]
# elif tag_key in ['600t', '610t', '611t']:
Comment on lines +392 to +394
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you could removed these lines

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, but maybe you need it for local entities.

if tag_key in ['600t', '610t', '611t']:
creator_tag_key = tag_key[:3] # to keep only tag: 600, 610, 611
creator = remove_trailing_punctuation(
build_string_from_subfields(
Expand Down
0