blob: b0a1cd39b1f3a16cc763ae39aef336fa3256a9da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?= '<?xml version="1.0" encoding="UTF-8"?>' ?>
<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/
http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd">
<responseDate><?=htmlReady($currentDate)?></responseDate>
<request verb=<?='"'.$verb.'"' ?>><?= htmlReady($request_url) ?></request>
<ListSets>
<? foreach ($tags as $tag) : ?>
<set>
<setSpec><?= htmlReady($tag->id) ?></setSpec>
<setName><?= htmlReady($tag->name) ?></setName>
</set>
<? endforeach ?>
</ListSets>
</OAI-PMH>
|