references_conf.dtd

来自「OPIAM stands for Open Identity and Acces」· DTD 代码 · 共 58 行

DTD
58
字号
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- reference lists service DTD -->

<!-- Top level element : set of base reference lists and search reference lists. -->
<!ELEMENT references (base-reference*, search-reference*)>

<!-- 
  Base reference list.
  This is a list built from a multi-valued attribute in a single directory entry.
    name : name of the list.
    scope : one of application, session, request.
              - application scoped lists are loaded at application startup (if the 
                directory is started, else at first use).
              - session scoped lists are loaded once for each user connection, at
                first use.
              - request scoped lists are loaded at each use.
    dn : entry dname
    attr : name of the attribute carrying the values
    parse : if false, the list labels and values are the attribute values
            if true, the attributes values are assumed to be formatted as
              value=label
-->
<!ELEMENT base-reference EMPTY>
<!ATTLIST base-reference
	name CDATA #REQUIRED
	scope CDATA #REQUIRED
	dn CDATA #REQUIRED
	attr CDATA #REQUIRED
	parse CDATA #REQUIRED
>

<!-- 
  Search reference list.
  This is a list built from an attribute stored in several directory entries.
    name : name of the list.
    scope : one of application, session, request.
              - application scoped lists are loaded at application startup (if the 
                directory is started, else at first use).
              - session scoped lists are loaded once for each user connection, at
                first use.
              - request scoped lists are loaded at each use.
    sort : if true, list elements are sorted on label values; if false, they are not.
    dn : dname of the search base
    filter : search filter
    labelattr : name of the attribute carrying the list element labels
    valueattr : name of the attribute carrying the list element values
-->
<!ELEMENT search-reference EMPTY>
<!ATTLIST search-reference
	name CDATA #REQUIRED
	scope CDATA #REQUIRED
	sort CDATA #IMPLIED
	dn CDATA #REQUIRED
	filter CDATA #REQUIRED
	labelattr CDATA #REQUIRED
	valueattr CDATA #REQUIRED
>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?