fix: update mokostandards xmlns to point to MokoStandards-API repo

Schema documentation lives alongside the API implementation.
Updated namespace URI in spec docs, XSD schema, PHP parser,
XML template, and self-referencing .mokostandards manifest.

Old: https://standards.mokoconsulting.tech/mokostandards/1.0
New: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan Miller
2026-05-05 14:44:17 -05:00
parent fe38765d03
commit 46a87d2a98
5 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -25,7 +25,7 @@ Legacy locations (`.mokostandards` at repo root, `.github/.mokostandards`) are a
## Format
The file is well-formed XML with no `.xml` extension. It uses the namespace `https://standards.mokoconsulting.tech/mokostandards/1.0` and is validated against `mokostandards-schema.xsd`.
The file is well-formed XML with no `.xml` extension. It uses the namespace `https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API` and is validated against `mokostandards-schema.xsd`.
## Sections
@@ -99,7 +99,7 @@ Per-repo exceptions to the platform definition:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<mokostandards xmlns="https://standards.mokoconsulting.tech/mokostandards/1.0"
<mokostandards xmlns="https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API"
schema-version="1.0">
<identity>
<name>MokoTesting</name>
@@ -117,7 +117,7 @@ Per-repo exceptions to the platform definition:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<mokostandards xmlns="https://standards.mokoconsulting.tech/mokostandards/1.0"
<mokostandards xmlns="https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API"
schema-version="1.0">
<identity>
+2 -2
View File
@@ -11,8 +11,8 @@
BRIEF: XML Schema Definition for the .mokostandards repository manifest file
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:moko="https://standards.mokoconsulting.tech/mokostandards/1.0"
targetNamespace="https://standards.mokoconsulting.tech/mokostandards/1.0"
xmlns:moko="https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API"
targetNamespace="https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API"
elementFormDefault="qualified"
version="1.0">