summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/LICENSE.MIT
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2024-08-21 11:01:27 +0300
committerScott Murray <scott.murray@konsulko.com>2024-08-21 14:40:16 +0000
commit5bbb75fc5687e86425928ebe517b4cb5db574fd7 (patch)
tree2464960482ceaeee79127db6d2bbfc42b0c0b448 /meta-agl-bsp/LICENSE.MIT
parent2505bfc2876271663216a95e87cf01cab6585019 (diff)
recipes-graphics/mesa: Drop older mesa patch for agl-kvm
As this seems no longer necessary, drop the patch entirely. Once flutter-auto starts we no longer see graphical artefacts but this requires further changes into flutter-auto as discussed in SPEC-5207. Bug-AGL: SPEC-5234 Change-Id: I6d76662b293ce2abd234d42a03a954066794c7e1 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/30220 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account Reviewed-by: Naoto YAMAGUCHI <naoto.yamaguchi@aisin.co.jp> Reviewed-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'meta-agl-bsp/LICENSE.MIT')
0 files changed, 0 insertions, 0 deletions
color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
[![PyPI][pypi-image]][pypi-link]

  [pypi-image]: https://img.shields.io/pypi/v/mkdocs-windmill.svg
  [pypi-link]: https://pypi.python.org/pypi/mkdocs-windmill

# Windmill theme for MkDocs
Outstanding mkdocs theme with a focus on navigation and usability, from Grist Labs.

Highlights:
- Convenient navigation for larger documentation projects.
- Retains state of the navigation menu across page transitions.
- Search with term highlighting.
- User may search in a quick dropdown or load results in a full page.
- Default mkdocs theme within pages, including syntax highlighting.

## Quick start

To install using `pip`:
``` sh
pip install mkdocs-windmill
```

To use in `mkdocs.yml`:
``` yaml
theme: windmill
```

Note that it's important for there to exist a homepage, e.g. a top-level root element in mkdocs 1.0+:
``` yaml
nav:
  - Home: index.md
```

## Demo and documentation

More details are on this site generated with the Windmill theme:
- [Usage](https://gristlabs.github.io/mkdocs-windmill/#) for more on installation and usage.
- [Customization](https://gristlabs.github.io/mkdocs-windmill/#customization/) for extra configuration options that Windmill supports.

## Development

If doing development on `mkdocs-windmill`, check it out with
``` sh
git clone https://github.com/gristlabs/mkdocs-windmill/
cd mkdocs-windmill
```

There are Selenium browser tests, based on NodeJS. To set them up, first [install Yarn](https://yarnpkg.com/en/docs/install), then from `mkdocs-windmill` checkout, run
``` sh
cd tests
yarn install
```

You can run tests when you make changes as follows:
``` sh
cd tests
MKDOCS_BINARY=<path-to-mkdocs-command> SELENIUM_BROWSER=chrome yarn test
```