-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linking to the requirements (#79)
* Fix #78 Fix linking to the requirements * Create separate mainpage for the docs and replace @ with \ for consistency * Spell fix and add missing Doxyfile.in changes * Fix missing anchors * Change legal heading * Update README.md Co-authored-by: Steph Prince <[email protected]> --------- Co-authored-by: Steph Prince <[email protected]>
- Loading branch information
1 parent
603c8ed
commit c91bc43
Showing
12 changed files
with
119 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/** | ||
* \mainpage Overview | ||
* | ||
* \tableofcontents | ||
* | ||
* AqNWB is a C++ API for acquiring neurophysiological data directly into the NWB (Neurodata Without Borders) format. | ||
* Our goal is to provide a lightweight API to integrate with existing acquisition systems. | ||
* Below is a high-level overview of the project structure and capabilities we are targeting: | ||
* | ||
* \image html resources/images/aqnwb_objective.png "Project Overview" width=500px | ||
* | ||
* \section Status | ||
* | ||
* **AqNWB is currently under active development and should not yet be used in practice.** | ||
* | ||
* \htmlonly | ||
* <p> | ||
* <a href="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/tests.yml"> | ||
* <img src="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/tests.yml/badge.svg" alt="Unit tests"> | ||
* </a> | ||
* <a href="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/codespell.yml"> | ||
* <img src="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/codespell.yml/badge.svg" alt="Codespell"> | ||
* </a> | ||
* <a href="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/lint.yml"> | ||
* <img src="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/lint.yml/badge.svg" alt="Lint"> | ||
* </a> | ||
* <a href="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/doxygen-gh-pages.yml"> | ||
* <img src="https://github.com/NeurodataWithoutBorders/aqnwb/actions/workflows/doxygen-gh-pages.yml/badge.svg" alt="Docs build"> | ||
* </a> | ||
* </p> | ||
* <p> | ||
* <a href="https://github.com/NeurodataWithoutBorders/aqnwb"> | ||
* <img src="https://img.shields.io/badge/AqNWB-Source-8A2BE2?style=flat" alt="Source"> | ||
* </a> | ||
* <a href="https://nwb-overview.readthedocs.io/en/latest/nwb-project-analytics/docs/source/code_stat_pages/AqNWB_stats.html"> | ||
* <img src="https://img.shields.io/badge/AqNWB-Code%20Statistics-8A2BE2?style=flat" alt="Code Stats"> | ||
* </a> | ||
* <a href="https://neurodatawithoutborders.github.io/aqnwb/"> | ||
* <img src="https://img.shields.io/badge/AqNWB-Online Docs-8A2BE2?style=flat" alt="Online Docs"> | ||
* </a> | ||
* </p> | ||
* \endhtmlonly | ||
* | ||
* \section mainpage_installation Installation | ||
* | ||
* - \ref user_install_page "User Installation" | ||
* - \ref dev_install_page "Developer Installation" | ||
* | ||
* \section mainpage_navigation Navigating the Documentation | ||
* | ||
* The documentation is divided into the following main sections: | ||
* | ||
* - \ref userdocs : This section is for users who want to use AqNWB in their software project, e.g., to | ||
* integrate NWB with an acquisition system. | ||
* - \ref devdocs : This section is for developers and community members who would like to | ||
* contributed to the development of AqNWB. | ||
* - **API Reference:** The [Namespaces](namespaces.html), [Classes](annotated.html), and [Files](files.html) | ||
* sections are autogenerated from the AqNWB source code using Doxygen, providing a detailed reference of all | ||
* classes, namespaces, files, functions, etc. defined by AqNWB. | ||
* | ||
* \section mainpage_contributing Legal | ||
* | ||
* - \ref code_of_conduct_page | ||
* - \ref license_page | ||
* - \ref copyright_page | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/** | ||
* @page userdocs For Users | ||
* \page userdocs For Users | ||
* | ||
* This documentation is intended for users of AqNWB, e.g., developers seeking to integrate NWB | ||
* with a particular data acquisition software via AqNWB. | ||
* | ||
* - @subpage install_page | ||
* - @subpage hdf5io | ||
* - \subpage user_install_page | ||
* - \subpage hdf5io | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
/** | ||
* @page devdocs For Developers | ||
* \page devdocs For Developers | ||
* | ||
* This documentation is intended for developers of AqNWB. | ||
* | ||
* - @subpage dev_install_page | ||
* - @subpage testing | ||
* - @subpage dev_docs_page | ||
* - @subpage code_of_conduct_page | ||
* - @subpage license_page | ||
* - @subpage copyright_page | ||
* - \subpage dev_install_page | ||
* - \subpage testing | ||
* - \subpage dev_docs_page | ||
* - \subpage code_of_conduct_page | ||
* - \subpage license_page | ||
* - \subpage copyright_page | ||
* | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* @page copyright_page Copyright | ||
* \page copyright_page Copyright | ||
* | ||
* \include Legal.txt | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* @page license_page License | ||
* \page license_page License | ||
* | ||
* \include LICENSE | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
/** | ||
* @page testing Testing | ||
* \page testing Testing | ||
* | ||
* \tableofcontents | ||
* | ||
* \section testing_unit Unit Tests | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters