Commit f85fa153 authored by Lauren Adoram-Kershner's avatar Lauren Adoram-Kershner Committed by GitHub
Browse files

Doc badge (#405)

* initial commit

* updating master doc

* reorganizing landing page

* heckin mv everything up a dir

* forgot to switch main index file

* firing off doxygen build before RTD
parent 5d177861
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
# Abstraction Layer for Ephemerides (ALE)
# Abstraction Layer for Ephemerides (ALE)
[![Build Status](https://travis-ci.org/USGS-Astrogeology/ale.svg?branch=master)](https://travis-ci.org/USGS-Astrogeology/ale)
[![Build Status](https://travis-ci.org/USGS-Astrogeology/ale.svg?branch=master)](https://travis-ci.org/USGS-Astrogeology/ale)
[![Coverage Status](https://coveralls.io/repos/github/USGS-Astrogeology/ale/badge.svg?branch=master)](https://coveralls.io/github/USGS-Astrogeology/ale?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/USGS-Astrogeology/ale/badge.svg?branch=master)](https://coveralls.io/github/USGS-Astrogeology/ale?branch=master)
[![Docs](https://img.shields.io/badge/Docs-latest-green.svg)](https://usgs-astrogeology.github.io/ale/)
[![Docs](https://readthedocs.org/projects/ale/badge/?version=latest)](https://ale.readthedocs.io/en/latest/?badge=latest)






+8 −0
Original line number Original line Diff line number Diff line
@@ -56,3 +56,11 @@ html_theme = 'alabaster'
# relative to this directory. They are copied after the builtin static files,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ['_static']

# -- Run Doxygen for C++ API --------------------------------------------------
import subprocess, os

read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'

if read_the_docs_build:
    subprocess.call('cd ../doxygen; doxygen', shell=True)
+2 −1
Original line number Original line Diff line number Diff line
@@ -8,4 +8,5 @@ Abstraction Layer for Ephemerides (ALE)
.. toctree::
.. toctree::
   :maxdepth: 3
   :maxdepth: 3


   source/index
   tutorials/index
   library/index
Loading