Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Remove file accessor plugin (#1835)
Browse files Browse the repository at this point in the history
* Revert "Move implementation of GetLinesFromFile into AbstractFileAccessor. (#1818)"

This reverts commit 3ef7b24.

* Revert "Create plugin loader (#1781)"

This reverts commit 23a6952.

* Revert "Consolidate all file system accesses in mod_fdb to use a single class (#1740)"

This reverts commit 6309563.

* Build documentation
  • Loading branch information
tst-jlarocco authored Sep 4, 2020
1 parent 000ccae commit ec83a3f
Show file tree
Hide file tree
Showing 37 changed files with 90 additions and 1,160 deletions.
1 change: 0 additions & 1 deletion docs/geedocs/5.3.6/answer/developers.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ <h1>Developers<a class="headerlink" href="#developers" title="Permalink to this
<ul>
<li class="toctree-l1"><a class="reference internal" href="developers/addPythonLibToGEPython.html">Add Python Libraries to GEE Python</a></li>
<li class="toctree-l1"><a class="reference internal" href="developers/googleMapsAPIV3ForGEE.html">Google Maps API v3 for GEE</a></li>
<li class="toctree-l1"><a class="reference internal" href="developers/creatingFileAccessorPlugin.html">Creating a File Accessor Plugin</a></li>
</ul>
</div>
</div>
Expand Down
146 changes: 0 additions & 146 deletions docs/geedocs/5.3.6/answer/developers/creatingFileAccessorPlugin.html

This file was deleted.

10 changes: 5 additions & 5 deletions docs/geedocs/5.3.6/answer/developers/googleMapsAPIV3ForGEE.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<script type="text/javascript" src="../../static/bizstyle.js"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="next" title="Creating a File Accessor Plugin" href="creatingFileAccessorPlugin.html" />
<link rel="next" title="Troubleshooting and error messages" href="../troubleshooting.html" />
<link rel="prev" title="Add Python Libraries to GEE Python" href="addPythonLibToGEPython.html" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!--[if lt IE 9]>
Expand All @@ -30,7 +30,7 @@ <h3>Navigation</h3>
<a href="../../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="creatingFileAccessorPlugin.html" title="Creating a File Accessor Plugin"
<a href="../troubleshooting.html" title="Troubleshooting and error messages"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="addPythonLibToGEPython.html" title="Add Python Libraries to GEE Python"
Expand All @@ -45,8 +45,8 @@ <h4>Previous topic</h4>
<p class="topless"><a href="addPythonLibToGEPython.html"
title="previous chapter">Add Python Libraries to GEE Python</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="creatingFileAccessorPlugin.html"
title="next chapter">Creating a File Accessor Plugin</a></p>
<p class="topless"><a href="../troubleshooting.html"
title="next chapter">Troubleshooting and error messages</a></p>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
Expand Down Expand Up @@ -333,7 +333,7 @@ <h3>Navigation</h3>
<a href="../../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="creatingFileAccessorPlugin.html" title="Creating a File Accessor Plugin"
<a href="../troubleshooting.html" title="Troubleshooting and error messages"
>next</a> |</li>
<li class="right" >
<a href="addPythonLibToGEPython.html" title="Add Python Libraries to GEE Python"
Expand Down
2 changes: 1 addition & 1 deletion docs/geedocs/5.3.6/answer/getStarted/upgrade.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ <h1>Upgrade to GEE 5.x<a class="headerlink" href="#upgrade-to-gee-5-x" title="Pe
<li>If you are upgrading from 5.3.4.1 or before to 5.3.5 and do not install
opengee-extra, ExampleSearch will still show up in the search tabs page
of the admin console but it will not work (due to a bug). This is fixed
in 5.3.6 and beyond.</li>
in 5.3.5.1 and beyond.</li>
<li>None of this applies if you use the shell scripts to upgrade rather than
RPMs.</li>
</ol>
Expand Down
6 changes: 6 additions & 0 deletions docs/geedocs/5.3.6/answer/releaseNotes/relNotesGEE5_3_5.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ <h1>Release notes: Open GEE 5.3.5<a class="headerlink" href="#release-notes-open
5.3.5. Installing Open GEE 5.3.5 on top of Open GEE 5.2.0 will
ensure that your PostgreSQL databases are backed up and upgraded
correctly to the new PostgreSQL version used by Open GEE 5.3.5.</p>
<p class="rubric">New Features</p>
<p>In 5.3.5, we moved documentation, examples, and tutorials into a
separate RPM called opengee-extra. This mainly includes the
documentation, ExampleSearch, and Fusion Tutorial files. You
can choose whether to install opengee-extra depending on if you
need those items.</p>
<p class="rubric">Resolved Issues</p>
<table border="1" class="colwidths-given docutils">
<colgroup>
Expand Down
10 changes: 5 additions & 5 deletions docs/geedocs/5.3.6/answer/troubleshooting.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="Geecheck: test your GEE Server status" href="troubleshooting/geecheckTestServerStatus.html" />
<link rel="prev" title="Creating a File Accessor Plugin" href="developers/creatingFileAccessorPlugin.html" />
<link rel="prev" title="Google Maps API v3 for GEE" href="developers/googleMapsAPIV3ForGEE.html" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!--[if lt IE 9]>
<script type="text/javascript" src="static/css3-mediaqueries.js"></script>
Expand All @@ -33,16 +33,16 @@ <h3>Navigation</h3>
<a href="troubleshooting/geecheckTestServerStatus.html" title="Geecheck: test your GEE Server status"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="developers/creatingFileAccessorPlugin.html" title="Creating a File Accessor Plugin"
<a href="developers/googleMapsAPIV3ForGEE.html" title="Google Maps API v3 for GEE"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../index.html">Google Earth Enterprise 5.3.6 documentation</a> &#187;</li>
</ul>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="developers/creatingFileAccessorPlugin.html"
title="previous chapter">Creating a File Accessor Plugin</a></p>
<p class="topless"><a href="developers/googleMapsAPIV3ForGEE.html"
title="previous chapter">Google Maps API v3 for GEE</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="troubleshooting/geecheckTestServerStatus.html"
title="next chapter">Geecheck: test your GEE Server status</a></p>
Expand Down Expand Up @@ -122,7 +122,7 @@ <h3>Navigation</h3>
<a href="troubleshooting/geecheckTestServerStatus.html" title="Geecheck: test your GEE Server status"
>next</a> |</li>
<li class="right" >
<a href="developers/creatingFileAccessorPlugin.html" title="Creating a File Accessor Plugin"
<a href="developers/googleMapsAPIV3ForGEE.html" title="Google Maps API v3 for GEE"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../index.html">Google Earth Enterprise 5.3.6 documentation</a> &#187;</li>
</ul>
Expand Down
1 change: 0 additions & 1 deletion docs/geedocs/5.3.6/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ <h1>Google Earth Enterprise Documentation Version 5.3.6<a class="headerlink" hre
<li class="toctree-l1"><a class="reference internal" href="answer/developers.html">Developers</a><ul>
<li class="toctree-l2"><a class="reference internal" href="answer/developers/addPythonLibToGEPython.html">Add Python Libraries to GEE Python</a></li>
<li class="toctree-l2"><a class="reference internal" href="answer/developers/googleMapsAPIV3ForGEE.html">Google Maps API v3 for GEE</a></li>
<li class="toctree-l2"><a class="reference internal" href="answer/developers/creatingFileAccessorPlugin.html">Creating a File Accessor Plugin</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="answer/troubleshooting.html">Troubleshooting and error messages</a><ul>
Expand Down
Binary file modified docs/geedocs/5.3.6/objects.inv
Binary file not shown.
1 change: 0 additions & 1 deletion docs/geedocs/5.3.6/raw_sources/answer/developers.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ Developers

developers/addPythonLibToGEPython
developers/googleMapsAPIV3ForGEE
developers/creatingFileAccessorPlugin.rst

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ Upgrade to GEE 5.x
#. If you are upgrading from 5.3.4.1 or before to 5.3.5 and do not install
opengee-extra, ExampleSearch will still show up in the search tabs page
of the admin console but it will not work (due to a bug). This is fixed
in 5.3.6 and beyond.
in 5.3.5.1 and beyond.

#. None of this applies if you use the shell scripts to upgrade rather than
RPMs.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ Release notes: Open GEE 5.3.5
ensure that your PostgreSQL databases are backed up and upgraded
correctly to the new PostgreSQL version used by Open GEE 5.3.5.

.. rubric:: New Features

In 5.3.5, we moved documentation, examples, and tutorials into a
separate RPM called opengee-extra. This mainly includes the
documentation, ExampleSearch, and Fusion Tutorial files. You
can choose whether to install opengee-extra depending on if you
need those items.

.. rubric:: Resolved Issues

.. list-table::
Expand Down
2 changes: 1 addition & 1 deletion docs/geedocs/5.3.6/searchindex.js

Large diffs are not rendered by default.

Loading

0 comments on commit ec83a3f

Please sign in to comment.