aboutsummaryrefslogtreecommitdiff
path: root/docs/theme/extra
AgeCommit message (Collapse)AuthorFilesLines
2021-01-05modules: Add an unstable-rust moduleDylan Baker1-22/+23
Like other language specific modules this module is module for holding rust specific helpers. This commit adds a test() function, which simplifies using rust's internal unittest mechanism. Rust tests are generally placed in the same code files as they are testing, in contrast to languages like C/C++ and python which generally place the tests in separate translation units. For meson this is somewhat problematic from a repetition point of view, as the only changes are generally adding --test, and possibly some dependencies. The rustmod.test() method provides a mechanism to remove the repatition: it takes a rust target, copies it, and then addes the `--test` option, then creates a Test() target with the `rust` protocol. You can pass additional dependencies via the `dependencies` keyword. This all makes for a nice, DRY, test definition.
2020-05-08rename unstable-kconfig to unstable-keyvalPaolo Bonzini1-1/+1
Discussions in #6524 have shown that there are various possible uses of the kconfig module and even disagreements in the exact file format between Python-based kconfiglib and the tools in Linux. Instead of trying to reconcile them, just rename the module to something less suggestive and leave any policy to meson.build files. In the future it may be possible to add some kind of parsing through keyword arguments such as bool_true, quoted_strings, etc. and possibly creation of key-value lists too. For now, configuration_data objects provide an easy way to access quoted strings. Note that Kconfig stores false as "absent" so it was already necessary to write "x.has_key('abc')" rather than the more compact "x['abc']". Therefore, having to use configuration_data does not make things much more verbose.
2020-02-06topbar HTML module listMichael Hirsch, Ph.D1-21/+27
2020-02-06html fs-module linkMichael Hirsch, Ph.D1-1/+2
2019-06-27docs: Fix link to SourceSet module in the navbar [skip ci]Iñigo Martínez1-0/+1
2019-05-05Add white border to logo used on web pages. [skip ci]Jussi Pakkanen1-0/+0
2019-02-13New logo and license text. Closes #4921. [skip ci]Jussi Pakkanen2-0/+0
2018-08-28hotdoc: Add documentationThibault Saunier1-1/+2
2018-04-09[fixup]: write documentationMathieu Duponchelle1-0/+1
2017-08-31Removed duplicate title in doc theme.Tense_du1-1/+0
2017-04-29docs: Fix link to QT5 in the navbarThibault Saunier1-1/+1
2017-04-26docs: website license is CC-BY and code samples are CC0Thibault Saunier1-0/+7
2017-04-26docs: Import the website and wiki and build with hotdocThibault Saunier8-0/+61
This allows us to more easily have the documentation in sync with the source code as people will have to document new features etc right at the time where they implement it.