This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
Added Trademark Policy Page #1298
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8430164
Added Trademark Policy Page
palakjain21 fd1edeb
Merge branch 'master' into TrademarkPolicy
benhalverson 2826c7e
Merge branch 'master' into TrademarkPolicy
palakjain21 7bef4bd
Fixed the trademark policy and added test file
palakjain21 013e76e
Merge branch 'master' into TrademarkPolicy
palakjain21 8002d9e
Fixes
palakjain21 1d08500
Merge branch 'TrademarkPolicy' of https://github.com/palakjain21/node…
palakjain21 b1dd7db
Merge branch 'master' into TrademarkPolicy
benhalverson 69fd0e6
Added authors name
palakjain21 7989acf
Merge branch 'TrademarkPolicy' of https://github.com/palakjain21/node…
palakjain21 9a279cf
Changes in footer
palakjain21 6fd95dc
Fixed linting
palakjain21 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| --- | ||
| title: Trademark Policy | ||
| description: "Trademark Policy | Node.js" | ||
| authors: fhemberger, XhmikosR, mikeal, brianwarner, bf4 | ||
| category: trademark | ||
| --- | ||
|
|
||
| The Node.js trademarks, service marks, and graphics marks are symbols of the | ||
| quality, performance, and ease of use that people have come to associate with | ||
| the Node.js software and project. To ensure that the Node.js marks continue to | ||
| symbolize these qualities, we must ensure that the marks are only used in ways | ||
| that do not mislead people or cause them to confuse Node.js with other software | ||
| of lower quality. If we don’t ensure the marks are used in this way, it cannot | ||
| only confuse users, it can make it impossible to use the mark to protect | ||
| against people who maliciously exploit the mark in the future. The primary goal | ||
| of this policy is to make sure that this doesn’t happen to the Node.js mark, so | ||
| that the community and users of Node.js are always protected in the future. | ||
|
|
||
| At the same time, we’d like community members to feel comfortable spreading the | ||
| word about Node.js and participating in the Node.js community. Keeping that | ||
| goal in mind, we’ve tried to make the policy as flexible and easy to understand | ||
| as legally possible. | ||
|
|
||
| The OpenJS Foundation has a perpetual license to use the | ||
| [Node.js marks](https://ip-policy.openjsf.org). | ||
| For more details on using the Node.js mark, please read the | ||
| [full policy](https://trademark-policy.openjsf.org). | ||
| If you have any questions don't hesitate to | ||
| [email us](mailto:trademark@openjsf.org). | ||
|
|
||
| Guidelines for the visual display of the Node.js mark are described in | ||
| the [Visual Guidelines](/static/documents/foundation-visual-guidelines.pdf). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| import React from 'react'; | ||
| import { graphql } from 'gatsby'; | ||
| import { Page } from '../types'; | ||
| import Layout from '../components/Layout'; | ||
| import Article from '../components/Article'; | ||
| import Footer from '../components/Footer'; | ||
| import '../styles/article-reader.scss'; | ||
|
|
||
| export default function TrademarkPage({ data }: Page): JSX.Element { | ||
| const { title, description } = data.page.frontmatter; | ||
| const { html, tableOfContents } = data.page; | ||
| const { authors } = data.page.fields; | ||
| return ( | ||
| <> | ||
| <Layout title={title} description={description} showFooter={false}> | ||
| <main className="centered-container"> | ||
| <Article | ||
| title={title} | ||
| html={html} | ||
| tableOfContents={tableOfContents} | ||
| authors={authors} | ||
| editPath="content/about/trademark.md" | ||
| /> | ||
| </main> | ||
| </Layout> | ||
| <Footer /> | ||
| </> | ||
| ); | ||
| } | ||
|
|
||
| export const query = graphql` | ||
| query { | ||
| page: markdownRemark(fields: { slug: { eq: "trademark-policy" } }) { | ||
| html | ||
| tableOfContents(absolute: false, pathToSlugField: "frontmatter.path") | ||
| frontmatter { | ||
| title | ||
| description | ||
| } | ||
| fields { | ||
| authors | ||
| } | ||
| } | ||
| } | ||
| `; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.