Skip to content
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

Feature/lxl 4279 #1325

Merged
merged 32 commits into from
Nov 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
7ff888c
Add more generic titles
kwahlin Oct 26, 2023
6442599
Remove commented-out code used for testing stuff
kwahlin Oct 26, 2023
8945881
Don't try to correct illustrator/translator
kwahlin Oct 26, 2023
a1be6da
Add cleanup scripts to globalchanges-1.33.sh
kwahlin Oct 26, 2023
d8d4dab
Make sure PrimaryContribution comes first in contribution
kwahlin Oct 27, 2023
223edd9
Reorganize scripts
kwahlin Oct 27, 2023
ce3620c
Make 9pu follow illustrator to instance
kwahlin Oct 27, 2023
a882345
Add missing lifeSpan to local agent if found in cluster
kwahlin Oct 30, 2023
b9e319d
Make all subtitles non-distinguishing
kwahlin Nov 1, 2023
387f11a
Fix work title shape (exclude subtitle)
kwahlin Nov 1, 2023
31748bd
Remove redundant method
kwahlin Nov 1, 2023
1a262c4
Raise too-large-result limit
kwahlin Nov 1, 2023
7006456
Remove irrelevant title components
kwahlin Nov 7, 2023
8369cb9
Remove unnecessary condition since checked elsewhere
kwahlin Nov 7, 2023
b9d5c1a
Include work titles when clustering
kwahlin Nov 7, 2023
468f705
Exit bash script immediately if Whelktool script fails
kwahlin Nov 7, 2023
0b5fc5c
Handle unexpected datatype in instanceOf
kwahlin Nov 7, 2023
514b011
Add missing exclamation mark
kwahlin Nov 7, 2023
655a1e7
Change clustering order
kwahlin Nov 9, 2023
2430113
Add missing -D parameter
kwahlin Nov 9, 2023
317f75a
Save only modified
kwahlin Nov 9, 2023
c66b4db
Avoid IndexOutOfBoundsException
kwahlin Nov 9, 2023
29073f2
Avoid null in tryAddLifeSpanToLocalAgent
kwahlin Nov 9, 2023
c0476ff
Update path to relators
kwahlin Nov 9, 2023
42267aa
Fix broken linkedAgentToLifeSpan
kwahlin Nov 10, 2023
cff2043
Avoid repeated period in work mainTitle
kwahlin Nov 13, 2023
1eeaff5
Make subtitle/titleRemainder distinguishing again
kwahlin Nov 13, 2023
3756a0e
Restore structure
kwahlin Nov 13, 2023
7f90c3c
Save before reporting to make sure no data is changed before saving
kwahlin Nov 15, 2023
4fce9f4
Extend ignored-subtitles.txt
kwahlin Nov 15, 2023
c3b7a8e
Require that PrimaryContribution has an agent in SVSK selection
kwahlin Nov 15, 2023
c86d9ee
Add explanation + example on when to drop only part of subtitle
kwahlin Nov 16, 2023
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
Prev Previous commit
Next Next commit
Handle unexpected datatype in instanceOf
kwahlin committed Nov 14, 2023
commit 0b5fc5c6492f3ef50124093d6c0c1b8936b8841f
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ class Doc {
void setData() {
if (mainEntity()['instanceOf']) {
instanceData = mainEntity()
workData = instanceData['instanceOf']
workData = asList(instanceData['instanceOf']).find()
} else {
workData = mainEntity()
}