Skip to content

Commit

Permalink
DOC: Generate online documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
MilanSkocic committed Jan 20, 2024
1 parent 99fdb71 commit c9d86cf
Show file tree
Hide file tree
Showing 107 changed files with 44,971 additions and 0 deletions.
Binary file not shown.
676 changes: 676 additions & 0 deletions docs/_downloads/a3e9e0886b7059d4c553af028824283a/LICENSE.txt

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions docs/_downloads/aeeecbf1565d1f259d485137e17b99fb/LICENSE.txt

Large diffs are not rendered by default.

Binary file added docs/_images/logo-codata.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions docs/_sources/api/codata.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.. _codataAPI:

codata
===============

Fortran
--------------

`Fortran code API <../ford/index.html>`_

C
-------

* `codata.h`: Main C header for the whole library.

.. literalinclude:: ../../../../include/codata.h
:language: C

Version
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

* `codata_version.h`: C Header.

.. literalinclude:: ../../../../include/codata_version.h
:language: C

Constants
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

* `codata_constants.h`: C Header.

.. literalinclude:: ../../../../include/codata_constants.h
:language: C
8 changes: 8 additions & 0 deletions docs/_sources/api/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
API
==================================

.. toctree::
:maxdepth: 2

codata.rst
pycodata.rst
7 changes: 7 additions & 0 deletions docs/_sources/api/pycodata.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pycodata
================

All constants as declared in the :ref:`codata <codataAPI>` are inserted at the top level
of the module.

.. automodule:: pycodata
25 changes: 25 additions & 0 deletions docs/_sources/getting_started/codata.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
codata
==============

.. image:: ../media/logo-codata.png
:width: 200
:align: center

.. include:: ../../../../README.rst
:start-after: readme_inclusion_start
:end-before: readme_inclusion_end

How to install
^^^^^^^^^^^^^^^^^

.. include:: ../../../../INSTALL.rst

Dependencies
^^^^^^^^^^^^^^^^^

.. literalinclude:: ../../../../REQUIREMENTS.txt

License
^^^^^^^^^^^^^^^^^

:download:`GNU General Public License v3 (GPLv3) <../../../../LICENSE.txt>`
23 changes: 23 additions & 0 deletions docs/_sources/getting_started/examples.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Examples
==========


Example in Fortran
--------------------

.. literalinclude:: ../../../../example/example_in_f.f90
:language: Fortran

Example in C
--------------------

.. literalinclude:: ../../../../example/example_in_c.c
:language: C

Example in Python
--------------------

.. literalinclude:: ../../../../example/example_in_py.py
:lines: 4-
:language: python

15 changes: 15 additions & 0 deletions docs/_sources/getting_started/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Getting Started
================

.. only:: html

PDF documentation: :download:`codata <../../build/latex/codata.pdf>`.

Sources: https://github.com/MilanSkocic/codata

.. toctree::
:maxdepth: 2

codata.rst
pycodata.rst
examples.rst
21 changes: 21 additions & 0 deletions docs/_sources/getting_started/pycodata.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pycodata
=========================

.. include:: ../../../../pywrapper/README.rst
:start-after: readme_inclusion_start
:end-before: readme_inclusion_end

How to install
^^^^^^^^^^^^^^^

.. include:: ../../../../pywrapper/INSTALL.rst

Dependencies
^^^^^^^^^^^^^^^

.. literalinclude:: ../../../../pywrapper/requirements.txt

License
^^^^^^^^^^^^^^^

:download:`GNU General Public License v3 (GPLv3) <../../../../pywrapper/LICENSE.txt>`
18 changes: 18 additions & 0 deletions docs/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Welcome to codata documentation!
=========================================================

.. toctree::
:maxdepth: 1
:caption: Contents:

getting_started/index.rst
releases/index.rst
api/index.rst


.. only:: html

Search
==================

