2003-08-09 Anders Carlsson <andersca@codefactory.se>

* doc/TODO:
	* doc/busconfig.dtd:
	Add busconfig DTD.
This commit is contained in:
Anders Carlsson 2003-08-09 15:09:54 +00:00
parent 24f79b9a54
commit da35c6a4b0
3 changed files with 58 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2003-08-09 Anders Carlsson <andersca@codefactory.se>
* doc/TODO:
* doc/busconfig.dtd:
Add busconfig DTD.
2003-08-09 Anders Carlsson <andersca@codefactory.se>
* doc/dbus-specification.sgml:

View file

@ -48,8 +48,6 @@
after the message bus has processed your message but before the service has replied,
it would be nice if the message bus sent you an error reply.
- write a DTD for the dbus-daemon-1 configuration file
- build and install the Doxygen manual in Makefile when --enable-docs
- if you send the same message to multiple connections, the serial number

52
doc/busconfig.dtd Normal file
View file

@ -0,0 +1,52 @@
<!ELEMENT busconfig (user |
type |
fork |
listen |
pidfile |
includedir |
servicedir |
auth |
include |
policy |
limit)*>
<!ELEMENT user (#PCDATA)>
<!ELEMENT listen (#PCDATA)>
<!ELEMENT includedir (#PCDATA)>
<!ELEMENT servicedir (#PCDATA)>
<!ELEMENT auth (#PCDATA)>
<!ELEMENT type (#PCDATA)>
<!ELEMENT pidfile (#PCDATA)>
<!ELEMENT fork EMPTY>
<!ELEMENT include (#PCDATA)>
<!ATTLIST include
ignore_missing (yes|no) "yes">
<!ELEMENT policy (allow|deny)*>
<!ATTLIST policy
context (default|mandatory) #IMPLIED
user CDATA #IMPLIED
group CDATA #IMPLIED>
<!ELEMENT allow EMPTY>
<!ATTLIST allow
user CDATA #IMPLIED
send CDATA #IMPLIED
receive CDATA #IMPLIED
own CDATA #IMPLIED
send_to CDATA #IMPLIED
receive_from CDATA #IMPLIED>
<!ELEMENT deny EMPTY>
<!ATTLIST deny
user CDATA #IMPLIED
send CDATA #IMPLIED
receive CDATA #IMPLIED
own CDATA #IMPLIED
send_to CDATA #IMPLIED
receive_from CDATA #IMPLIED>
<!ELEMENT limit (#PCDATA)>
<!ATTLIST limit name CDATA #REQUIRED>