Files
RedBear-OS/local/recipes/libs/libxkbcommon/source/doc/message-registry.md.jinja
T
vasilito 04b7641e85 config: add x11proto dependency for libxau and SDDM
- Add x11proto to redbear-full.toml package list
- libxau recipe updated with x11proto dependency and custom build script
- Fixes libxau build failure: 'Package xproto was not found'
2026-06-20 14:57:46 +03:00

75 lines
1.8 KiB
Django/Jinja
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Error index { {#--#} #error-index}
{# NOTE: Prevent Doxygen issue by writing the comment after the first header. #}
<!--
NOTE: This file has been generated automatically by “{{script}}”.
Do not edit manually!
-->
This page lists the warnings and errors generated by xkbcommon.
There are currently {{ entries|length }} entries.
@todo The documentation of the log messages is a work in progress.
## Index
| Code | Identifier | Description | Type |
| --------- | ---------------------------- | ----------- | ---- |
{% for entry in entries %}
| [{{entry.message_code}}] | `{{entry.id}}` | {{entry.description|prepend_todo}} | {{entry.type|capitalize}} |
{% endfor %}
## Details
{% for entry in entries %}
### {{entry.message_code}} {{entry.message_name}} { {#--#}#{{entry.message_code}}}
<dl>
{% if entry.removed %}
<dt>Added in</dt><dd>{{entry.added}}</dd>
<dt>Removed in</dt><dd>{{entry.removed}}</dd>
{% else %}
<dt>Since</dt><dd>{{entry.added}}</dd>
{% endif %}
<dt>Type</dt><dd>{{entry.type|capitalize}}</dd>
<dt>Summary</dt><dd>{{entry.description|prepend_todo}}</dd>
</dl>
{% if entry.details %}
{{entry.details}}
{% endif %}
{% if entry.examples %}
#### Examples
{% for example in entry.examples %}
<details>
<summary>{{example.name}}</summary>
{{example.description}}
{% if example.before %}
**Fix:**
<div class="example-container">
<div class="example">
<div class="example-inner">
<div class="example-title">Before</div>
{{example.before-}}
</div>
</div>
<div class="example">
<div class="example-inner">
<div class="example-title">After</div>
{{example.after-}}
</div>
</div>
</div>
{% endif %}
</details>
{% endfor %}
{% endif %}
{% endfor %}
{% for entry in entries %}
[{{entry.message_code}}]: @ref {{entry.message_code}}
{% endfor %}