~piersharding/udi/master-udi

« back to all changes in this revision

Viewing changes to queries/query.dtd

  • Committer: Piers Harding
  • Date: 2011-10-02 21:27:04 UTC
  • mfrom: (151.1.63)
  • Revision ID: git-v1:a3e8fccd857706bbe9f37a05061ddc2e2d0b8143
Merge branch 'master' into test-master-merge

Conflicts:
        lib/ds_ldap_pla.php
        lib/page.php

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
==========================================================================
 
3
 This is the DTD for phpLDAPAdmin Queries.
 
4
 
 
5
 Copyright (c) 2011
 
6
 
 
7
 Temporary URI for the DTD: http://phpldapadmin.sf.net/release/templates/query.dtd
 
8
 Validate your templates here: http://www.xmlvalidation.com
 
9
==========================================================================
 
10
-->
 
11
 
 
12
<!-- Query Definition -->
 
13
<!ELEMENT query (title,bases,filter,description,icon?,scope,visible?,attributes)>
 
14
 
 
15
<!-- Bases Definition -->
 
16
<!ELEMENT bases (base*)>
 
17
 
 
18
<!-- Attributes Definition -->
 
19
<!ELEMENT attributes (attribute*)>
 
20
<!ELEMENT attribute (display?,order?,ordersort?)?>
 
21
<!ATTLIST attribute id CDATA #REQUIRED>
 
22
 
 
23
<!-- Header Parameters -->
 
24
<!ELEMENT base (#PCDATA)>
 
25
<!ELEMENT title (#PCDATA)>
 
26
<!ELEMENT filter (#PCDATA)>
 
27
<!ELEMENT description (#PCDATA)>
 
28
<!ELEMENT icon (#PCDATA)>
 
29
<!ELEMENT scope (#PCDATA)>
 
30
<!ELEMENT visible (#PCDATA)>
 
31
 
 
32
<!-- Attribute Parameters -->
 
33
<!ELEMENT display (#PCDATA)>
 
34
<!ELEMENT order (#PCDATA)>
 
35
<!ELEMENT ordersort (#PCDATA)>