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

Update reporters and regexes #193

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion reporters_db/data/regexes.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"with_suffix": "$reporter $paragraph_marker_optional$page_with_commas_and_suffix",
"with_suffix#": "Paragraph cite with optional alpha character appended"
},
"single_volume": "(?:(?P<volume>1) )?$reporter $page",
"single_volume": "(?:(?P<volume>1) )?$reporter,? $page",
"year_included": {
"": "$volume $reporter \\((?P<year>1[789]\\d{2}|20\\d{2}),?\\) $page",
"#": "Citation that includes the volume year after the reporter '14 Haz. Reg. Pa. (1834) 10'"
Expand Down
41 changes: 37 additions & 4 deletions reporters_db/data/reporters.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,17 @@
},
"A.F.T.R.2d (RIA)": {
"end": null,
"regexes": [
"$full_cite",
"$volume_with_alpha_suffix $reporter $page"
],
"start": "1958-01-01T00:00:00"
}
},
"examples": [
"71A A.F.T.R.2d (RIA) 3011",
"42 A.F.T.R.2d (RIA) 6397"
],
"mlz_jurisdiction": [
"us:c;tax.court",
"us:c9;court.appeals"
Expand Down Expand Up @@ -6860,7 +6868,8 @@
}
},
"examples": [
"Dallam 504"
"Dallam 504",
"Dallam, 597"
],
"mlz_jurisdiction": [
"us:tx;supreme.court"
Expand Down Expand Up @@ -10067,9 +10076,17 @@
"editions": {
"Fulton County D. Rep.": {
"end": null,
"regexes": [
"$full_cite",
"$$volume_with_digit_suffix $reporter $page_with_letter"
],
"start": "1750-01-01T00:00:00"
}
},
"examples": [
"102-56 Fulton County D. Rep. 16B",
"96 Fulton County D. Rep. 1243"
],
"mlz_jurisdiction": [
"us:ga;supreme.court"
],
Expand Down Expand Up @@ -10353,9 +10370,15 @@
"editions": {
"Gilmer": {
"end": "1821-12-31T00:00:00",
"regexes": [
"$full_cite_single_volume"
],
"start": "1820-01-01T00:00:00"
}
},
"examples": [
"Gilmer 414"
],
"mlz_jurisdiction": [
"us:va;supreme.court"
],
Expand Down Expand Up @@ -14694,16 +14717,25 @@
"editions": {
"Litt. Sel. Cas.": {
"end": "1821-12-31T00:00:00",
"regexes": [
"$full_cite_single_volume"
],
"start": "1795-01-01T00:00:00"
}
},
"examples": [
"Litt. Sel. Cas. 119",
"Litt. Sel. Cas. (Ky.) 505",
"1 Litt. Sel. Cas., 388"
],
"mlz_jurisdiction": [
"us:ky;supreme.court"
],
"name": "Kentucky Reports, Littell's Selected Cases",
"variations": {
"Ky.(Lit.Sel.Cas.)": "Litt. Sel. Cas.",
"Lit.Sel.Ca.": "Litt. Sel. Cas."
"Lit.Sel.Ca.": "Litt. Sel. Cas.",
"Litt. Sel. Cas. (Ky.)": "Litt. Sel. Cas."
}
}
],
Expand Down Expand Up @@ -15577,13 +15609,14 @@
"McCahon": {
"end": "1868-12-31T00:00:00",
"regexes": [
"$volume_nominative ?$reporter, $page"
"$full_cite_single_volume"
],
"start": "1858-01-01T00:00:00"
}
},
"examples": [
"McCahon, 206"
"McCahon, 206",
"McCahon 166"
],
"mlz_jurisdiction": [
"us:ks;supreme.court"
Expand Down
Loading