diff --git a/src/routes.json b/src/routes.json index 59b3ec927..8dbe3f90f 100644 --- a/src/routes.json +++ b/src/routes.json @@ -79,6 +79,12 @@ "pattern": "^/info/donate/?", "redirect": "https://secure.donationpay.org/scratchfoundation/" }, + { + "name": "dmca", + "pattern": "^/DMCA/?$", + "view": "dmca/dmca", + "title": "DMCA" + }, { "name": "guidelines", "pattern": "^/community_guidelines$", diff --git a/src/views/dmca/dmca.jsx b/src/views/dmca/dmca.jsx new file mode 100644 index 000000000..5e2670310 --- /dev/null +++ b/src/views/dmca/dmca.jsx @@ -0,0 +1,34 @@ +var React = require('react'); +var FormattedMessage = require('react-intl').FormattedMessage; +var render = require('../../lib/render.jsx'); +var Page = require('../../components/page/www/page.jsx'); +var Box = require('../../components/box/box.jsx'); + +require('./dmca.scss'); + +var Dmca = React.createClass({ + type: 'Dmca', + render: function () { + return ( +
+ +

+

+ Copyright Agent / Mitchel Resnick
+ MIT Media Laboratory
+ 77 Massachusetts Ave
+ Room E14-445A
+ Cambridge, MA 02139
+ Tel: (617) 253-9783 +

+

+

+

+

+
+
+ ); + } +}); + +render(, document.getElementById('app')); diff --git a/src/views/dmca/dmca.scss b/src/views/dmca/dmca.scss new file mode 100644 index 000000000..9431c95e6 --- /dev/null +++ b/src/views/dmca/dmca.scss @@ -0,0 +1,2 @@ +@import "../../colors"; +@import "../../typography"; diff --git a/src/views/dmca/l10n.json b/src/views/dmca/l10n.json new file mode 100644 index 000000000..784580a5a --- /dev/null +++ b/src/views/dmca/l10n.json @@ -0,0 +1,7 @@ +{ + "dmca.intro": "The Lifelong Kindergarten research group respects the intellectual property of others, as well as our users. If you believe that your work has been copied in a way that constitutes copyright infringement, please email copyright@scratch.mit.edu, or mail your complaint to the following:", + "dmca.llkresponse": "The Lifelong Kindergarten Group will promptly process and investigate notices of alleged infringement and will take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. Upon receipt of notices complying or substantially complying with the DMCA, the Lifelong Kindergarten Group may act expeditiously to remove or disable access to any material claimed to be infringing. Repeat infringers of third-party copyrights are subject to termination in appropriate circumstances.", + "dmca.assessment": "In assessing whether or not a Scratch user has violated your copyrights, please keep in mind that Scratch is an educational and not-for-profit initiative, seeking to aid children’s learning by providing the tools for them to learn and express themselves using digital technology. Please also keep in mind the “Fair Use” doctrine incorporated into the Copyright Act of 1976, 17 U.S.C. § 107.", + "dmca.eyetoeye": "We hope you also see Scratch not only as a good way of popularizing your creations/website but also as an opportunity to do something good for children’s education.", + "dmca.afterfiling": "If you choose to make a copyright infringement complaint, please note that we may post your notification, with personally identifiable information redacted, to a clearinghouse such as chillingeffects.org. Please also note that you may be liable for damages (including costs and attorneys’ fees) if you materially misrepresent that an activity is infringing your copyright." +}