common_cadline_libraries (CRM hardlock/db/users classes; upstream cadline_web/cadcommonlib), maintenance/ (ARCHLine.XP license backend; upstream cadline_web/maintenance), maintenance2/. Vetted live files (byte-truth); upstream repos in PROVENANCE.md. NOTE: could be git submodules — kept as live files for byte-fidelity. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
11 lines
227 B
PHP
11 lines
227 B
PHP
<?php
|
|
// TODO: Kivenni majd
|
|
header('Access-Control-Allow-Origin: *');
|
|
|
|
$xmlPathWebdav = '../../webdav/test_logs/' . $_GET['id'] . '.xml';
|
|
|
|
if (file_exists($xmlPathWebdav)) {
|
|
echo file_get_contents($xmlPathWebdav);
|
|
}
|
|
die();
|