Skip to content

Commit 6592e2f

Browse files
author
Rob Myers
committed
Fix #84 - Change links in PDF for live site.
1 parent 329c665 commit 6592e2f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

template/result.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
<p>If you believe that you may have a right to terminate a transfer of copyright, you should consult a licensed attorney to confirm and evaluate whether and how to proceed. Neither Authors Alliance nor Creative Commons provide legal advice, and your use of the Termination of Transfer Tool does not create an attorney-client relationship.</p>
3232

33-
<p>For more information, check out the FAQ at <a href="https://labs.creativecommons.org/demos/termination-of-transfer">https://labs.creativecommons.org/demos/termination-of-transfer/</a> .</p>
33+
<p>For more information, check out the FAQ at <a href="https://rightsback.org/faq/">https://rightsback.org/faq/</a> .</p>
3434

3535
<p><b>Information Sheet Date:</b> {$date}</p>
3636

wordpress-plugin/js/pdf.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -51,27 +51,27 @@ PDF.append203Windows = function (details) {
5151
termination += Values.p_term_begin + '-' + Values.p_term_end;
5252
}
5353

54-
PDF.appendProperty(details, '&sect; 203 <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#notice_window" target="_blank">notice window</a>', notice);
55-
PDF.appendProperty(details, '&sect; 203 <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#termination_window" target="_blank">termination window</a>', termination);
54+
PDF.appendProperty(details, '&sect; 203 <a href="https://rightsback.org/glossary/#notice_window" target="_blank">notice window</a>', notice);
55+
PDF.appendProperty(details, '&sect; 203 <a href="https://rightsback.org/glossary/#termination_window" target="_blank">termination window</a>', termination);
5656
};
5757

5858
PDF.append304Windows = function (details) {
59-
PDF.appendProperty(details, '&sect; 304(c) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#notice_window" target="_blank">notice window</a> begins',
59+
PDF.appendProperty(details, '&sect; 304(c) <a href="https://rightsback.org/glossary/#notice_window" target="_blank">notice window</a> begins',
6060
Values.notice_begin);
61-
PDF.appendProperty(details, '&sect; 304(c) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#notice_window" target="_blank">notice window</a> ends',
61+
PDF.appendProperty(details, '&sect; 304(c) <a href="https://rightsback.org/glossary/#notice_window" target="_blank">notice window</a> ends',
6262
Values.notice_end);
63-
PDF.appendProperty(details, '&sect; 304(c) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#termination_window" target="_blank">termination window</a> begins',
63+
PDF.appendProperty(details, '&sect; 304(c) <a href="https://rightsback.org/glossary/#termination_window" target="_blank">termination window</a> begins',
6464
Values.term_begin);
65-
PDF.appendProperty(details, '&sect; 304(c) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#termination_window" target="_blank">termination window</a> ends',
65+
PDF.appendProperty(details, '&sect; 304(c) <a href="https://rightsback.org/glossary/#termination_window" target="_blank">termination window</a> ends',
6666
Values.term_end);
6767
if (Values.d_notice_begin != undefined) {
68-
PDF.appendProperty(details, '&sect; 304(d) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#notice_window" target="_blank">notice window</a> begins',
68+
PDF.appendProperty(details, '&sect; 304(d) <a href="https://rightsback.org/glossary/#notice_window" target="_blank">notice window</a> begins',
6969
Values.d_notice_begin);
70-
PDF.appendProperty(details, '&sect; 304(d) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#notice_window" target="_blank">notice window</a> ends',
70+
PDF.appendProperty(details, '&sect; 304(d) <a href="https://rightsback.org/glossary/#notice_window" target="_blank">notice window</a> ends',
7171
Values.d_notice_end);
72-
PDF.appendProperty(details, '&sect; 304(d) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#termination_window" target="_blank">termination window</a> begins',
72+
PDF.appendProperty(details, '&sect; 304(d) <a href="https://rightsback.org/glossary/#termination_window" target="_blank">termination window</a> begins',
7373
Values.d_term_begin);
74-
PDF.appendProperty(details, '&sect; 304(d) <a href="https://labs.creativecommons.org/demos/termination-of-transfer/glossary.php#termination_window" target="_blank">termination window</a> ends',
74+
PDF.appendProperty(details, '&sect; 304(d) <a href="https://rightsback.org/glossary/#termination_window" target="_blank">termination window</a> ends',
7575
Values.d_term_end);
7676
}
7777
};

0 commit comments

Comments
 (0)