From 2b20415eab7d4556d9eb6e2674bf3144dbdfa82f Mon Sep 17 00:00:00 2001 From: Sanel Zukan Date: Fri, 1 Aug 2008 18:27:42 +0000 Subject: [PATCH] Added doc aboud dbus usage. Not filled yet thought. --- docs/Jamfile | 2 +- docs/dbus-usage.txt | 21 +++++++++++++++++++++ docs/index.txt | 1 + 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 docs/dbus-usage.txt diff --git a/docs/Jamfile b/docs/Jamfile index 4b3cbf4..1166b66 100644 --- a/docs/Jamfile +++ b/docs/Jamfile @@ -10,4 +10,4 @@ SubDir TOP docs ; -EdeManual index.txt introduction.txt jambuild.txt ; +EdeManual index.txt introduction.txt jambuild.txt dbus-usage.txt ; diff --git a/docs/dbus-usage.txt b/docs/dbus-usage.txt new file mode 100644 index 0000000..dca8dd1 --- /dev/null +++ b/docs/dbus-usage.txt @@ -0,0 +1,21 @@ +D-BUS usage in EDE +================== + +This document describes link:http://freedesktop.org/software/dbus/[D-BUS] usage in EDE applications. +It is not meant to describe D-BUS protocol nor how to use it either via libdbus nor edelib, but +to document and explain what programs listen or send data via D-BUS protocol. + +Naming convention +----------------- +EDE uses 'org.equinoxproject' as main namespace for interfaces and object paths, e.g. + +----------------------------------------------------------- + org.equinoxproject.Eiconman # eiconman interface + /org/equinoxproject/Eiconman # eiconman object path +----------------------------------------------------------- + +Applications +------------ + +eiconman +~~~~~~~~ diff --git a/docs/index.txt b/docs/index.txt index 79146da..cb68192 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -31,3 +31,4 @@ - link:HACKING.html[Contributing (in your spare time ;-)] - link:jambuild.html[Jam build] +- link:dbus-usage.html[D-BUS usage]