/bedrock/mozorg/templates/mozorg/mpl/headers/index.html
https://github.com/mozilla/bedrock · HTML · 65 lines · 59 code · 6 blank · 0 comment · 0 complexity · b2b33c23344dd59ea5a7a85ca0d53eb2 MD5 · raw file
- {#
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
- #}
- {% extends "mozorg/base.html" %}
- {% block page_title %}Mozilla License Headers{% endblock %}
- {% block page_desc %}Mozilla License Headers{% endblock %}
- {% block article %}
- <h1 class="mzp-c-article-title">Mozilla License Headers</h1>
- <section>
- <p>This page gives copy-and-pasteable license headers for Mozilla code. When adding license headers to new files to be checked in to the Mozilla source tree, always use the appropriate one of the following.</p>
- <h2>MPL 2</h2>
- <p>This license must be used for all new code, unless the containing project, module or externally-imported codebase uses a different license. If you can't put a header in the file due to its structure, please put it in a LICENSE file in the same directory.</p>
- <pre id="mpl-c">
- /*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
- */
- </pre></br>
- <pre id="mpl-python">
- # This Source Code Form is subject to the terms of the Mozilla Public
- # License, v. 2.0. If a copy of the MPL was not distributed with this
- # file, You can obtain one at https://mozilla.org/MPL/2.0/.
- </pre></br>
- <pre id="mpl-html">
- <!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
- </pre></br>
- <pre id="mpl-text">
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
- </pre></br>
- </section>
- <section>
- <h2>Public Domain</h2>
- <p>This license can be used for test scripts and other short code snippets, at the discretion of the author.</p>
- <pre id="pd-c">
- /* Any copyright is dedicated to the Public Domain.
- * https://creativecommons.org/publicdomain/zero/1.0/ */
- </pre></br>
- <pre id="pd-python">
- # Any copyright is dedicated to the Public Domain.
- # https://creativecommons.org/publicdomain/zero/1.0/
- </pre></br>
- <pre id="pd-html">
- <!-- Any copyright is dedicated to the Public Domain.
- - https://creativecommons.org/publicdomain/zero/1.0/ -->
- </pre></br>
- <pre id="pd-text">
- Any copyright is dedicated to the Public Domain.
- https://creativecommons.org/publicdomain/zero/1.0/
- </pre></br>
- <p>Licensing questions? Ask in <a href="{{ url('mozorg.about.forums.forums') }}#legal">mozilla.legal</a>.</p>
- </section>
- {% endblock %}