Skip to content

Commit 06c67e6

Browse files
Add element schema
1 parent 0f0fc0e commit 06c67e6

File tree

6 files changed

+36
-5
lines changed

6 files changed

+36
-5
lines changed

elements/player.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Player'
1+
name: 'player'
22
description: |
33
The player class represents pedestrians controlled by clients. A player element is created when a client connects to the server and destroyed when that client quits. Players cannot be created or destroyed otherwise.
44

schemas/element.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
$schema: https://json-schema.org/draft/2020-12/schema
2+
$id: /schemas/element
3+
title: Element schema
4+
type: object
5+
required:
6+
- name
7+
- description
8+
properties:
9+
name:
10+
type: string
11+
description: Lowercase name of the element.
12+
description:
13+
type: string
14+
description: Description of the element.
15+
see_also:
16+
type: array
17+
description: |
18+
A list of other categories for further reading.
19+
Every element will implicitly display it's own category in *See Also*, unless you
20+
introduce this property, then you have to be explicit about it.
21+
items:
22+
type: string
23+
pattern: "^(category):"
24+
uniqueItems: true

tools/validate.cmd

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ for /r "functions" %%f in (*.yaml) do (
44
.\tools\yajsv.exe -s schemas/function.yaml "%%f"
55
)
66

7+
for /r "elements" %%f in (*.yaml) do (
8+
.\tools\yajsv.exe -s schemas/element.yaml "%%f"
9+
)
10+
711
for /r "articles" %%f in (*.yaml) do (
812
.\tools\yajsv.exe -s schemas/article.yaml "%%f"
913
)

tools/validate.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
22

33
find 'functions/' -name '*.yaml' -type f -print0 | xargs -0 -I {} tools/yajsv -s schemas/function.yaml {}
4+
find 'elements/' -name '*.yaml' -type f -print0 | xargs -0 -I {} tools/yajsv -s schemas/element.yaml {}
45
find 'articles/' -name '*.yaml' -type f -print0 | xargs -0 -I {} tools/yajsv -s schemas/article.yaml {}

web/resources/element.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- Title -->
33
<div class="floating-right1" style="color: #ccc;">Element</div>
44
<h1 style="border-bottom: 3px solid #ccc; padding-bottom: 0.2em;">
5-
{{ element.name }}
5+
{{ element.name|capitalize }}
66
<a class="small-fs" href="#" onclick="copyText('{{ element.name }}', 'copy-{{ element.name }}')"><i class="fa-regular fa-copy"></i> <span id="copy-{{ element.name }}"></span> </a>
77
</h1>
88

web/scripts/builder.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ def clear(self):
5151
def load_schemas(self):
5252
try:
5353
self.schema_function = utils.load_schema(os.path.join(DOCS_REPO_PATH, 'schemas/function.yaml'))
54+
# self.schema_event = utils.load_schema(os.path.join(DOCS_REPO_PATH, 'schemas/event.yaml'))
55+
self.schema_element = utils.load_schema(os.path.join(DOCS_REPO_PATH, 'schemas/element.yaml'))
5456
self.schema_article = utils.load_schema(os.path.join(DOCS_REPO_PATH, 'schemas/article.yaml'))
5557
except Exception as e:
5658
raise WikiBuilderError(f'Error loading schemas: {e}')
@@ -63,7 +65,7 @@ def parse_elements(self):
6365
if filename.endswith('.yaml'):
6466
file_path = os.path.join(root, filename)
6567
try:
66-
element = utils.load_yaml(file_path)
68+
element = utils.load_and_validate_yaml(file_path, self.schema_element)
6769

6870
element['real_path'] = file_path
6971
element['description_html'] = utils.to_html(element['description'])
@@ -343,7 +345,7 @@ def render_page(self, title, content):
343345

344346
def create_element_page(self, element):
345347
element_template = self.input_env.get_template('element.html')
346-
html_content = self.render_page(element['name'], element_template.render(element=element))
348+
html_content = self.render_page(element['name'].capitalize(), element_template.render(element=element))
347349

348350
web_path = f"/{element['name']}/"
349351
element_folder = OUTPUT_HTML_PATH + web_path
@@ -483,7 +485,7 @@ def create_category(self, web_path, category_data):
483485
def create_404_page(self):
484486
path_template = '404.html'
485487
template = self.input_env.get_template(path_template)
486-
html_content = self.render_page(path_template, template.render())
488+
html_content = self.render_page('Page not found', template.render())
487489

488490
output_path = os.path.join(OUTPUT_HTML_PATH, path_template)
489491
with open(output_path, 'w') as html_file:

0 commit comments

Comments
 (0)