Skip to content

Commit

Permalink
Merge pull request #144 from OpenNeuroOrg/faq-fix
Browse files Browse the repository at this point in the history
Fix missing FAQs
  • Loading branch information
nellh authored Oct 19, 2017
2 parents b1d7c35 + 25d4561 commit e3c0c75
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 7 deletions.
40 changes: 38 additions & 2 deletions app/src/scripts/faq/__tests__/__snapshots__/faq.spec.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ exports[`faq/faq/Faq renders successfully 1`] = `
className="panel-body"
>
<span>
Yes, but only for a period of 18 months counted from first successful analysis of data from more than one participant. After this period the dataset and related analysis results will be made publicly available.
Yes, but only for a period of 36 months counted from first successful analysis of data from more than one participant. After this period the dataset and related analysis results will be made publicly available.
</span>
</div>
</div>
Expand All @@ -91,12 +91,48 @@ exports[`faq/faq/Faq renders successfully 1`] = `
This dataset does not include any identifiable personal health information as defined by the Health Insurance Portability and Accountability Act of 1996 (including names, zip codes, dates of birth, acquisition dates, facial features on structural scans etc.).
</li>
<li>
You agree that this dataset and results of all analyses performed on it using the OpenNeuro platform will become publicly available under a Creative Commons CC0 (“no rights reserved”) license after a grace period of 18 months counted from first successful analysis of data from more than one participant.
You agree that this dataset and results of all analyses performed on it using the OpenNeuro platform will become publicly available under a Creative Commons CC0 or CC-BY license after a grace period of 36 months counted from first successful analysis of data from more than one participant.
</li>
</ul>
</span>
</div>
</div>
<div
className="panel"
>
<div
className="panel-heading"
>
<span>
What if I will not be able to publish my paper in 36 months?
</span>
</div>
<div
className="panel-body"
>
<span>
You can apply for up to two 6 month long extensions of the grace period. To apply please contact support. We encourage you to publish a preprint of your work to reduce the uncertainty of the publishing pipeline.
</span>
</div>
</div>
<div
className="panel"
>
<div
className="panel-heading"
>
<span>
Can I upload and analyze a publicly available dataset from another repository?
</span>
</div>
<div
className="panel-body"
>
<span>
The mission of OpenNeuro is to incentivize data sharing via providing data analysis service. Thus we discourage using it to analyze already publicly available datasets. This policy might change in the future depending on improvements in analysis cost.
</span>
</div>
</div>
<div
className="panel"
>
Expand Down
40 changes: 35 additions & 5 deletions app/src/scripts/faq/faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Faq extends React.Component {
),
faq_answer: (
<span>
Yes, but only for a period of 18 months counted from first
Yes, but only for a period of 36 months counted from first
successful analysis of data from more than one participant. After
this period the dataset and related analysis results will be made
publicly available.
Expand Down Expand Up @@ -56,15 +56,45 @@ class Faq extends React.Component {
<li>
You agree that this dataset and results of all analyses
performed on it using the OpenNeuro platform will become
publicly available under a Creative Commons CC0 (“no rights
reserved”) license after a grace period of 18 months counted
from first successful analysis of data from more than one
participant.
publicly available under a Creative Commons CC0 or CC-BY license
after a grace period of 36 months counted from first successful
analysis of data from more than one participant.
</li>
</ul>
</span>
),
},
{
faq: (
<span>
What if I will not be able to publish my paper in 36 months?
</span>
),
faq_answer: (
<span>
You can apply for up to two 6 month long extensions of the grace
period. To apply please contact support. We encourage you to publish
a preprint of your work to reduce the uncertainty of the publishing
pipeline.
</span>
),
},
{
faq: (
<span>
Can I upload and analyze a publicly available dataset from another
repository?
</span>
),
faq_answer: (
<span>
The mission of OpenNeuro is to incentivize data sharing via
providing data analysis service. Thus we discourage using it to
analyze already publicly available datasets. This policy might
change in the future depending on improvements in analysis cost.
</span>
),
},
{
faq: (
<span>
Expand Down

0 comments on commit e3c0c75

Please sign in to comment.