Public Access
14ffe53158
- manifest_read.php → metadata_read.php (+ wrapper) - manifest_detect.php → metadata_detect.php (+ wrapper) - manifest_element.php → metadata_element.php (+ wrapper) - manifest_integrity.php → metadata_integrity.php (+ wrapper) - manifest_licensing.php → metadata_licensing.php (+ wrapper) - .mokogitea/manifest.xml → .mokogitea/metadata.xml Old manifest_* files now require() the new metadata_* counterparts for backward compatibility with existing workflows and scripts.
5 lines
139 B
PHP
5 lines
139 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
// Backward-compatibility wrapper — manifest_* renamed to metadata_*
|
|
require __DIR__ . '/metadata_element.php';
|