source: ISOcat/trunk/mod-ISOcat-access-data/dbx/administration-statuses.xml @ 2029

Last change on this file since 2029 was 2029, checked in by mwindhouwer, 12 years ago

Initial import of all the *cats, i.e., ISOcat, RELcat and SCHEMAcat.

File size: 689 bytes
Line 
1<dbx:transform
2        xmlns:dbx="http://www.windhouwer.nl/sloot/dbx"
3        xmlns:isocat="http://www.isocat.org/"
4        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5>
6        <dbx:process>
7                <statuses>
8                        <dbx:for-each table="pg_type">
9                                <dbx:project field="oid"/>
10                                <dbx:where field="typname" value="administration_status_enum" type="string"/>
11                                <dbx:for-each table="pg_enum">
12                                        <dbx:where field="enumtypid" select="$current/oid" type="integer"/>
13                                        <dbx:sort field="oid"/>
14                                        <administration_status>
15                                                <dbx:attribute name="status" field="enumlabel"/>
16                                        </administration_status>
17                                </dbx:for-each>
18                        </dbx:for-each>
19                </statuses>
20        </dbx:process>
21</dbx:transform>
22
Note: See TracBrowser for help on using the repository browser.