Skip to content

Commit

Permalink
Update 2.2 documentation with latest version number
Browse files Browse the repository at this point in the history
  • Loading branch information
billsacks committed Dec 27, 2023
1 parent d6940a7 commit e7f71c6
Show file tree
Hide file tree
Showing 20 changed files with 28 additions and 23 deletions.
Binary file modified versions/cesm2.2/doctrees/cesm_configurations.doctree
Binary file not shown.
Binary file modified versions/cesm2.2/doctrees/downloading_cesm.doctree
Binary file not shown.
Binary file modified versions/cesm2.2/doctrees/environment.pickle
Binary file not shown.
Binary file modified versions/cesm2.2/doctrees/index.doctree
Binary file not shown.
Binary file modified versions/cesm2.2/doctrees/introduction.doctree
Binary file not shown.
Binary file modified versions/cesm2.2/doctrees/quickstart.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion versions/cesm2.2/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 9e07e07f5c785fe82e0005ff0cb7d219
config: 8d38dfe17db07cbf3c99bdc2e7e639ba
tags: 645f666f9bcd5a90fca523b33c5a78b7
2 changes: 1 addition & 1 deletion versions/cesm2.2/html/_sources/downloading_cesm.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ code:

.. code-block:: console
git clone -b release-cesm2.2.0 https://github.com/ESCOMP/CESM.git my_cesm_sandbox
git clone -b release-cesm2.2.2 https://github.com/ESCOMP/CESM.git my_cesm_sandbox
cd my_cesm_sandbox
To checkout a previous version of CESM2, first view the available versions:
Expand Down
3 changes: 1 addition & 2 deletions versions/cesm2.2/html/_static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -764,7 +764,6 @@ div.code-block-caption code {
}

table.highlighttable td.linenos,
span.linenos,
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
user-select: none;
}
Expand Down
7 changes: 3 additions & 4 deletions versions/cesm2.2/html/_static/doctools.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx JavaScript utilities for all documentation.
*
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -285,10 +285,9 @@ var Documentation = {
initOnKeyListeners: function() {
$(document).keydown(function(event) {
var activeElementType = document.activeElement.tagName;
// don't navigate when in search box, textarea, dropdown or button
// don't navigate when in search box or textarea
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT'
&& activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey
&& !event.shiftKey) {
&& !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) {
switch (event.keyCode) {
case 37: // left
var prevHref = $('link[rel="prev"]').prop('href');
Expand Down
2 changes: 1 addition & 1 deletion versions/cesm2.2/html/_static/language_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down
2 changes: 1 addition & 1 deletion versions/cesm2.2/html/_static/pygments.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pre { line-height: 125%; }
pre { line-height: 125%; margin: 0; }
td.linenos pre { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; }
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
Expand Down
10 changes: 5 additions & 5 deletions versions/cesm2.2/html/_static/searchtools.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx JavaScript utilities for the full-text search.
*
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -59,10 +59,10 @@ var Search = {
_pulse_status : -1,

htmlToText : function(htmlString) {
var virtualDocument = document.implementation.createHTMLDocument('virtual');
var htmlElement = $(htmlString, virtualDocument);
htmlElement.find('.headerlink').remove();
docContent = htmlElement.find('[role=main]')[0];
var htmlElement = document.createElement('span');
htmlElement.innerHTML = htmlString;
$(htmlElement).find('.headerlink').remove();
docContent = $(htmlElement).find('[role=main]')[0];
if(docContent === undefined) {
console.warn("Content block not found. Sphinx search tries to obtain it " +
"via '[role=main]'. Could you check your theme or template.");
Expand Down
3 changes: 2 additions & 1 deletion versions/cesm2.2/html/cesm_configurations.html
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ <h2>CESM2 Validation<a class="headerlink" href="#cesm2-validation" title="Permal

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -662,6 +662,7 @@ <h2>CESM2 Validation<a class="headerlink" href="#cesm2-validation" title="Permal
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/pop_ver.js"></script>


Expand Down
5 changes: 3 additions & 2 deletions versions/cesm2.2/html/downloading_cesm.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ <h2>Downloading the code and scripts<a class="headerlink" href="#downloading-the
<p>With valid git and svn clients installed on the machine where CESM2 will be
built and run, the user may download the latest version of the release
code:</p>
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">git clone -b release-cesm2.2.0 https://github.com/ESCOMP/CESM.git my_cesm_sandbox</span>
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">git clone -b release-cesm2.2.2 https://github.com/ESCOMP/CESM.git my_cesm_sandbox</span>
<span class="go">cd my_cesm_sandbox</span>
</pre></div>
</div>
Expand Down Expand Up @@ -354,7 +354,7 @@ <h2>Downloading input data<a class="headerlink" href="#downloading-input-data" t

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -382,6 +382,7 @@ <h2>Downloading input data<a class="headerlink" href="#downloading-input-data" t
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/pop_ver.js"></script>


Expand Down
3 changes: 2 additions & 1 deletion versions/cesm2.2/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ <h1 id="index">Index</h1>

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -215,6 +215,7 @@ <h1 id="index">Index</h1>
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/pop_ver.js"></script>


Expand Down
3 changes: 2 additions & 1 deletion versions/cesm2.2/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h2>Table of contents<a class="headerlink" href="#table-of-contents" title="Perm

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -260,6 +260,7 @@ <h2>Table of contents<a class="headerlink" href="#table-of-contents" title="Perm
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/pop_ver.js"></script>


Expand Down
3 changes: 2 additions & 1 deletion versions/cesm2.2/html/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ <h2>CESM2 Software/Operating System Prerequisites<a class="headerlink" href="#ce

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -328,6 +328,7 @@ <h2>CESM2 Software/Operating System Prerequisites<a class="headerlink" href="#ce
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/pop_ver.js"></script>


Expand Down
3 changes: 2 additions & 1 deletion versions/cesm2.2/html/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ <h2>Run the case<a class="headerlink" href="#run-the-case" title="Permalink to t

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -401,6 +401,7 @@ <h2>Run the case<a class="headerlink" href="#run-the-case" title="Permalink to t
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/pop_ver.js"></script>


Expand Down
3 changes: 2 additions & 1 deletion versions/cesm2.2/html/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@

<div role="contentinfo">
<p>
&copy; Copyright 2020, U.S. National Science Foundation.
&copy; Copyright 2023, U.S. National Science Foundation.

</p>
</div>
Expand Down Expand Up @@ -221,6 +221,7 @@
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/language_data.js"></script>
<script src="_static/searchtools.js"></script>
<script src="_static/pop_ver.js"></script>

Expand Down

0 comments on commit e7f71c6

Please sign in to comment.