home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / doc / udisks / README < prev   
Encoding:
Text File  |  2009-12-01  |  2.1 KB  |  71 lines

  1. OVERVIEW
  2. ========
  3.  
  4. The udisks project provides
  5.  
  6.  o  A storage daemon that implements well-defined D-Bus interfaces
  7.     that can be used to query and manipulate storage devices.
  8.  
  9.  o  a command-line tool, udisks(1), that can be used to query and
  10.     use the daemon
  11.  
  12. LICENSE
  13. =======
  14.  
  15. See the COPYING file for the license.
  16.  
  17. VERSIONING and ABI STABILITY
  18. ============================
  19.  
  20. The udisks version number consists of three numbers separated by a .
  21.  
  22.  o  Major number indicating the feature version
  23.  
  24.  o  Minor number indicating the ABI for the current feature version
  25.  
  26.  o  Sub number indicating ABI additions
  27.  
  28. The ABI is guaranteed to be stable only when the major and minor
  29. number does not change. For example, an application expecting version
  30. 1.0.12 will work with any 1.0.x release (such as 1.0.99) as long as
  31. e.g. x >= 12.
  32.  
  33. The udisks version number can be obtained at compile time using
  34. pkg-config(1):
  35.  
  36.  $ pkg-config --modversion udisks
  37.  1.0.0
  38.  
  39. or any of the autoconf macros.
  40.  
  41. At run-time, the udisks version number can be obtained by querying the
  42. DaemonVersion property (of type 's') on the org.freedesktop.UDisks
  43. interface on the object /org/freedesktop/UDisks owned by the
  44. well-known name org.freedesktop.UDisks on the D-Bus system message
  45. bus. This property is guaranteed to always exist and contain the
  46. version number no matter what the ABI version is:
  47.  
  48.  $ dbus-send --system                             \
  49.              --print-reply                        \
  50.              --dest=org.freedesktop.UDisks        \
  51.              /org/freedesktop/UDisks              \
  52.              org.freedesktop.DBus.Properties.Get  \
  53.              string:org.freedesktop.UDisks        \
  54.              string:DaemonVersion
  55.   method return sender=:1.172 -> dest=:1.186 reply_serial=2
  56.      variant       string "1.0.0"
  57.  
  58. BUGS and DEVELOPMENT
  59. ====================
  60.  
  61. Please report bugs via the freedesktop.org bugzilla at
  62.  
  63.  http://bugs.freedesktop.org/enter_bug.cgi?product=udisks
  64.  
  65. For feature development use the devkit-devel mailing list (need to be
  66. subsribed to post)
  67.  
  68.  http://lists.freedesktop.org/archives/devkit-devel
  69.  
  70. See the HACKING file for details on code style.
  71.