Skip to content

Commit 8d806bd

Browse files
mvadariTapanito
andauthored
fix renaming categories issues (#400)
missed some bits Co-authored-by: Vito Tumas <5780819+Tapanito@users.noreply.github.com>
1 parent 248e2f3 commit 8d806bd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

site/assets/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,13 +309,13 @@ main {
309309
color: #ff6b35;
310310
}
311311

312-
.category-badge.community {
312+
.category-badge.ecosystem {
313313
border: 1px solid var(--color-purple-4);
314314
background-color: #2e1a4c;
315315
color: var(--color-purple-4);
316316
}
317317

318-
.category-badge.protocol {
318+
.category-badge.system {
319319
border: 1px solid #ffd700;
320320
background-color: #4c4200;
321321
color: #ffd700;

site/templates/category.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ <h2>{{ category.title() }} XLS Standards</h2>
2020
Amendment standards define changes to the core XRP Ledger protocol that
2121
require network consensus and activation through the amendment process.
2222
</p>
23-
{% elif category|lower == 'community' %}
23+
{% elif category|lower == 'ecosystem' %}
2424
<p>
2525
Ecosystem standards describe best practices, conventions, and guidelines
26-
for the XRP Ledger ecosystem that don't require protocol changes.
26+
for the XRP Ledger ecosystem that don't require on-chain changes.
2727
</p>
28-
{% elif category|lower == 'protocol' %}
28+
{% elif category|lower == 'system' %}
2929
<p>
3030
System standards specify XRP Ledger APIs, formats, and behaviors that
3131
don't require consensus changes but define how applications interact with

site/xls_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class XLSDocument:
2626
folder: str
2727
filename: str
2828
status: str # draft, final, stagnant, withdrawn, etc.
29-
category: str # amendment, community, protocol, etc.
29+
category: str # amendment, ecosystem, system, etc.
3030
created: str # YYYY-MM-DD format
3131

3232
def to_dict(self):

0 commit comments

Comments
 (0)