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:
@@ -5,7 +5,7 @@
|
||||
Manual edits to <governance> and <last-synced> may be overwritten.
|
||||
See: docs/standards/mokostandards-file-spec.md
|
||||
-->
|
||||
<mokostandards xmlns="https://standards.mokoconsulting.tech/mokostandards/1.0" schema-version="1.0">
|
||||
<mokostandards xmlns="https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API" schema-version="1.0">
|
||||
<identity>
|
||||
<name>MokoStandards-API</name>
|
||||
<org>MokoConsulting</org>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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">
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ use SimpleXMLElement;
|
||||
class MokoStandardsParser
|
||||
{
|
||||
public const SCHEMA_VERSION = '1.0';
|
||||
public const NAMESPACE_URI = 'https://standards.mokoconsulting.tech/mokostandards/1.0';
|
||||
public const NAMESPACE_URI = 'https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API';
|
||||
public const STANDARDS_SOURCE = 'https://git.mokoconsulting.tech/MokoConsulting/MokoStandards';
|
||||
|
||||
/** Valid platform slugs — must match definitions/default/*.tf filenames. */
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
Manual edits to <governance> and <last-synced> may be overwritten.
|
||||
See: docs/standards/mokostandards-file-spec.md
|
||||
-->
|
||||
<mokostandards xmlns="https://standards.mokoconsulting.tech/mokostandards/1.0"
|
||||
<mokostandards xmlns="https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API"
|
||||
schema-version="1.0">
|
||||
|
||||
<identity>
|
||||
|
||||
Reference in New Issue
Block a user