Go to file
daichifukui 7c251159a6 update link to repo install doc
As of writing this PR, the link to the repo installation documentation
redirects to a page titled “Download the Android source,”
which does not include instructions on how to install the repo.
Therefore, we would like to use a different link for the installation
instructions.

Signed-off-by: daichifukui <a.dog.will.talk@akane.waseda.jp>
2024-09-23 12:58:08 +02:00
.bundle Update Gem Files 2023-12-10 11:19:58 +01:00
.github/workflows github: set up .ruby-version + cache dependencies 2024-05-21 09:41:44 +10:00
.reuse Add a suitable .ruby-version 2024-05-19 17:24:32 +10:00
CMA34DBMC Add SPDX license identifiers 2020-11-30 09:25:37 +11:00
Hardware trivial: python style + lint fixes 2024-07-12 11:22:12 +10:00
LICENSES Add SPDX license identifiers 2020-11-30 09:25:37 +11:00
Tutorials Remove typo 'is allows' 2023-07-17 11:30:19 +07:00
_data Add Microkit 1.4.1 release 2024-08-19 07:43:04 +02:00
_includes Add downloads section for Microkit SDK 2024-07-08 17:34:16 +10:00
_layouts Replace Google Analytics 2024-02-05 14:31:08 +11:00
_plugins fix Ruby warning 2024-05-20 16:47:24 +01:00
assets Add a test status page 2022-10-06 09:01:51 +02:00
content_collections Fix typos in Microkit 1.4.1 release notes 2024-08-26 11:23:04 +01:00
dependencies Import include_absolute.rb 2020-04-03 12:16:39 +11:00
processes bring release description up to date 2024-07-09 09:26:07 +10:00
projects update link to repo install doc 2024-09-23 12:58:08 +02:00
tools docker: clean up python dependencies 2024-07-11 15:57:31 +10:00
.gitignore bundler: force local install of ruby gems (#107) 2021-11-08 11:43:58 +11:00
.gitmodules Add SPDX license identifiers 2020-11-30 09:25:37 +11:00
.ruby-version Add a suitable .ruby-version 2024-05-19 17:24:32 +10:00
.stylefilter trivial: ignore 3rd-party C file for style check 2020-11-30 09:25:37 +11:00
CommunityProjects.md Remove seL4 Core Platform from community projects 2023-10-23 14:16:33 +11:00
Gemfile update Gemfile.lock, constrain sass-embedded 2024-05-21 09:41:44 +10:00
Gemfile.lock Gemfiles.lock: add supported platforms 2024-05-21 09:41:44 +10:00
GettingStarted.md Update license description and move into this repo (#172) 2023-01-12 11:07:34 +11:00
MaintainedRepositories.md Add SPDX license identifiers 2020-11-30 09:25:37 +11:00
Makefile Add SPDX license identifiers 2020-11-30 09:25:37 +11:00
README.md README: improve install instructions 2024-06-27 10:13:45 -04:00
SuggestedProjects.md Rename Data61 to UNSw 2021-10-01 14:55:48 +10:00
_config.yml Add Microkit 1.4.1 release 2024-08-19 07:43:04 +02:00
index.md hardware: make title consistent in page/menus (#214) 2024-01-29 09:18:28 +01:00

README.md

seL4 Documentation site

These are the sources for the seL4 Documentation site located at https://docs.sel4.systems. It is for cooperatively developing and sharing documentation on seL4.

See CONTRIBUTING.md for information on how to contribute. TL;DR click edit on the page in GitHub, make your changes and then submit a pull request.

Ask on the mailing list or open an issue if something doesn't make sense.

We've tried to make sure the hosted site is WCAG 2.0 AA compliant. Please let us know if we have missed something.

Building the site

Install

Submodules

You need to run this only once after you have cloned this the repo.

git submodule init
git submodule update

Ruby

We recommend using rbenv to install the correct Ruby version.

On Mac, using homebrew:

brew install ruby-build rbenv
# follow the instructions this command shows, and start a new shell afterwards
rbenv init
# in the docs directory (root of this repo):
rbenv install

On apt-based Linux distributions (e.g. Ubuntu, Debian):

apt install rbenv
# follow the instructions this command shows, and start a new shell afterwards
rbenv init
# in the docs directory (root of this repo):
rbenv install

After these, you should be able to forget about rbenv, the Makefile will now see the correct Ruby version.

Python

The build is tested with Python 3.9. More recent versions are likely to work as well. After installing Python via e.g. homebrew or apt, you can install the Python build dependencies with:

pip3 install --user camkes-deps

Linters

If you are using the lint checks, they require tidy and liquid-linter. If you just want to build the site, you can skip these.

  • HTML output checking using tidy: make check_html_output
  • Liquid syntax checking using liquid-linter: make check_liquid_syntax

Build

To build and host locally:

make serve
#   Server address: http://127.0.0.1:4000/
#   Server running... press ctrl-c to stop.

Or using Docker (you need Docker installed and running for this):

make docker_serve

Makefile and JEKYLL_ENV=production version

Jekyll environment flags can be used to provide some content only in a production environment.

One way we use this is to show data generated by rules in the Makefile and saved in \_data/generated.yml. If you want to serve the site locally in production mode there are make rules for this. You will need to call the make rule to generate the \_data/generated.yml also.

How the site is set up

Our documentation is contained in a collection of Markdown files stored in this repository. We use Jekyll to generate a static html website that is then hosted on GitHub pages. Our continuous integration is configured to regenerate and update the live site whenever a pull request is merged. There is a timestamp in the source that indicates when it was last generated. Additionally, each page has a timestamp and revision hash from when it was last updated located in the footer based on the git history.

The markdown pages are rendered using Kramdown, a ruby-based markdown converter that is configured to interpret the markdown files (.md) as GitHub flavoured markdown. We are currently using the jekyll-theme-bootstrap theme that provides a sass implementation of bootstrap. Our custom styling is contained in assets/css/style.scss. HTML templates are in either \_layouts or \_includes.

Compliance, style and formatting checks

WCAG 2.0 AA conformance

There is a make rule to check conformance to all testable statements from the guidelines. make check_conformance. It requires the site to be hosted locally (using make serve) and a local server of Automated Accessibility Testing Tool (AATT).

make check_conformance will output a file named conformance_results.xml which is a junit test suite output file that will contain a test case for each generated html file of the site. A make rule make check_conformance_errors will grep for failing test cases and output the html page name. The idea here is to detect if any pages are failing and then manually using the AATT tool's web interface to check what parts of the page violate the guidelines.