Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/next/pages/policies/copyright.tsx
Views: 687
import Footer from "components/landing/footer";1import Header from "components/landing/header";2import Head from "components/landing/head";3import { Layout } from "antd";4import withCustomize from "lib/with-customize";5import { Customize } from "lib/customize";6import A from "components/misc/A";7import { MAX_WIDTH } from "lib/config";89export default function Copyright({ customize }) {10return (11<Customize value={customize}>12<Head title="Copyright Policy" />13<Layout>14<Header page="policies" subPage="copyright" />15<Layout.Content16style={{17backgroundColor: "white",18}}19>20<div21style={{22maxWidth: MAX_WIDTH,23margin: "15px auto",24padding: "15px",25backgroundColor: "white",26}}27>28<div style={{ textAlign: "center", color: "#444" }}>29<h1 style={{ fontSize: "28pt" }}>CoCalc - Copyright Policy</h1>30<h2>Last Updated: April 2, 2015</h2>31</div>32<div style={{ fontSize: "12pt" }}>33<h1>Notification of Copyright Infringement</h1>34<p>35SageMath, Inc. ("SageMath") respects the intellectual property36rights of others and expects its users to do the same.{" "}37</p>38<p>39It is SageMath's policy, in appropriate circumstances and at its40discretion, to disable and/or terminate the accounts of users41who repeatedly infringe the copyrights of others.{" "}42</p>43<p>44In accordance with the Digital Millennium Copyright Act of 1998,45the text of which may be found on the U.S. Copyright Office46website at{" "}47<A href="http://www.copyright.gov/legislation/dmca.pdf">48http://www.copyright.gov/legislation/dmca.pdf49</A>50, SageMath will respond expeditiously to claims of copyright51infringement committed using the SageMath website(s) (the52"Sites") that are reported to SageMath's Designated Copyright53Agent, identified in the sample notice below.{" "}54</p>55<p>56If you are a copyright owner, or are authorized to act on behalf57of one, or authorized to act under any exclusive right under58copyright, please report alleged copyright infringements taking59place on or through the Sites by completing the following DMCA60Notice of Alleged Infringement and delivering it to SageMath's61Designated Copyright Agent. Upon receipt of the Notice as62described below, SageMath will take whatever action, in its sole63discretion, it deems appropriate, including removal of the64challenged material from the Sites.{" "}65</p>66<h1>DMCA Notice of Alleged Infringement ("Notice")</h1>67<p></p>68<ol>69<li>70Identify the copyrighted work that you claim has been71infringed, or--if multiple copyrighted works are covered by72this Notice--you may provide a representative list of the73copyrighted works that you claim have been infringed.74</li>75<li>76Identify the material that you claim is infringing (or to be77the subject of infringing activity) and that is to be removed78or access to which is to be disabled, and information79reasonably sufficient to permit us to locate the material,80including at a minimum, if applicable, the URL of the link81shown on the Site(s) where such material may be found.82</li>83<li>84Provide your mailing address, telephone number, and, if85available, email address.{" "}86</li>87<li>88Include both of the following statements in the body of the89Notice:90<ul>91<li>92"I hereby state that I have a good faith belief that the93disputed use of the copyrighted material is not authorized94by the copyright owner, its agent, or the law (e.g., as a95fair use)."96</li>97<li>98"I hereby state that the information in this Notice is99accurate and, under penalty of perjury, that I am the100owner, or authorized to act on behalf of the owner, of the101copyright or of an exclusive right under the copyright102that is allegedly infringed."103</li>104</ul>105</li>106<li>107Provide your full legal name and your electronic or physical108signature.{" "}109</li>110</ol>111<p></p>Deliver this Notice, with all items completed, to SageMath,112Inc.'s Designated Copyright Agent via email to{" "}113<A href="mailto:[email protected]">[email protected]</A>114.115</div>116</div>117<Footer />118</Layout.Content>119</Layout>120</Customize>121);122}123124export async function getServerSideProps(context) {125return await withCustomize({ context });126}127128129