CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/policies/copyright.tsx
Views: 687
1
import Footer from "components/landing/footer";
2
import Header from "components/landing/header";
3
import Head from "components/landing/head";
4
import { Layout } from "antd";
5
import withCustomize from "lib/with-customize";
6
import { Customize } from "lib/customize";
7
import A from "components/misc/A";
8
import { MAX_WIDTH } from "lib/config";
9
10
export default function Copyright({ customize }) {
11
return (
12
<Customize value={customize}>
13
<Head title="Copyright Policy" />
14
<Layout>
15
<Header page="policies" subPage="copyright" />
16
<Layout.Content
17
style={{
18
backgroundColor: "white",
19
}}
20
>
21
<div
22
style={{
23
maxWidth: MAX_WIDTH,
24
margin: "15px auto",
25
padding: "15px",
26
backgroundColor: "white",
27
}}
28
>
29
<div style={{ textAlign: "center", color: "#444" }}>
30
<h1 style={{ fontSize: "28pt" }}>CoCalc - Copyright Policy</h1>
31
<h2>Last Updated: April 2, 2015</h2>
32
</div>
33
<div style={{ fontSize: "12pt" }}>
34
<h1>Notification of Copyright Infringement</h1>
35
<p>
36
SageMath, Inc. ("SageMath") respects the intellectual property
37
rights of others and expects its users to do the same.{" "}
38
</p>
39
<p>
40
It is SageMath's policy, in appropriate circumstances and at its
41
discretion, to disable and/or terminate the accounts of users
42
who repeatedly infringe the copyrights of others.{" "}
43
</p>
44
<p>
45
In accordance with the Digital Millennium Copyright Act of 1998,
46
the text of which may be found on the U.S. Copyright Office
47
website at{" "}
48
<A href="http://www.copyright.gov/legislation/dmca.pdf">
49
http://www.copyright.gov/legislation/dmca.pdf
50
</A>
51
, SageMath will respond expeditiously to claims of copyright
52
infringement committed using the SageMath website(s) (the
53
"Sites") that are reported to SageMath's Designated Copyright
54
Agent, identified in the sample notice below.{" "}
55
</p>
56
<p>
57
If you are a copyright owner, or are authorized to act on behalf
58
of one, or authorized to act under any exclusive right under
59
copyright, please report alleged copyright infringements taking
60
place on or through the Sites by completing the following DMCA
61
Notice of Alleged Infringement and delivering it to SageMath's
62
Designated Copyright Agent. Upon receipt of the Notice as
63
described below, SageMath will take whatever action, in its sole
64
discretion, it deems appropriate, including removal of the
65
challenged material from the Sites.{" "}
66
</p>
67
<h1>DMCA Notice of Alleged Infringement ("Notice")</h1>
68
<p></p>
69
<ol>
70
<li>
71
Identify the copyrighted work that you claim has been
72
infringed, or--if multiple copyrighted works are covered by
73
this Notice--you may provide a representative list of the
74
copyrighted works that you claim have been infringed.
75
</li>
76
<li>
77
Identify the material that you claim is infringing (or to be
78
the subject of infringing activity) and that is to be removed
79
or access to which is to be disabled, and information
80
reasonably sufficient to permit us to locate the material,
81
including at a minimum, if applicable, the URL of the link
82
shown on the Site(s) where such material may be found.
83
</li>
84
<li>
85
Provide your mailing address, telephone number, and, if
86
available, email address.{" "}
87
</li>
88
<li>
89
Include both of the following statements in the body of the
90
Notice:
91
<ul>
92
<li>
93
"I hereby state that I have a good faith belief that the
94
disputed use of the copyrighted material is not authorized
95
by the copyright owner, its agent, or the law (e.g., as a
96
fair use)."
97
</li>
98
<li>
99
"I hereby state that the information in this Notice is
100
accurate and, under penalty of perjury, that I am the
101
owner, or authorized to act on behalf of the owner, of the
102
copyright or of an exclusive right under the copyright
103
that is allegedly infringed."
104
</li>
105
</ul>
106
</li>
107
<li>
108
Provide your full legal name and your electronic or physical
109
signature.{" "}
110
</li>
111
</ol>
112
<p></p>Deliver this Notice, with all items completed, to SageMath,
113
Inc.'s Designated Copyright Agent via email to{" "}
114
<A href="mailto:[email protected]">[email protected]</A>
115
.
116
</div>
117
</div>
118
<Footer />
119
</Layout.Content>
120
</Layout>
121
</Customize>
122
);
123
}
124
125
export async function getServerSideProps(context) {
126
return await withCustomize({ context });
127
}
128
129