summaryrefslogtreecommitdiff
path: root/common (follow)
AgeCommit message (Collapse)Author
2021-03-30common/latex.py: use distro module for python3.5 and upVijay Kumar Banerjee
2021-02-18common/waf: fix some typosGedare Bloom
2021-02-18common: use bibtex_bibfiles for newer bibtexGedare Bloom
Closes #4229.
2020-09-13common: Enable numfig roleSebastian Huber
2020-08-07common: Fix pale color of HTML definition termsSebastian Huber
2020-07-08common: Remove probably superfluous importSebastian Huber
The purpose of this import is unclear. This import caused the following error with Sphinx 3.0: Extension error: Could not import extension rtemsdomain (exception: cannot import name 'l_')
2020-04-04common: fix title pageGedare Bloom
Sphinx changed the default behavior of maketitle. Provide our own rtemsmaketitle command and use it instead.
2020-04-03waf: User friendly message when no sphinx is installedChris Johns
2020-03-13waf: Get the version numbers from the version file.Chris Johns
2020-03-13sphinx: Add a custom highlight colourChris Johns
Update #2998
2020-02-26Update sphinx_rtd_theme to https://github.com/readthedocs/sphinx_rtd_theme/Amar Takhar
68a19ca / 0.4.3.dev0. I have been using this one for a while without issues. This should fix the search issues. closes #3880
2020-02-04Revert "common: Add URLs to manuals"Sebastian Huber
This reverts commit 1fdd3cf83d154af66ad0edf5094d93075063c7e0 and some follow up changes.
2020-01-07common: Add URLs to manualsSebastian Huber
2019-10-29waf/common: Fix UTF-8 encoding of HTML inliner output on Python3.Chris Johns
2019-08-14common: Show page references after internal linksSebastian Huber
The custom RTEMS extension produced quite verbose references like "Chapter 3 - Section 7 - Bla blub". This may distract the reading flow. Use a standard Sphinx option to show page references instead, e.g. "Bla blub (page 11)". This has some value for printed out documents.
2019-08-05common: Align "Build Logs" with other list namesSebastian Huber
2019-07-24refs: Update EARS referencesSebastian Huber
2019-07-23refs: Add ECSS standard referencesSebastian Huber
Add the ECSS standards in a separate block. Use a custom label scheme to make citations easier.
2019-07-23refs: Replace non-ASCII characterSebastian Huber
2019-07-11common: Add referencesSebastian Huber
2019-06-21c-user: Add RTEID and ORKID referencesSebastian Huber
2019-03-01waf: Fix argument bug getting extra source.Chris Johns
2019-02-28waf: Add support for extra and excluded sources.Chris Johns
2019-02-28waf: Change --sphinx-verbose to --sphinx-options, add --sphinx-nit-pickChris Johns
Provide options to manage sphinx. Make using the nit-picky mode simpler to access.
2019-02-28Add unicode support for commonly used characters like copyright.Chris Johns
- This change makes the copyright character easier to see on editors lacking good unicode rendering support, ie terminals.
2019-02-28waf: Fix building the images in the src path.Chris Johns
2019-02-15Use pathto() on the genindex URL to make it relative.Chris Johns
2019-02-13common/latex.py: Remove hack for CentOS. Use Texlive per instructions.Joel Sherrill
2019-02-14waf: Use the release date in the coverpageChris Johns
2019-02-13waf: Fix version.py to support older versions of git.Chris Johns
2019-02-13Remove minted from the PDF builds.Chris Johns
This is feedback from the Sphinx project. See: https://github.com/sphinx-doc/sphinx/issues/6021#issuecomment-460951653
2019-02-07Fix the version logic to make it more robust.Chris Johns
2019-02-06Fix building with Sphinx 1.8 and later.Chris Johns
- Provide the pytnon.ist file for makeindex. - Add support for xelatex building so we can switch if we want too. Closes #3669
2019-02-06 Support VERSION file for releasing and deploymentChris Johns
- Shorten the GIT hash.
2019-01-18Change first copyright year to 1988Sebastian Huber
The OAR copyright goes back to 1988.
2019-01-14Reformat and update copyright and license noticesSebastian Huber
For everything before 2015 an OAR copyright is assumed. Later copyright notices are based on Git commits on a best effort basis. The copyright notices of the "RTEMS Software Engineering Handbook" and the "RTEMS CPU Architecture Supplement" are incomplete.
2019-01-11common/header: Add missing copyright noticeSebastian Huber
2019-01-09Update header.rstSebastian Huber
Remove trailing slashes in URLs. Fix bug reporting URL.
2019-01-09Add common header.rst to reduce copy and pasteSebastian Huber
2019-01-09Remove superfluous word "Copyright"Sebastian Huber
The © symbol is sufficient.
2019-01-09Update general copyright noticeSebastian Huber
Update year and add "and contributors".
2019-01-09Replace build date with Git hash and commit dateSebastian Huber
The usage of a build date prevents reproducible builds.
2018-12-18common/waf.py: Fix indentation.Christian Mauderer
Python 3 produces an error if indentation is mixed tabs and spaces.
2018-12-05Fix error messages when Sphinx version cannot be checked.Amar Takhar
This is kind of a dual-check since it checks for the version while simultaneously checking to see if Sphinx exists on the system. Changed the error messages to be clear on the error and removed a reference to version which cannot be set due to the check failure. Reported by: Shashvat Jain
2018-11-03waf: Add support to build PlantUML and Ditaa images.Chris Johns
2018-10-24Add a README file containing the colours used in the RTEMS logo.Amar Takhar
2018-10-19Update the copyright year.Chris Johns
2018-08-21waf: Fix type in single html build.Chris Johns
2018-08-21pdf: Revert the changes to the Latex index formatting.Chris Johns
I removed the '_' splitting of long labels from the index when testing and this puts it back.
2018-08-21build: Fix indexing so it works on HTML and PDF.Chris Johns
- Remove all genindex.rst files, these are generated and should not exist in our source. - Fix the HTML templates so the local specialisation works. - Add a index link to the sidebar for HTML. Note, there is no TOC entry for the index in the PDF output and I cannot figure out how to add one. Closes #3503