* :ref:`search`
30 changes: 30 additions & 0 deletions docs/_sources/releases/0.1.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Codata 0.1.0 Release Note
===============================

Changes
--------------

Implementation of:

* the parser of the codata raw data
* the generator of the Fortran modules
* the C API and C header
* the python wrapper (will be moved to its repository next release).

Download
------------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_

Contributors
----------------

Milan Skocic


Commits
---------------------

Full Changelog: https://github.com/MilanSkocic/codata/compare/....0.1.0
29 changes: 29 additions & 0 deletions docs/_sources/releases/0.10.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Codata 0.10.0 Release Note
============================

Summary
---------------

* Remove remove generation of the version module.
* Add tests using the test-drive framework.
* Explicit parameter constants for Fortran and protected constants for C API.
* Minor fixes in documentation.
* Code cleanup.
* Merge of all code for autogeneration in one file.

Download
---------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_


Contributors
---------------
Milan Skocic

Commits
---------

**Full Changelog**: https://github.com/MilanSkocic/codata/compare/0.9.0...0.10.0
27 changes: 27 additions & 0 deletions docs/_sources/releases/0.2.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Codata 0.2.0 Release Note
=============================

Changes
-----------------------------

* Bug fixes for the codata 2010.
* Bug fixes in the tests linked to the codata 2010.
* Add python wrapper for the number of constants method.

Download
-----------------------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_

Contributors
-----------------------------

Milan Skocic


Commits
-----------------------------

Full Changelog: https://github.com/MilanSkocic/codata/compare/0.1.0...0.2.0
26 changes: 26 additions & 0 deletions docs/_sources/releases/0.2.1-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Codata 0.2.1 Release Note
=============================

Changes
----------------------------

* Integration of Intel Fortran compiler and MSVC in cmake scripts.
* Add specifications and instructions for compiling on Windows

Download
----------------------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_

Contributors
----------------------------

Milan Skocic


Commits
----------------------------

Full Changelog: https://github.com/MilanSkocic/codata/compare/0.2.0...0.2.1
25 changes: 25 additions & 0 deletions docs/_sources/releases/0.3.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Codata 0.3.0 Release Note
===========================================

Changes
-------------------------------------------

* Only last codata constants.

Download
-------------------------------------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_

Contributors
-------------------------------------------

Milan Skocic


Commits
-------------------------------------------

Full Changelog: https://github.com/MilanSkocic/codata/compare/0.2.1...0.3.0
26 changes: 26 additions & 0 deletions docs/_sources/releases/0.4.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Codata 0.4.0 Release Note
===========================================

Changes
-------------------------------------------

* Bring back pywrapper in the codata repository to sync versions.
* Improvements of the documentation.

Download
-------------------------------------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_

Contributors
-------------------------------------------

Milan Skocic


Commits
-------------------------------------------

Full Changelog: https://github.com/MilanSkocic/codata/compare/0.3.0...0.4.0
27 changes: 27 additions & 0 deletions docs/_sources/releases/0.5.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Codata 0.5.0 Release Note
============================

Changes
----------------------------

* Changed the complete approach by not generating a library but only source files for different languages.
* Available languages: Fortran, C, python, CPython

Download
----------------------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_



Contributors
----------------------------

Milan Skocic

Commits
----------------------------

**Full Changelog**: https://github.com/MilanSkocic/codata/compare/0.4.0...0.5.0
25 changes: 25 additions & 0 deletions docs/_sources/releases/0.6.0-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Codata 0.6.0 Release Note
============================

Changes
---------------

* Created documentation.
* Fixed missing uncertainties for Cpython.

Download
---------------

`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_

`PYPI <https://pypi.org/project/pycodata>`_


Contributors
---------------
Milan Skocic

Commits
---------

**Full Changelog**: https://github.com/MilanSkocic/codata/compare/0.5.0...0.6.0
Loading

0 comments on commit c9d86cf

Please sign in to comment.