-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add f245 title splitting to title+subtitle if some of most common pat…
…terns match to title
- Loading branch information
Showing
19 changed files
with
151 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
test-fixtures/transform/convert/common/generate2xx/generate245/01/output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[ | ||
{ | ||
"tag": "245", "ind1": "0", "ind2": "0", | ||
"tag": "245", "ind1": "0", "ind2": " ", | ||
"subfields": [ | ||
{"code": "a", "value": "Dublin Core - MARC21 -konversio."} | ||
{"code": "a", "value": "Dublin Core."} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
test-fixtures/transform/convert/common/generate2xx/generate245/02/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"description": "Ind1=1 when do.contibutor.author or dc.creator information can be found.", | ||
"description": "Ind1=1 when dc.contibutor.author or dc.creator information can be found.", | ||
"only": false | ||
} |
4 changes: 2 additions & 2 deletions
4
test-fixtures/transform/convert/common/generate2xx/generate245/02/output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[ | ||
{ | ||
"tag": "245", "ind1": "1", "ind2": "0", | ||
"tag": "245", "ind1": "1", "ind2": " ", | ||
"subfields": [ | ||
{"code": "a", "value": "Dublin Core - MARC21 -konversio."} | ||
{"code": "a", "value": "Dublin Core."} | ||
] | ||
} | ||
] |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/05/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"$": { | ||
"schema": "dc", | ||
"element": "title", | ||
"value": "Dublin Core - MARC21 -conversion" | ||
} | ||
} | ||
] |
4 changes: 4 additions & 0 deletions
4
test-fixtures/transform/convert/common/generate2xx/generate245/05/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"description": "Splits title to title+subtitle from character \"-\"", | ||
"only": false | ||
} |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/05/output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"tag": "245", "ind1": "0", "ind2": " ", | ||
"subfields": [ | ||
{"code": "a", "value": "Dublin Core :"}, | ||
{"code": "b", "value": "MARC21 -conversion."} | ||
] | ||
} | ||
] |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/06/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"$": { | ||
"schema": "dc", | ||
"element": "title", | ||
"value": "Dublin Core: MARC21 -conversion" | ||
} | ||
} | ||
] |
4 changes: 4 additions & 0 deletions
4
test-fixtures/transform/convert/common/generate2xx/generate245/06/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"description": "Splits title to title+subtitle from character \":\"", | ||
"only": false | ||
} |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/06/output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"tag": "245", "ind1": "0", "ind2": " ", | ||
"subfields": [ | ||
{"code": "a", "value": "Dublin Core :"}, | ||
{"code": "b", "value": "MARC21 -conversion."} | ||
] | ||
} | ||
] |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/07/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"$": { | ||
"schema": "dc", | ||
"element": "title", | ||
"value": "Dublin Core! MARC21 -conversion" | ||
} | ||
} | ||
] |
4 changes: 4 additions & 0 deletions
4
test-fixtures/transform/convert/common/generate2xx/generate245/07/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"description": "Splits title to title+subtitle from character \"!\"", | ||
"only": false | ||
} |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/07/output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"tag": "245", "ind1": "0", "ind2": " ", | ||
"subfields": [ | ||
{"code": "a", "value": "Dublin Core! :"}, | ||
{"code": "b", "value": "MARC21 -conversion."} | ||
] | ||
} | ||
] |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/08/input.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"$": { | ||
"schema": "dc", | ||
"element": "title", | ||
"value": "Dublin Core? MARC21 -conversion" | ||
} | ||
} | ||
] |
4 changes: 4 additions & 0 deletions
4
test-fixtures/transform/convert/common/generate2xx/generate245/08/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"description": "Splits title to title+subtitle from character \"?\"", | ||
"only": false | ||
} |
9 changes: 9 additions & 0 deletions
9
test-fixtures/transform/convert/common/generate2xx/generate245/08/output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[ | ||
{ | ||
"tag": "245", "ind1": "0", "ind2": " ", | ||
"subfields": [ | ||
{"code": "a", "value": "Dublin Core? :"}, | ||
{"code": "b", "value": "MARC21 -conversion."} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters