Skip to content

Commit 4165cb8

Browse files
author
Rob Myers
committed
Add publication date flag for issue 118.
1 parent 8404925 commit 4165cb8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

wordpress-plugin/js/results.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
"ii": {"title": "Understanding the § <a href=\"https://www.law.cornell.edu/uscode/text/17/304#d\">304(d)</a> termination window",
2929
"description": "When a transfer made before 1978 of a work created before 1989 is eligible for a termination, it will be under section <a href=\"https://www.law.cornell.edu/uscode/text/17/304\">304</a> of the Copyright Act. Under section <a href=\"https://www.law.cornell.edu/uscode/text/17/304#d\">304(d)</a>, the termination window opens 75 years after copyright was secured and lasts for five years."},
3030
"iii": {"title": "Understanding the § <a href=\"https://www.law.cornell.edu/uscode/text/17/203\">203</a> termination window",
31-
"description": "When a transfer made in or after 1978 is eligible for a termination, it will be under section <a href=\"https://www.law.cornell.edu/uscode/text/17/203\">203</a> of the Copyright Act. In these circumstances, the termination window opens 35 years after the transfer and lasts for five years. However, if the author granted publication rights, the test is a little different. In those cases, the five-year termination window opens either 35 years from publication or 40 years from the transfer—whichever comes first."}},
31+
"description": "When a transfer made in or after 1978 is eligible for a termination, it will be under section <a href=\"https://www.law.cornell.edu/uscode/text/17/203\">203</a> of the Copyright Act. In these circumstances, the termination window opens 35 years after the transfer and lasts for five years. However, if the author granted publication rights, the test is a little different. In those cases, the five-year termination window opens either 35 years from publication or 40 years from the transfer—whichever comes first."},
32+
"iv": {"title": "Understanding publication dates under § 203",
33+
"description": "For terminations under section 203, the Copyright Office calculates the \"date of publication\" as the date the work is first published <i>under the grant being terminated</i> (which may or may not be the date the work was published for the first time). When the first publication date under the grant is different than the first publication date, the date of the first publication under the grant is the \"triggering publication date\" that is used to calculate the notice and termination windows."}},
3234
"G": {"title": "Uncertain terminability",
3335
"i": {"title": "Terminability Caveat",
3436
"description": "U.S. Copyright Office guidance suggests works copyrighted between October 27, 1937 and October 26, 1939 may be terminable under section <a href=\"https://www.law.cornell.edu/uscode/text/17/304#d\">304(d)</a>, but the statute is unclear. Consider seeking legal advice."},

wordpress-plugin/js/rules.js

+3
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ Rules.section304Analysis = function () {
151151

152152
Rules.section203Analysis = function () {
153153
var result = 's2q2a';
154+
if (typeof Values.grant_pub_year !== 'undefined') {
155+
Rules.addFlag('F.iv');
156+
}
154157
var year_to_use = Values.grant_pub_year || Values.pub_year;
155158
if (Values.k_year > 1977) {
156159
Rules.addFlag('F.iii');

0 commit comments

Comments
 (0)