summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@codefactory.se>2003-08-09 15:09:54 +0000
committerAnders Carlsson <andersca@codefactory.se>2003-08-09 15:09:54 +0000
commitda35c6a4b005c3d2603c3ce932150981cd8ab14f (patch)
tree7f4f8ace51f80676849862120800874e8e8ce07a
parent24f79b9a545b94dbbe227e6be7915746ce7e8fc3 (diff)
2003-08-09 Anders Carlsson <andersca@codefactory.se>
* doc/TODO: * doc/busconfig.dtd: Add busconfig DTD.
-rw-r--r--ChangeLog6
-rw-r--r--doc/TODO2
-rw-r--r--doc/busconfig.dtd52
3 files changed, 58 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d93fe5f..0c9c56e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
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:
Add activation reply values.
diff --git a/doc/TODO b/doc/TODO
index 75ba7d86..0e56e1e7 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -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
diff --git a/doc/busconfig.dtd b/doc/busconfig.dtd
new file mode 100644
index 00000000..97c0b82e
--- /dev/null
+++ b/doc/busconfig.dtd
@@ -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>
+