Select Git revision
Forked from
Digital Experience Group / UNL_Search
251 commits behind the upstream repository.
index.php 215 B
<?php
if (!isset($_GET['u'])) {
exit();
}
chdir(dirname(dirname(__FILE__)));
require_once 'UNL/Autoload.php';
header('Content-type:application/xml');
echo UNL_Search_CSEGenerator::generateCSE($_GET['u']);
?>