[Commits] [svn:einsteintoolkit] www/ (Rev. 497)
dcastl2 at einsteintoolkit.org
dcastl2 at einsteintoolkit.org
Tue Apr 5 15:13:42 CDT 2011
User: dcastl2
Date: 2011/04/05 03:13 PM
Added:
/about/
/about/resources/
/about/tools/
/community/
/community/contribute/
/documentation/
/documentation/ThornGuide/
/licenses/
index.php
/publications/
/publications/grants/
/support/
Removed:
/crs/
/crtalks/
/documentation/EinsteinToolkitThornGuide/
/info/
/licenses/
index.php
/science/
/toolkit/
Modified:
/global/
navigation.php
Log:
Changed the directory structure and navigation menu to match.
File Changes:
Directory: /global/
===================
File [modified]: navigation.php
Delta lines: +32 -23
===================================================================
--- global/navigation.php 2011-04-05 13:56:26 UTC (rev 496)
+++ global/navigation.php 2011-04-05 20:13:40 UTC (rev 497)
@@ -2,38 +2,47 @@
<ul class="nav">
-<li><a href="/about/">About</a>
+<li><a href="/about/">About the Toolkit</a>
<ul class="subnav">
- <li><a href="/about/members/">Members</a></li>
- <li><a href="/about/developers/">Maintainers</a></li>
- <li><a href="/about/licenses">Licensing</a></li>
- <li><a href="/about/governance/">Governance</a></li>
+ <li><a href="/about/releases">Releases</a></li>
+ <li><a href="/about/capabilities/">Capabilities</a></li>
+ <li><a href="/about/resources/">Resources</a></li>
+ <li><a href="/about/tools/">Tools</a></li>
</ul></li>
-<li><a href="/toolkit/">Einstein Toolkit</a>
+<li><a href="http://blog.einsteintoolkit.org/">Blog</a></li>
+
+<li><a href="/community/">Community</a>
<ul class="subnav">
- <li><a href="/toolkit/releases">Releases</a></li>
- <li><a href="/toolkit/capabilities/">Capabilities</a></li>
- <li><a href="/toolkit/community/">Mail Lists</a></li>
- <li><a href="/info/contribute/">Contribute</a></li>
- <li><a href="https://trac.einsteintoolkit.org">Report issues</a></li>
- <li><a href="/info/citing/">Cite</a></li>
+ <li><a href="/community/members/">Members</a></li>
+ <li><a href="/community/developers/">Maintainers</a></li>
+ <li><a href="/community/governance/">Governance</a></li>
+ <li><a href="/community/contribute/">Contribute</a></li>
</ul></li>
-<li><a href="/info/">Using the Toolkit</a>
+
+<li><a href="/documentation/">Documentation</a></li>
<ul class="subnav">
- <li><a href="/info/documentation/">Documentation</a></li>
- <li><a href="/info/resources/">Resources</a></li>
- <li><a href="/info/support/">Support</a></li>
- <li><a href="/info/tools/">Tools</a></li>
+ <li><a href="/documentation/UsersGuide/UsersGuide.html">User's Guide</a></li>
+ <li><a href="/documentation/ReferenceManual/ReferenceManual.html">Reference Manual</a></li>
+ <li><a href="/documentation/MaintGuide/MaintGuide.html">Maintenance Guide</a></li>
+ <li><a href="/documentation/ThornGuide/ThornGuide.html">Thorn Guide</a></li>
</ul></li>
-<!--<li><a href="/science/">Science Outputs</a>
- <ul class="subnav">
- <li><a href="/science/grants/">Grants</a></li>
- <li><a href="/science/publications/">Publications</a></li>
- </ul></li>-->
+<li><a href="/support/">Support</a>
+<ul class="subnav">
+ <li><a href="https://trac.einsteinabout.org">Report issues</a></li>
+</ul></li>
-<li><a href="http://blog.einsteintoolkit.org/">Blog</a></li>
+<li><a href="/licenses/">Licensing</a></li>
+<ul class="subnav">
+ <li><a href="/licenses/citing/">Citing</a></li>
+</ul></li>
+<li><a href="/publications/">Publications</a>
+<ul class="subnav">
+ <li><a href="/publications/grants/">Grants</a></li>
+</ul></li>
+
+
</ul>
Directory: /licenses/
=====================
File [removed]: index.php
Delta lines: +54 -0
===================================================================
--- licenses/index.php (rev 0)
+++ licenses/index.php 2011-04-05 20:13:40 UTC (rev 497)
@@ -0,0 +1,54 @@
+<?php $title='Citation Guidelines';
+include_once($_SERVER['DOCUMENT_ROOT'].'/global/header.php');?>
+
+<p>The development of production level scientific software, such
+as the components of the Einstein Toolkit, represents the academic
+output of researchers who bring together skills in formulations,
+algorithms and software engineering as well as substantial domain
+knowledge. The scientific contributions of such researchers should be
+acknowledged and respected on a par with those whose expertise lie solely in
+theory or experiment. Further, most contributions to the Einstein
+Toolkit have been provided by early stage researchers --- graduate
+students, postdocs and young assistant professors, where proper
+and appropriate citation of their contributions is crucial for
+furthering academic careers.</p>
+
+The current guidelines for citation of the Einstein Toolkit are:</p>
+
+<ol>
+<li> Authors are <b>requested</b> to cite the Einstein Toolkit web page (http://www.einsteintoolkit.org) in publications using results or software obtained from the
+toolkit.
+
+<li> Authors are <b>requested</b> to individually cite publications for
+identified key software components from the toolkit that are used to
+obtain published results. These publications include, for example, details
+of the equations, algorithms, and verification of components.
+A list of components for which this applies is provided below.
+
+<li> Authors should consult the list of <b>suggested</b> publications for
+software components from the toolkit that are used to obtain published results.
+A list of components for which this applies is provided below.
+
+<li> Authors should consult the full publication page for the
+ Einstein Toolkit (not yet in place) to determine if in their judgement it would be
+ appropriate to provide citations for additional components than described in 1), 2) and 3).
+
+</ol>
+
+
+<h2>Citations for Key Toolkit Components</h2>
+
+<p>Authors whose published work is derived from results obtained using the Einstein Toolkit are <b>requested</b> to individually cite publications for
+identified key software components used to obtain those results. These publications, that are listed below, include details of e.g. the equations, algorithm,
+ and verification of components. Obviously, citations should only be given for components that were actually used.</p>
+
+
+<?php
+exec('./parse_citations.pl', $output);
+foreach ($output as $line) {
+ echo $line."\n";
+}
+?>
+(bibtex <a href="../../manifest/einsteintoolkit.bib">file</a>)
+
+<?php include_once($_SERVER['DOCUMENT_ROOT'].'/global/footer.php');?>
File [added]: index.php
Delta lines: None
None
More information about the Commits
mailing list