Merge lp:~tom-leiming/udisks/bug435192 into lp:ubuntu/precise/udisks

Proposed by Ming Lei
Status: Rejected
Rejected by: Martin Pitt
Proposed branch: lp:~tom-leiming/udisks/bug435192
Merge into: lp:ubuntu/precise/udisks
Diff against target: 5256 lines (+747/-906)
22 files modified
debian/changelog (+5/-12)
debian/control (+1/-2)
debian/local/apport-hook.py (+2/-2)
doc/html/Adapter.html (+16/-16)
doc/html/Device.html (+233/-233)
doc/html/Expander.html (+17/-17)
doc/html/Port.html (+15/-15)
doc/html/UDisks.html (+82/-82)
doc/html/index.html (+3/-3)
doc/html/ix01.html (+236/-236)
doc/html/license.html (+2/-2)
doc/html/ref-dbus.html (+2/-2)
doc/html/tools-fileformats.html (+2/-2)
doc/html/udisks-daemon.8.html (+7/-7)
doc/html/udisks-tcp-bridge.1.html (+6/-6)
doc/html/udisks.1.html (+7/-7)
doc/html/udisks.7.html (+10/-10)
doc/html/udisks.devhelp (+0/-250)
policy/org.freedesktop.udisks.policy (+82/-0)
src/device.c (+17/-0)
src/marshal.c (+1/-1)
tools/udisks-marshal.c (+1/-1)
To merge this branch: bzr merge lp:~tom-leiming/udisks/bug435192
Reviewer Review Type Date Requested Status
Martin Pitt Disapprove
Review via email: mp+119457@code.launchpad.net

Description of the change

Add ro flag to mount if the disk is readonly

To post a comment you must log in.
Revision history for this message
Martin Pitt (pitti) wrote :

This will be/is fixed properly in ntfs-3g instead, see the bug. Thanks!

review: Disapprove

Unmerged revisions

36. By Ming Lei

Apply patch to fix mounting readonly block device

35. By Martin Pitt

* debian/tests/control: Add mtools dependency for VFAT test. (LP: #976269)
* debian/tests/control: Add policykit-1 dependency. (LP: #976266)
* Add 00git_rts_bpp_sdcard.patch: Mark rts_bpp devices as SD card readers.
  Patch also committed upstream. (LP: #971876)
* debian/local/apport-hook.py: Fix syntax to also work with Python 3.
* debian/control: Change the "cryptsetup" suggests to a "cryptsetup-bin"
  recommends, so that LUKS functionality works by default.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2012-03-13 09:57:01 +0000
3+++ debian/changelog 2012-08-14 01:15:24 +0000
4@@ -1,21 +1,14 @@
5-udisks (1.0.4-5ubuntu2) precise; urgency=low
6-
7- * Merge with Debian packaging git. Remaining Ubuntu changes:
8- - debian/control: Change the "cryptsetup" suggests to a "cryptsetup-bin"
9- recommends, so that LUKS functionality works by default. This change
10- needs to be kept in Ubuntu until the cryptsetup package split goes into
11- Debian as well. (LP: #343363)
12-
13- -- Martin Pitt <martin.pitt@ubuntu.com> Tue, 13 Mar 2012 09:57:01 +0100
14-
15-udisks (1.0.4-6) UNRELEASED; urgency=low
16+udisks (1.0.4-6) unstable; urgency=low
17
18 * debian/tests/control: Add mtools dependency for VFAT test. (LP: #976269)
19 * debian/tests/control: Add policykit-1 dependency. (LP: #976266)
20 * Add 00git_rts_bpp_sdcard.patch: Mark rts_bpp devices as SD card readers.
21 Patch also committed upstream. (LP: #971876)
22+ * debian/local/apport-hook.py: Fix syntax to also work with Python 3.
23+ * debian/control: Change the "cryptsetup" suggests to a "cryptsetup-bin"
24+ recommends, so that LUKS functionality works by default.
25
26- -- Martin Pitt <mpitt@debian.org> Thu, 12 Apr 2012 11:40:58 +0200
27+ -- Martin Pitt <mpitt@debian.org> Thu, 14 Jun 2012 17:07:57 +0200
28
29 udisks (1.0.4-5) unstable; urgency=low
30
31
32=== modified file 'debian/control'
33--- debian/control 2012-03-13 09:57:01 +0000
34+++ debian/control 2012-08-14 01:15:24 +0000
35@@ -1,8 +1,7 @@
36 Source: udisks
37 Section: admin
38 Priority: optional
39-Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
40-XSBC-Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
41+Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
42 Uploaders: Michael Biebl <biebl@debian.org>, Martin Pitt <mpitt@debian.org>
43 Build-Depends: debhelper (>= 8),
44 autotools-dev,
45
46=== modified file 'debian/local/apport-hook.py'
47--- debian/local/apport-hook.py 2010-02-23 11:25:25 +0000
48+++ debian/local/apport-hook.py 2012-08-14 01:15:24 +0000
49@@ -38,6 +38,6 @@
50 if __name__ == '__main__':
51 r = {}
52 add_info(r)
53- for k, v in r.iteritems():
54- print '%s: "%s"' % (k, v)
55+ for k, v in r.items():
56+ print('%s: "%s"' % (k, v))
57
58
59=== modified file 'doc/html/Adapter.html'
60--- doc/html/Adapter.html 2011-08-30 00:51:54 +0000
61+++ doc/html/Adapter.html 2012-08-14 01:15:24 +0000
62@@ -8,7 +8,7 @@
63 <link rel="up" href="ref-dbus.html" title="D-Bus API Reference">
64 <link rel="prev" href="Device.html" title="org.freedesktop.UDisks.Device">
65 <link rel="next" href="Expander.html" title="org.freedesktop.UDisks.Expander">
66-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
67+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
68 <link rel="stylesheet" href="style.css" type="text/css">
69 </head>
70 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
71@@ -46,12 +46,12 @@
72 <pre class="synopsis"></pre>
73 </div>
74 <div class="refsect1">
75-<a name="id423280"></a><h2>Signals</h2>
76+<a name="idp6905168"></a><h2>Signals</h2>
77 <pre class="synopsis"><a class="link" href="Adapter.html#Adapter::Changed">Changed</a> ()
78 </pre>
79 </div>
80 <div class="refsect1">
81-<a name="id447939"></a><h2>Implemented Interfaces</h2>
82+<a name="idp8752368"></a><h2>Implemented Interfaces</h2>
83 <p>
84 Objects implementing org.freedesktop.UDisks.Adapter also implements
85 org.freedesktop.DBus.Introspectable,
86@@ -59,7 +59,7 @@
87 </p>
88 </div>
89 <div class="refsect1">
90-<a name="id437599"></a><h2>Properties</h2>
91+<a name="idp8932656"></a><h2>Properties</h2>
92 <pre class="synopsis"><a class="link" href="Adapter.html#Adapter:NativePath">'NativePath'</a> read 's'
93 <a class="link" href="Adapter.html#Adapter:Vendor">'Vendor'</a> read 's'
94 <a class="link" href="Adapter.html#Adapter:Model">'Model'</a> read 's'
95@@ -69,7 +69,7 @@
96 </pre>
97 </div>
98 <div class="refsect1">
99-<a name="id418462"></a><h2>Description</h2>
100+<a name="idp6757712"></a><h2>Description</h2>
101 <p>
102
103 </p>
104@@ -81,12 +81,12 @@
105 </p>
106 </div>
107 <div class="refsect1">
108-<a name="id418481"></a><h2>Details</h2>
109+<a name="idp6759904"></a><h2>Details</h2>
110 </div>
111 <div class="refsect1">
112-<a name="id418493"></a><h2>Signal Details</h2>
113+<a name="idp6761344"></a><h2>Signal Details</h2>
114 <div class="refsect2">
115-<a name="id418501"></a><h3>
116+<a name="idp6762304"></a><h3>
117 <a name="Adapter::Changed"></a>The Changed signal</h3>
118 <pre class="programlisting">Changed ()</pre>
119 </div>
120@@ -99,9 +99,9 @@
121 </table></div>
122 </div>
123 <div class="refsect1">
124-<a name="id448339"></a><h2>Property Details</h2>
125+<a name="idp6559904"></a><h2>Property Details</h2>
126 <div class="refsect2">
127-<a name="id448349"></a><h3>
128+<a name="idp6561184"></a><h3>
129 <a name="Adapter:NativePath"></a>The "NativePath" property</h3>
130 <pre class="programlisting">'NativePath' read 's'
131 </pre>
132@@ -115,7 +115,7 @@
133 </table></div>
134 <hr>
135 <div class="refsect2">
136-<a name="id445300"></a><h3>
137+<a name="idp6827808"></a><h3>
138 <a name="Adapter:Vendor"></a>The "Vendor" property</h3>
139 <pre class="programlisting">'Vendor' read 's'
140 </pre>
141@@ -129,7 +129,7 @@
142 </table></div>
143 <hr>
144 <div class="refsect2">
145-<a name="id445341"></a><h3>
146+<a name="idp6832688"></a><h3>
147 <a name="Adapter:Model"></a>The "Model" property</h3>
148 <pre class="programlisting">'Model' read 's'
149 </pre>
150@@ -143,7 +143,7 @@
151 </table></div>
152 <hr>
153 <div class="refsect2">
154-<a name="id421111"></a><h3>
155+<a name="idp6837600"></a><h3>
156 <a name="Adapter:Driver"></a>The "Driver" property</h3>
157 <pre class="programlisting">'Driver' read 's'
158 </pre>
159@@ -157,7 +157,7 @@
160 </table></div>
161 <hr>
162 <div class="refsect2">
163-<a name="id421152"></a><h3>
164+<a name="idp6842528"></a><h3>
165 <a name="Adapter:NumPorts"></a>The "NumPorts" property</h3>
166 <pre class="programlisting">'NumPorts' read 'u'
167 </pre>
168@@ -186,7 +186,7 @@
169 </table></div>
170 <hr>
171 <div class="refsect2">
172-<a name="id421227"></a><h3>
173+<a name="idp10085264"></a><h3>
174 <a name="Adapter:Fabric"></a>The "Fabric" property</h3>
175 <pre class="programlisting">'Fabric' read 's'
176 </pre>
177@@ -219,6 +219,6 @@
178 </div>
179 <div class="footer">
180 <hr>
181- Generated by GTK-Doc V1.17</div>
182+ Generated by GTK-Doc V1.18</div>
183 </body>
184 </html>
185\ No newline at end of file
186
187=== modified file 'doc/html/Device.html'
188--- doc/html/Device.html 2011-08-30 00:51:54 +0000
189+++ doc/html/Device.html 2012-08-14 01:15:24 +0000
190@@ -8,7 +8,7 @@
191 <link rel="up" href="ref-dbus.html" title="D-Bus API Reference">
192 <link rel="prev" href="UDisks.html" title="org.freedesktop.UDisks">
193 <link rel="next" href="Adapter.html" title="org.freedesktop.UDisks.Adapter">
194-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
195+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
196 <link rel="stylesheet" href="style.css" type="text/css">
197 </head>
198 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
199@@ -106,7 +106,7 @@
200 </pre>
201 </div>
202 <div class="refsect1">
203-<a name="id426158"></a><h2>Signals</h2>
204+<a name="idp10627168"></a><h2>Signals</h2>
205 <pre class="synopsis"><a class="link" href="Device.html#Device::Changed">Changed</a> ()
206 <a class="link" href="Device.html#Device::JobChanged">JobChanged</a> ('b' job_in_progress,
207 'b' job_is_cancellable,
208@@ -116,7 +116,7 @@
209 </pre>
210 </div>
211 <div class="refsect1">
212-<a name="id458993"></a><h2>Implemented Interfaces</h2>
213+<a name="idp10630752"></a><h2>Implemented Interfaces</h2>
214 <p>
215 Objects implementing org.freedesktop.UDisks.Device also implements
216 org.freedesktop.DBus.Introspectable,
217@@ -124,7 +124,7 @@
218 </p>
219 </div>
220 <div class="refsect1">
221-<a name="id459010"></a><h2>Properties</h2>
222+<a name="idp10632784"></a><h2>Properties</h2>
223 <pre class="synopsis"><a class="link" href="Device.html#Device:NativePath">'NativePath'</a> read 's'
224 <a class="link" href="Device.html#Device:DeviceDetectionTime">'DeviceDetectionTime'</a> read 't'
225 <a class="link" href="Device.html#Device:DeviceMediaDetectionTime">'DeviceMediaDetectionTime'</a> read 't'
226@@ -261,7 +261,7 @@
227 </pre>
228 </div>
229 <div class="refsect1">
230-<a name="id412429"></a><h2>Description</h2>
231+<a name="idp5340704"></a><h2>Description</h2>
232 <p>
233
234 </p>
235@@ -311,9 +311,9 @@
236 </p>
237 </div>
238 <div class="refsect1">
239-<a name="id412524"></a><h2>Details</h2>
240+<a name="idp5352128"></a><h2>Details</h2>
241 <div class="refsect2">
242-<a name="id412532"></a><h3>
243+<a name="idp5353088"></a><h3>
244 <a name="Device.JobCancel"></a>JobCancel ()</h3>
245 <pre class="programlisting">JobCancel ()</pre>
246 </div>
247@@ -325,7 +325,7 @@
248 <tbody></tbody>
249 </table></div>
250 <div class="refsect3">
251-<a name="id412562"></a><h4>Errors</h4>
252+<a name="idp5356720"></a><h4>Errors</h4>
253 <div class="variablelist"><table border="0">
254 <col align="left" valign="top">
255 <tbody>
256@@ -341,7 +341,7 @@
257 </table></div>
258 </div>
259 <div class="refsect3">
260-<a name="id412592"></a><h4>Permissions</h4>
261+<a name="idp5360352"></a><h4>Permissions</h4>
262 <p class="permission">
263 The caller will need one of the following PolicyKit authorizations:
264 </p>
265@@ -352,7 +352,7 @@
266 </div>
267 <hr>
268 <div class="refsect2">
269-<a name="id412611"></a><h3>
270+<a name="idp5362608"></a><h3>
271 <a name="Device.PartitionTableCreate"></a>PartitionTableCreate ()</h3>
272 <pre class="programlisting">PartitionTableCreate (in 's' scheme,
273 in 'as' options)</pre>
274@@ -400,7 +400,7 @@
275 </tbody>
276 </table></div>
277 <div class="refsect3">
278-<a name="id412714"></a><h4>Errors</h4>
279+<a name="idp5375024"></a><h4>Errors</h4>
280 <div class="variablelist"><table border="0">
281 <col align="left" valign="top">
282 <tbody>
283@@ -424,7 +424,7 @@
284 </table></div>
285 </div>
286 <div class="refsect3">
287-<a name="id412767"></a><h4>Permissions</h4>
288+<a name="idp5381408"></a><h4>Permissions</h4>
289 <p class="permission">
290 The caller will need one of the following PolicyKit authorizations:
291 </p>
292@@ -443,7 +443,7 @@
293 </div>
294 <hr>
295 <div class="refsect2">
296-<a name="id412811"></a><h3>
297+<a name="idp5386768"></a><h3>
298 <a name="Device.PartitionDelete"></a>PartitionDelete ()</h3>
299 <pre class="programlisting">PartitionDelete (in 'as' options)</pre>
300 </div>
301@@ -458,7 +458,7 @@
302 </tr></tbody>
303 </table></div>
304 <div class="refsect3">
305-<a name="id412854"></a><h4>Errors</h4>
306+<a name="idp5391936"></a><h4>Errors</h4>
307 <div class="variablelist"><table border="0">
308 <col align="left" valign="top">
309 <tbody>
310@@ -482,7 +482,7 @@
311 </table></div>
312 </div>
313 <div class="refsect3">
314-<a name="id412908"></a><h4>Permissions</h4>
315+<a name="idp5398352"></a><h4>Permissions</h4>
316 <p class="permission">
317 The caller will need one of the following PolicyKit authorizations:
318 </p>
319@@ -501,7 +501,7 @@
320 </div>
321 <hr>
322 <div class="refsect2">
323-<a name="id412953"></a><h3>
324+<a name="idp5403712"></a><h3>
325 <a name="Device.PartitionCreate"></a>PartitionCreate ()</h3>
326 <pre class="programlisting">PartitionCreate (in 't' offset,
327 in 't' size,
328@@ -621,7 +621,7 @@
329 </tbody>
330 </table></div>
331 <div class="refsect3">
332-<a name="id413236"></a><h4>Errors</h4>
333+<a name="idp5437760"></a><h4>Errors</h4>
334 <div class="variablelist"><table border="0">
335 <col align="left" valign="top">
336 <tbody>
337@@ -645,7 +645,7 @@
338 </table></div>
339 </div>
340 <div class="refsect3">
341-<a name="id413290"></a><h4>Permissions</h4>
342+<a name="idp5444176"></a><h4>Permissions</h4>
343 <p class="permission">
344 The caller will need one of the following PolicyKit authorizations:
345 </p>
346@@ -664,7 +664,7 @@
347 </div>
348 <hr>
349 <div class="refsect2">
350-<a name="id413334"></a><h3>
351+<a name="idp5449536"></a><h3>
352 <a name="Device.PartitionModify"></a>PartitionModify ()</h3>
353 <pre class="programlisting">PartitionModify (in 's' type,
354 in 's' label,
355@@ -705,7 +705,7 @@
356 </tbody>
357 </table></div>
358 <div class="refsect3">
359-<a name="id413450"></a><h4>Errors</h4>
360+<a name="idp5463344"></a><h4>Errors</h4>
361 <div class="variablelist"><table border="0">
362 <col align="left" valign="top">
363 <tbody>
364@@ -729,7 +729,7 @@
365 </table></div>
366 </div>
367 <div class="refsect3">
368-<a name="id413503"></a><h4>Permissions</h4>
369+<a name="idp5469728"></a><h4>Permissions</h4>
370 <p class="permission">
371 The caller will need one of the following PolicyKit authorizations:
372 </p>
373@@ -748,7 +748,7 @@
374 </div>
375 <hr>
376 <div class="refsect2">
377-<a name="id413547"></a><h3>
378+<a name="idp5475088"></a><h3>
379 <a name="Device.FilesystemCreate"></a>FilesystemCreate ()</h3>
380 <pre class="programlisting">FilesystemCreate (in 's' fstype,
381 in 'as' options)</pre>
382@@ -792,7 +792,7 @@
383 </tbody>
384 </table></div>
385 <div class="refsect3">
386-<a name="id413652"></a><h4>Errors</h4>
387+<a name="idp5487600"></a><h4>Errors</h4>
388 <div class="variablelist"><table border="0">
389 <col align="left" valign="top">
390 <tbody>
391@@ -820,7 +820,7 @@
392 </table></div>
393 </div>
394 <div class="refsect3">
395-<a name="id413717"></a><h4>Permissions</h4>
396+<a name="idp5495392"></a><h4>Permissions</h4>
397 <p class="permission">
398 The caller will need one of the following PolicyKit authorizations:
399 </p>
400@@ -839,7 +839,7 @@
401 </div>
402 <hr>
403 <div class="refsect2">
404-<a name="id413761"></a><h3>
405+<a name="idp5500752"></a><h3>
406 <a name="Device.FilesystemSetLabel"></a>FilesystemSetLabel ()</h3>
407 <pre class="programlisting">FilesystemSetLabel (in 's' new_label)</pre>
408 </div>
409@@ -858,7 +858,7 @@
410 </tr></tbody>
411 </table></div>
412 <div class="refsect3">
413-<a name="id413819"></a><h4>Errors</h4>
414+<a name="idp5507616"></a><h4>Errors</h4>
415 <div class="variablelist"><table border="0">
416 <col align="left" valign="top">
417 <tbody>
418@@ -886,7 +886,7 @@
419 </table></div>
420 </div>
421 <div class="refsect3">
422-<a name="id413885"></a><h4>Permissions</h4>
423+<a name="idp11413920"></a><h4>Permissions</h4>
424 <p class="permission">
425 The caller will need one of the following PolicyKit authorizations:
426 </p>
427@@ -905,7 +905,7 @@
428 </div>
429 <hr>
430 <div class="refsect2">
431-<a name="id465734"></a><h3>
432+<a name="idp11418784"></a><h3>
433 <a name="Device.FilesystemMount"></a>FilesystemMount ()</h3>
434 <pre class="programlisting">FilesystemMount (in 's' filesystem_type,
435 in 'as' options,
436@@ -937,7 +937,7 @@
437 </tbody>
438 </table></div>
439 <div class="refsect3">
440-<a name="id465803"></a><h4>Errors</h4>
441+<a name="idp11427136"></a><h4>Errors</h4>
442 <div class="variablelist"><table border="0">
443 <col align="left" valign="top">
444 <tbody>
445@@ -969,7 +969,7 @@
446 </table></div>
447 </div>
448 <div class="refsect3">
449-<a name="id465879"></a><h4>Permissions</h4>
450+<a name="idp11436128"></a><h4>Permissions</h4>
451 <p class="permission">
452 The caller will need one of the following PolicyKit authorizations:
453 </p>
454@@ -988,7 +988,7 @@
455 </div>
456 <hr>
457 <div class="refsect2">
458-<a name="id465926"></a><h3>
459+<a name="idp11441712"></a><h3>
460 <a name="Device.FilesystemUnmount"></a>FilesystemUnmount ()</h3>
461 <pre class="programlisting">FilesystemUnmount (in 'as' options)</pre>
462 </div>
463@@ -1006,7 +1006,7 @@
464 </tr></tbody>
465 </table></div>
466 <div class="refsect3">
467-<a name="id465977"></a><h4>Errors</h4>
468+<a name="idp11447872"></a><h4>Errors</h4>
469 <div class="variablelist"><table border="0">
470 <col align="left" valign="top">
471 <tbody>
472@@ -1034,7 +1034,7 @@
473 </table></div>
474 </div>
475 <div class="refsect3">
476-<a name="id466044"></a><h4>Permissions</h4>
477+<a name="idp11455872"></a><h4>Permissions</h4>
478 <p class="permission">
479 The caller will need one of the following PolicyKit authorizations:
480 </p>
481@@ -1045,7 +1045,7 @@
482 </div>
483 <hr>
484 <div class="refsect2">
485-<a name="id466064"></a><h3>
486+<a name="idp11458256"></a><h3>
487 <a name="Device.FilesystemCheck"></a>FilesystemCheck ()</h3>
488 <pre class="programlisting">FilesystemCheck (in 'as' options,
489 out 'b' is_clean)</pre>
490@@ -1069,7 +1069,7 @@
491 </tbody>
492 </table></div>
493 <div class="refsect3">
494-<a name="id466120"></a><h4>Errors</h4>
495+<a name="idp11464960"></a><h4>Errors</h4>
496 <div class="variablelist"><table border="0">
497 <col align="left" valign="top">
498 <tbody>
499@@ -1093,7 +1093,7 @@
500 </table></div>
501 </div>
502 <div class="refsect3">
503-<a name="id466176"></a><h4>Permissions</h4>
504+<a name="idp11471648"></a><h4>Permissions</h4>
505 <p class="permission">
506 The caller will need one of the following PolicyKit authorizations:
507 </p>
508@@ -1112,7 +1112,7 @@
509 </div>
510 <hr>
511 <div class="refsect2">
512-<a name="id466222"></a><h3>
513+<a name="idp11477264"></a><h3>
514 <a name="Device.FilesystemListOpenFiles"></a>FilesystemListOpenFiles ()</h3>
515 <pre class="programlisting">FilesystemListOpenFiles (out 'a(uus)' processes)</pre>
516 </div>
517@@ -1131,7 +1131,7 @@
518 </tr></tbody>
519 </table></div>
520 <div class="refsect3">
521-<a name="id466280"></a><h4>Errors</h4>
522+<a name="idp11484208"></a><h4>Errors</h4>
523 <div class="variablelist"><table border="0">
524 <col align="left" valign="top">
525 <tbody>
526@@ -1151,7 +1151,7 @@
527 </table></div>
528 </div>
529 <div class="refsect3">
530-<a name="id466323"></a><h4>Permissions</h4>
531+<a name="idp11489456"></a><h4>Permissions</h4>
532 <p class="permission">
533 The caller will need one of the following PolicyKit authorizations:
534 </p>
535@@ -1170,7 +1170,7 @@
536 </div>
537 <hr>
538 <div class="refsect2">
539-<a name="id466370"></a><h3>
540+<a name="idp11495072"></a><h3>
541 <a name="Device.LuksUnlock"></a>LuksUnlock ()</h3>
542 <pre class="programlisting">LuksUnlock (in 's' passphrase,
543 in 'as' options,
544@@ -1197,7 +1197,7 @@
545 </tbody>
546 </table></div>
547 <div class="refsect3">
548-<a name="id466438"></a><h4>Errors</h4>
549+<a name="idp11503248"></a><h4>Errors</h4>
550 <div class="variablelist"><table border="0">
551 <col align="left" valign="top">
552 <tbody>
553@@ -1221,7 +1221,7 @@
554 </table></div>
555 </div>
556 <div class="refsect3">
557-<a name="id466492"></a><h4>Permissions</h4>
558+<a name="idp11509792"></a><h4>Permissions</h4>
559 <p class="permission">
560 The caller will need one of the following PolicyKit authorizations:
561 </p>
562@@ -1232,7 +1232,7 @@
563 </div>
564 <hr>
565 <div class="refsect2">
566-<a name="id466512"></a><h3>
567+<a name="idp11512144"></a><h3>
568 <a name="Device.LuksLock"></a>LuksLock ()</h3>
569 <pre class="programlisting">LuksLock (in 'as' options)</pre>
570 </div>
571@@ -1249,7 +1249,7 @@
572 </tr></tbody>
573 </table></div>
574 <div class="refsect3">
575-<a name="id466565"></a><h4>Errors</h4>
576+<a name="idp11518480"></a><h4>Errors</h4>
577 <div class="variablelist"><table border="0">
578 <col align="left" valign="top">
579 <tbody>
580@@ -1273,7 +1273,7 @@
581 </table></div>
582 </div>
583 <div class="refsect3">
584-<a name="id466620"></a><h4>Permissions</h4>
585+<a name="idp11525024"></a><h4>Permissions</h4>
586 <p class="permission">
587 The caller will need one of the following PolicyKit authorizations:
588 </p>
589@@ -1284,7 +1284,7 @@
590 </div>
591 <hr>
592 <div class="refsect2">
593-<a name="id466640"></a><h3>
594+<a name="idp11527424"></a><h3>
595 <a name="Device.LuksChangePassphrase"></a>LuksChangePassphrase ()</h3>
596 <pre class="programlisting">LuksChangePassphrase (in 's' current_passphrase,
597 in 's' new_passphrase)</pre>
598@@ -1306,7 +1306,7 @@
599 </tbody>
600 </table></div>
601 <div class="refsect3">
602-<a name="id466696"></a><h4>Errors</h4>
603+<a name="idp11534160"></a><h4>Errors</h4>
604 <div class="variablelist"><table border="0">
605 <col align="left" valign="top">
606 <tbody>
607@@ -1330,7 +1330,7 @@
608 </table></div>
609 </div>
610 <div class="refsect3">
611-<a name="id466751"></a><h4>Permissions</h4>
612+<a name="idp11540656"></a><h4>Permissions</h4>
613 <p class="permission">
614 The caller will need one of the following PolicyKit authorizations:
615 </p>
616@@ -1349,7 +1349,7 @@
617 </div>
618 <hr>
619 <div class="refsect2">
620-<a name="id466797"></a><h3>
621+<a name="idp11546208"></a><h3>
622 <a name="Device.LinuxMdAddSpare"></a>LinuxMdAddSpare ()</h3>
623 <pre class="programlisting">LinuxMdAddSpare (in 'o' component,
624 in 'as' options)</pre>
625@@ -1372,7 +1372,7 @@
626 </tbody>
627 </table></div>
628 <div class="refsect3">
629-<a name="id466853"></a><h4>Errors</h4>
630+<a name="idp11552960"></a><h4>Errors</h4>
631 <div class="variablelist"><table border="0">
632 <col align="left" valign="top">
633 <tbody>
634@@ -1396,7 +1396,7 @@
635 </table></div>
636 </div>
637 <div class="refsect3">
638-<a name="id466908"></a><h4>Permissions</h4>
639+<a name="idp11559520"></a><h4>Permissions</h4>
640 <p class="permission">
641 The caller will need the following PolicyKit authorization:
642 </p>
643@@ -1409,7 +1409,7 @@
644 </div>
645 <hr>
646 <div class="refsect2">
647-<a name="id466928"></a><h3>
648+<a name="idp11561904"></a><h3>
649 <a name="Device.LinuxMdExpand"></a>LinuxMdExpand ()</h3>
650 <pre class="programlisting">LinuxMdExpand (in 'ao' components,
651 in 'as' options)</pre>
652@@ -1431,7 +1431,7 @@
653 </tbody>
654 </table></div>
655 <div class="refsect3">
656-<a name="id466984"></a><h4>Errors</h4>
657+<a name="idp11568576"></a><h4>Errors</h4>
658 <div class="variablelist"><table border="0">
659 <col align="left" valign="top">
660 <tbody>
661@@ -1455,7 +1455,7 @@
662 </table></div>
663 </div>
664 <div class="refsect3">
665-<a name="id467038"></a><h4>Permissions</h4>
666+<a name="idp11575136"></a><h4>Permissions</h4>
667 <p class="permission">
668 The caller will need the following PolicyKit authorization:
669 </p>
670@@ -1468,7 +1468,7 @@
671 </div>
672 <hr>
673 <div class="refsect2">
674-<a name="id467058"></a><h3>
675+<a name="idp11577520"></a><h3>
676 <a name="Device.LinuxMdRemoveComponent"></a>LinuxMdRemoveComponent ()</h3>
677 <pre class="programlisting">LinuxMdRemoveComponent (in 'o' component,
678 in 'as' options)</pre>
679@@ -1492,7 +1492,7 @@
680 </tbody>
681 </table></div>
682 <div class="refsect3">
683-<a name="id467115"></a><h4>Errors</h4>
684+<a name="idp11584352"></a><h4>Errors</h4>
685 <div class="variablelist"><table border="0">
686 <col align="left" valign="top">
687 <tbody>
688@@ -1516,7 +1516,7 @@
689 </table></div>
690 </div>
691 <div class="refsect3">
692-<a name="id467170"></a><h4>Permissions</h4>
693+<a name="idp11590912"></a><h4>Permissions</h4>
694 <p class="permission">
695 The caller will need the following PolicyKit authorization:
696 </p>
697@@ -1529,7 +1529,7 @@
698 </div>
699 <hr>
700 <div class="refsect2">
701-<a name="id467190"></a><h3>
702+<a name="idp11593296"></a><h3>
703 <a name="Device.LinuxMdStop"></a>LinuxMdStop ()</h3>
704 <pre class="programlisting">LinuxMdStop (in 'as' options)</pre>
705 </div>
706@@ -1544,7 +1544,7 @@
707 </tr></tbody>
708 </table></div>
709 <div class="refsect3">
710-<a name="id467233"></a><h4>Errors</h4>
711+<a name="idp11598464"></a><h4>Errors</h4>
712 <div class="variablelist"><table border="0">
713 <col align="left" valign="top">
714 <tbody>
715@@ -1564,7 +1564,7 @@
716 </table></div>
717 </div>
718 <div class="refsect3">
719-<a name="id467276"></a><h4>Permissions</h4>
720+<a name="idp11603600"></a><h4>Permissions</h4>
721 <p class="permission">
722 The caller will need the following PolicyKit authorization:
723 </p>
724@@ -1577,7 +1577,7 @@
725 </div>
726 <hr>
727 <div class="refsect2">
728-<a name="id467296"></a><h3>
729+<a name="idp11605984"></a><h3>
730 <a name="Device.LinuxLvm2LVStop"></a>LinuxLvm2LVStop ()</h3>
731 <pre class="programlisting">LinuxLvm2LVStop (in 'as' options)</pre>
732 </div>
733@@ -1592,7 +1592,7 @@
734 </tr></tbody>
735 </table></div>
736 <div class="refsect3">
737-<a name="id467339"></a><h4>Errors</h4>
738+<a name="idp11611168"></a><h4>Errors</h4>
739 <div class="variablelist"><table border="0">
740 <col align="left" valign="top">
741 <tbody>
742@@ -1612,7 +1612,7 @@
743 </table></div>
744 </div>
745 <div class="refsect3">
746-<a name="id467382"></a><h4>Permissions</h4>
747+<a name="idp11616304"></a><h4>Permissions</h4>
748 <p class="permission">
749 The caller will need the following PolicyKit authorization:
750 </p>
751@@ -1625,7 +1625,7 @@
752 </div>
753 <hr>
754 <div class="refsect2">
755-<a name="id467401"></a><h3>
756+<a name="idp11618672"></a><h3>
757 <a name="Device.LinuxMdCheck"></a>LinuxMdCheck ()</h3>
758 <pre class="programlisting">LinuxMdCheck (in 'as' options,
759 out 't' number_of_errors)</pre>
760@@ -1655,7 +1655,7 @@
761 </tbody>
762 </table></div>
763 <div class="refsect3">
764-<a name="id467480"></a><h4>Errors</h4>
765+<a name="idp11628096"></a><h4>Errors</h4>
766 <div class="variablelist"><table border="0">
767 <col align="left" valign="top">
768 <tbody>
769@@ -1675,7 +1675,7 @@
770 </table></div>
771 </div>
772 <div class="refsect3">
773-<a name="id467523"></a><h4>Permissions</h4>
774+<a name="idp11633232"></a><h4>Permissions</h4>
775 <p class="permission">
776 The caller will need the following PolicyKit authorization:
777 </p>
778@@ -1688,7 +1688,7 @@
779 </div>
780 <hr>
781 <div class="refsect2">
782-<a name="id467542"></a><h3>
783+<a name="idp11635616"></a><h3>
784 <a name="Device.DriveInhibitPolling"></a>DriveInhibitPolling ()</h3>
785 <pre class="programlisting">DriveInhibitPolling (in 'as' options,
786 out 's' cookie)</pre>
787@@ -1714,7 +1714,7 @@
788 </tbody>
789 </table></div>
790 <div class="refsect3">
791-<a name="id467609"></a><h4>Errors</h4>
792+<a name="idp11643552"></a><h4>Errors</h4>
793 <div class="variablelist"><table border="0">
794 <col align="left" valign="top">
795 <tbody>
796@@ -1730,7 +1730,7 @@
797 </table></div>
798 </div>
799 <div class="refsect3">
800-<a name="id467639"></a><h4>Permissions</h4>
801+<a name="idp11647248"></a><h4>Permissions</h4>
802 <p class="permission">
803 The caller will need one of the following PolicyKit authorizations:
804 </p>
805@@ -1741,7 +1741,7 @@
806 </div>
807 <hr>
808 <div class="refsect2">
809-<a name="id467659"></a><h3>
810+<a name="idp11649600"></a><h3>
811 <a name="Device.DriveUninhibitPolling"></a>DriveUninhibitPolling ()</h3>
812 <pre class="programlisting">DriveUninhibitPolling (in 's' cookie)</pre>
813 </div>
814@@ -1759,7 +1759,7 @@
815 </tr></tbody>
816 </table></div>
817 <div class="refsect3">
818-<a name="id467712"></a><h4>Errors</h4>
819+<a name="idp11656080"></a><h4>Errors</h4>
820 <div class="variablelist"><table border="0">
821 <col align="left" valign="top">
822 <tbody><tr>
823@@ -1770,7 +1770,7 @@
824 </div>
825 <hr>
826 <div class="refsect2">
827-<a name="id467731"></a><h3>
828+<a name="idp11658320"></a><h3>
829 <a name="Device.DrivePollMedia"></a>DrivePollMedia ()</h3>
830 <pre class="programlisting">DrivePollMedia ()</pre>
831 </div>
832@@ -1784,7 +1784,7 @@
833 <tbody></tbody>
834 </table></div>
835 <div class="refsect3">
836-<a name="id467773"></a><h4>Errors</h4>
837+<a name="idp11663312"></a><h4>Errors</h4>
838 <div class="variablelist"><table border="0">
839 <col align="left" valign="top">
840 <tbody><tr>
841@@ -1794,7 +1794,7 @@
842 </table></div>
843 </div>
844 <div class="refsect3">
845-<a name="id467792"></a><h4>Permissions</h4>
846+<a name="idp11665536"></a><h4>Permissions</h4>
847 <p class="permission">
848 The caller will need one of the following PolicyKit authorizations:
849 </p>
850@@ -1805,7 +1805,7 @@
851 </div>
852 <hr>
853 <div class="refsect2">
854-<a name="id467811"></a><h3>
855+<a name="idp11667888"></a><h3>
856 <a name="Device.DriveEject"></a>DriveEject ()</h3>
857 <pre class="programlisting">DriveEject (in 'as' options)</pre>
858 </div>
859@@ -1820,7 +1820,7 @@
860 </tr></tbody>
861 </table></div>
862 <div class="refsect3">
863-<a name="id467856"></a><h4>Errors</h4>
864+<a name="idp11673232"></a><h4>Errors</h4>
865 <div class="variablelist"><table border="0">
866 <col align="left" valign="top">
867 <tbody>
868@@ -1848,7 +1848,7 @@
869 </table></div>
870 </div>
871 <div class="refsect3">
872-<a name="id467924"></a><h4>Permissions</h4>
873+<a name="idp11681312"></a><h4>Permissions</h4>
874 <p class="permission">
875 The caller will need one of the following PolicyKit authorizations:
876 </p>
877@@ -1859,7 +1859,7 @@
878 </div>
879 <hr>
880 <div class="refsect2">
881-<a name="id467943"></a><h3>
882+<a name="idp11683664"></a><h3>
883 <a name="Device.DriveDetach"></a>DriveDetach ()</h3>
884 <pre class="programlisting">DriveDetach (in 'as' options)</pre>
885 </div>
886@@ -1887,7 +1887,7 @@
887 </tr></tbody>
888 </table></div>
889 <div class="refsect3">
890-<a name="id468005"></a><h4>Errors</h4>
891+<a name="idp11691072"></a><h4>Errors</h4>
892 <div class="variablelist"><table border="0">
893 <col align="left" valign="top">
894 <tbody>
895@@ -1915,7 +1915,7 @@
896 </table></div>
897 </div>
898 <div class="refsect3">
899-<a name="id468072"></a><h4>Permissions</h4>
900+<a name="idp11699152"></a><h4>Permissions</h4>
901 <p class="permission">
902 The caller will need one of the following PolicyKit authorizations:
903 </p>
904@@ -1926,7 +1926,7 @@
905 </div>
906 <hr>
907 <div class="refsect2">
908-<a name="id468092"></a><h3>
909+<a name="idp11701488"></a><h3>
910 <a name="Device.DriveSetSpindownTimeout"></a>DriveSetSpindownTimeout ()</h3>
911 <pre class="programlisting">DriveSetSpindownTimeout (in 'i' timeout_seconds,
912 in 'as' options,
913@@ -1967,7 +1967,7 @@
914 </tbody>
915 </table></div>
916 <div class="refsect3">
917-<a name="id468189"></a><h4>Errors</h4>
918+<a name="idp11713088"></a><h4>Errors</h4>
919 <div class="variablelist"><table border="0">
920 <col align="left" valign="top">
921 <tbody>
922@@ -1987,7 +1987,7 @@
923 </table></div>
924 </div>
925 <div class="refsect3">
926-<a name="id468232"></a><h4>Permissions</h4>
927+<a name="idp11718240"></a><h4>Permissions</h4>
928 <p class="permission">
929 The caller will need one of the following PolicyKit authorizations:
930 </p>
931@@ -1998,7 +1998,7 @@
932 </div>
933 <hr>
934 <div class="refsect2">
935-<a name="id468251"></a><h3>
936+<a name="idp11720608"></a><h3>
937 <a name="Device.DriveUnsetSpindownTimeout"></a>DriveUnsetSpindownTimeout ()</h3>
938 <pre class="programlisting">DriveUnsetSpindownTimeout (in 's' cookie)</pre>
939 </div>
940@@ -2016,7 +2016,7 @@
941 </tr></tbody>
942 </table></div>
943 <div class="refsect3">
944-<a name="id468305"></a><h4>Errors</h4>
945+<a name="idp11727056"></a><h4>Errors</h4>
946 <div class="variablelist"><table border="0">
947 <col align="left" valign="top">
948 <tbody>
949@@ -2032,7 +2032,7 @@
950 </table></div>
951 </div>
952 <div class="refsect3">
953-<a name="id468336"></a><h4>Permissions</h4>
954+<a name="idp11730752"></a><h4>Permissions</h4>
955 <p class="permission">
956 The caller will need one of the following PolicyKit authorizations:
957 </p>
958@@ -2043,7 +2043,7 @@
959 </div>
960 <hr>
961 <div class="refsect2">
962-<a name="id468356"></a><h3>
963+<a name="idp11733120"></a><h3>
964 <a name="Device.DriveAtaSmartRefreshData"></a>DriveAtaSmartRefreshData ()</h3>
965 <pre class="programlisting">DriveAtaSmartRefreshData (in 'as' options)</pre>
966 </div>
967@@ -2066,7 +2066,7 @@
968 </tr></tbody>
969 </table></div>
970 <div class="refsect3">
971-<a name="id468426"></a><h4>Errors</h4>
972+<a name="idp11741584"></a><h4>Errors</h4>
973 <div class="variablelist"><table border="0">
974 <col align="left" valign="top">
975 <tbody>
976@@ -2086,7 +2086,7 @@
977 </table></div>
978 </div>
979 <div class="refsect3">
980-<a name="id468475"></a><h4>Permissions</h4>
981+<a name="idp11747440"></a><h4>Permissions</h4>
982 <p class="permission">
983 The caller will need one of the following PolicyKit authorizations:
984 </p>
985@@ -2097,7 +2097,7 @@
986 </div>
987 <hr>
988 <div class="refsect2">
989-<a name="id468495"></a><h3>
990+<a name="idp11749808"></a><h3>
991 <a name="Device.DriveAtaSmartInitiateSelftest"></a>DriveAtaSmartInitiateSelftest ()</h3>
992 <pre class="programlisting">DriveAtaSmartInitiateSelftest (in 's' test,
993 in 'as' options)</pre>
994@@ -2123,7 +2123,7 @@
995 </tbody>
996 </table></div>
997 <div class="refsect3">
998-<a name="id468552"></a><h4>Errors</h4>
999+<a name="idp11756704"></a><h4>Errors</h4>
1000 <div class="variablelist"><table border="0">
1001 <col align="left" valign="top">
1002 <tbody>
1003@@ -2143,7 +2143,7 @@
1004 </table></div>
1005 </div>
1006 <div class="refsect3">
1007-<a name="id468595"></a><h4>Permissions</h4>
1008+<a name="idp11761840"></a><h4>Permissions</h4>
1009 <p class="permission">
1010 The caller will need one of the following PolicyKit authorizations:
1011 </p>
1012@@ -2154,7 +2154,7 @@
1013 </div>
1014 <hr>
1015 <div class="refsect2">
1016-<a name="id468615"></a><h3>
1017+<a name="idp11764208"></a><h3>
1018 <a name="Device.DriveBenchmark"></a>DriveBenchmark ()</h3>
1019 <pre class="programlisting">DriveBenchmark (in 'b' do_write_benchmark,
1020 in 'as' options,
1021@@ -2212,7 +2212,7 @@
1022 </tbody>
1023 </table></div>
1024 <div class="refsect3">
1025-<a name="id468715"></a><h4>Errors</h4>
1026+<a name="idp11776192"></a><h4>Errors</h4>
1027 <div class="variablelist"><table border="0">
1028 <col align="left" valign="top">
1029 <tbody>
1030@@ -2232,7 +2232,7 @@
1031 </table></div>
1032 </div>
1033 <div class="refsect3">
1034-<a name="id468758"></a><h4>Permissions</h4>
1035+<a name="idp11781328"></a><h4>Permissions</h4>
1036 <p class="permission">
1037 The caller will need one of the following PolicyKit authorizations:
1038 </p>
1039@@ -2243,9 +2243,9 @@
1040 </div>
1041 </div>
1042 <div class="refsect1">
1043-<a name="id468779"></a><h2>Signal Details</h2>
1044+<a name="idp11783840"></a><h2>Signal Details</h2>
1045 <div class="refsect2">
1046-<a name="id468787"></a><h3>
1047+<a name="idp11784800"></a><h3>
1048 <a name="Device::Changed"></a>The Changed signal</h3>
1049 <pre class="programlisting">Changed ()</pre>
1050 </div>
1051@@ -2259,7 +2259,7 @@
1052 </table></div>
1053 <hr>
1054 <div class="refsect2">
1055-<a name="id468828"></a><h3>
1056+<a name="idp11789808"></a><h3>
1057 <a name="Device::JobChanged"></a>The JobChanged signal</h3>
1058 <pre class="programlisting">JobChanged ('b' job_in_progress,
1059 'b' job_is_cancellable,
1060@@ -2299,9 +2299,9 @@
1061 </table></div>
1062 </div>
1063 <div class="refsect1">
1064-<a name="id468922"></a><h2>Property Details</h2>
1065+<a name="idp11801152"></a><h2>Property Details</h2>
1066 <div class="refsect2">
1067-<a name="id468933"></a><h3>
1068+<a name="idp11802432"></a><h3>
1069 <a name="Device:NativePath"></a>The "NativePath" property</h3>
1070 <pre class="programlisting">'NativePath' read 's'
1071 </pre>
1072@@ -2315,7 +2315,7 @@
1073 </table></div>
1074 <hr>
1075 <div class="refsect2">
1076-<a name="id468982"></a><h3>
1077+<a name="idp11808336"></a><h3>
1078 <a name="Device:DeviceDetectionTime"></a>The "DeviceDetectionTime" property</h3>
1079 <pre class="programlisting">'DeviceDetectionTime' read 't'
1080 </pre>
1081@@ -2330,7 +2330,7 @@
1082 </table></div>
1083 <hr>
1084 <div class="refsect2">
1085-<a name="id469026"></a><h3>
1086+<a name="idp11813536"></a><h3>
1087 <a name="Device:DeviceMediaDetectionTime"></a>The "DeviceMediaDetectionTime" property</h3>
1088 <pre class="programlisting">'DeviceMediaDetectionTime' read 't'
1089 </pre>
1090@@ -2346,7 +2346,7 @@
1091 </table></div>
1092 <hr>
1093 <div class="refsect2">
1094-<a name="id469070"></a><h3>
1095+<a name="idp11818832"></a><h3>
1096 <a name="Device:DeviceMajor"></a>The "DeviceMajor" property</h3>
1097 <pre class="programlisting">'DeviceMajor' read 'x'
1098 </pre>
1099@@ -2360,7 +2360,7 @@
1100 </table></div>
1101 <hr>
1102 <div class="refsect2">
1103-<a name="id469112"></a><h3>
1104+<a name="idp11823920"></a><h3>
1105 <a name="Device:DeviceMinor"></a>The "DeviceMinor" property</h3>
1106 <pre class="programlisting">'DeviceMinor' read 'x'
1107 </pre>
1108@@ -2374,7 +2374,7 @@
1109 </table></div>
1110 <hr>
1111 <div class="refsect2">
1112-<a name="id469155"></a><h3>
1113+<a name="idp11829072"></a><h3>
1114 <a name="Device:DeviceFile"></a>The "DeviceFile" property</h3>
1115 <pre class="programlisting">'DeviceFile' read 's'
1116 </pre>
1117@@ -2388,7 +2388,7 @@
1118 </table></div>
1119 <hr>
1120 <div class="refsect2">
1121-<a name="id469204"></a><h3>
1122+<a name="idp11834880"></a><h3>
1123 <a name="Device:DeviceFilePresentation"></a>The "DeviceFilePresentation" property</h3>
1124 <pre class="programlisting">'DeviceFilePresentation' read 's'
1125 </pre>
1126@@ -2408,7 +2408,7 @@
1127 </table></div>
1128 <hr>
1129 <div class="refsect2">
1130-<a name="id469278"></a><h3>
1131+<a name="idp11843840"></a><h3>
1132 <a name="Device:DeviceFileById"></a>The "DeviceFileById" property</h3>
1133 <pre class="programlisting">'DeviceFileById' read 'as'
1134 </pre>
1135@@ -2424,7 +2424,7 @@
1136 </table></div>
1137 <hr>
1138 <div class="refsect2">
1139-<a name="id469334"></a><h3>
1140+<a name="idp11850480"></a><h3>
1141 <a name="Device:DeviceFileByPath"></a>The "DeviceFileByPath" property</h3>
1142 <pre class="programlisting">'DeviceFileByPath' read 'as'
1143 </pre>
1144@@ -2439,7 +2439,7 @@
1145 </table></div>
1146 <hr>
1147 <div class="refsect2">
1148-<a name="id469383"></a><h3>
1149+<a name="idp11856400"></a><h3>
1150 <a name="Device:DeviceIsSystemInternal"></a>The "DeviceIsSystemInternal" property</h3>
1151 <pre class="programlisting">'DeviceIsSystemInternal' read 'b'
1152 </pre>
1153@@ -2456,7 +2456,7 @@
1154 </table></div>
1155 <hr>
1156 <div class="refsect2">
1157-<a name="id469430"></a><h3>
1158+<a name="idp11861888"></a><h3>
1159 <a name="Device:DeviceIsPartition"></a>The "DeviceIsPartition" property</h3>
1160 <pre class="programlisting">'DeviceIsPartition' read 'b'
1161 </pre>
1162@@ -2470,7 +2470,7 @@
1163 </table></div>
1164 <hr>
1165 <div class="refsect2">
1166-<a name="id469473"></a><h3>
1167+<a name="idp11867120"></a><h3>
1168 <a name="Device:DeviceIsPartitionTable"></a>The "DeviceIsPartitionTable" property</h3>
1169 <pre class="programlisting">'DeviceIsPartitionTable' read 'b'
1170 </pre>
1171@@ -2484,7 +2484,7 @@
1172 </table></div>
1173 <hr>
1174 <div class="refsect2">
1175-<a name="id469516"></a><h3>
1176+<a name="idp11872368"></a><h3>
1177 <a name="Device:DeviceIsRemovable"></a>The "DeviceIsRemovable" property</h3>
1178 <pre class="programlisting">'DeviceIsRemovable' read 'b'
1179 </pre>
1180@@ -2498,7 +2498,7 @@
1181 </table></div>
1182 <hr>
1183 <div class="refsect2">
1184-<a name="id469559"></a><h3>
1185+<a name="idp11877552"></a><h3>
1186 <a name="Device:DeviceIsMediaAvailable"></a>The "DeviceIsMediaAvailable" property</h3>
1187 <pre class="programlisting">'DeviceIsMediaAvailable' read 'b'
1188 </pre>
1189@@ -2512,7 +2512,7 @@
1190 </table></div>
1191 <hr>
1192 <div class="refsect2">
1193-<a name="id469601"></a><h3>
1194+<a name="idp11882688"></a><h3>
1195 <a name="Device:DeviceIsMediaChangeDetected"></a>The "DeviceIsMediaChangeDetected" property</h3>
1196 <pre class="programlisting">'DeviceIsMediaChangeDetected' read 'b'
1197 </pre>
1198@@ -2526,7 +2526,7 @@
1199 </table></div>
1200 <hr>
1201 <div class="refsect2">
1202-<a name="id469644"></a><h3>
1203+<a name="idp11887840"></a><h3>
1204 <a name="Device:DeviceIsMediaChangeDetectionPolling"></a>The "DeviceIsMediaChangeDetectionPolling" property</h3>
1205 <pre class="programlisting">'DeviceIsMediaChangeDetectionPolling' read 'b'
1206 </pre>
1207@@ -2545,7 +2545,7 @@
1208 </table></div>
1209 <hr>
1210 <div class="refsect2">
1211-<a name="id469690"></a><h3>
1212+<a name="idp11893344"></a><h3>
1213 <a name="Device:DeviceIsMediaChangeDetectionInhibitable"></a>The "DeviceIsMediaChangeDetectionInhibitable" property</h3>
1214 <pre class="programlisting">'DeviceIsMediaChangeDetectionInhibitable' read 'b'
1215 </pre>
1216@@ -2559,7 +2559,7 @@
1217 </table></div>
1218 <hr>
1219 <div class="refsect2">
1220-<a name="id469735"></a><h3>
1221+<a name="idp11898656"></a><h3>
1222 <a name="Device:DeviceIsMediaChangeDetectionInhibited"></a>The "DeviceIsMediaChangeDetectionInhibited" property</h3>
1223 <pre class="programlisting">'DeviceIsMediaChangeDetectionInhibited' read 'b'
1224 </pre>
1225@@ -2573,7 +2573,7 @@
1226 </table></div>
1227 <hr>
1228 <div class="refsect2">
1229-<a name="id469779"></a><h3>
1230+<a name="idp11903920"></a><h3>
1231 <a name="Device:DeviceIsReadOnly"></a>The "DeviceIsReadOnly" property</h3>
1232 <pre class="programlisting">'DeviceIsReadOnly' read 'b'
1233 </pre>
1234@@ -2587,7 +2587,7 @@
1235 </table></div>
1236 <hr>
1237 <div class="refsect2">
1238-<a name="id469821"></a><h3>
1239+<a name="idp11908992"></a><h3>
1240 <a name="Device:DeviceIsDrive"></a>The "DeviceIsDrive" property</h3>
1241 <pre class="programlisting">'DeviceIsDrive' read 'b'
1242 </pre>
1243@@ -2602,7 +2602,7 @@
1244 </table></div>
1245 <hr>
1246 <div class="refsect2">
1247-<a name="id469864"></a><h3>
1248+<a name="idp11914176"></a><h3>
1249 <a name="Device:DeviceIsOpticalDisc"></a>The "DeviceIsOpticalDisc" property</h3>
1250 <pre class="programlisting">'DeviceIsOpticalDisc' read 'b'
1251 </pre>
1252@@ -2617,7 +2617,7 @@
1253 </table></div>
1254 <hr>
1255 <div class="refsect2">
1256-<a name="id469907"></a><h3>
1257+<a name="idp11919440"></a><h3>
1258 <a name="Device:DeviceIsMounted"></a>The "DeviceIsMounted" property</h3>
1259 <pre class="programlisting">'DeviceIsMounted' read 'b'
1260 </pre>
1261@@ -2631,7 +2631,7 @@
1262 </table></div>
1263 <hr>
1264 <div class="refsect2">
1265-<a name="id469949"></a><h3>
1266+<a name="idp11924512"></a><h3>
1267 <a name="Device:DeviceMountPaths"></a>The "DeviceMountPaths" property</h3>
1268 <pre class="programlisting">'DeviceMountPaths' read 'as'
1269 </pre>
1270@@ -2648,7 +2648,7 @@
1271 </table></div>
1272 <hr>
1273 <div class="refsect2">
1274-<a name="id470002"></a><h3>
1275+<a name="idp11930816"></a><h3>
1276 <a name="Device:DeviceMountedByUid"></a>The "DeviceMountedByUid" property</h3>
1277 <pre class="programlisting">'DeviceMountedByUid' read 'u'
1278 </pre>
1279@@ -2666,7 +2666,7 @@
1280 </table></div>
1281 <hr>
1282 <div class="refsect2">
1283-<a name="id470056"></a><h3>
1284+<a name="idp11937184"></a><h3>
1285 <a name="Device:DeviceIsLuks"></a>The "DeviceIsLuks" property</h3>
1286 <pre class="programlisting">'DeviceIsLuks' read 'b'
1287 </pre>
1288@@ -2680,7 +2680,7 @@
1289 </table></div>
1290 <hr>
1291 <div class="refsect2">
1292-<a name="id470099"></a><h3>
1293+<a name="idp11942304"></a><h3>
1294 <a name="Device:DeviceIsLuksCleartext"></a>The "DeviceIsLuksCleartext" property</h3>
1295 <pre class="programlisting">'DeviceIsLuksCleartext' read 'b'
1296 </pre>
1297@@ -2694,7 +2694,7 @@
1298 </table></div>
1299 <hr>
1300 <div class="refsect2">
1301-<a name="id470142"></a><h3>
1302+<a name="idp11947488"></a><h3>
1303 <a name="Device:DeviceIsLinuxMdComponent"></a>The "DeviceIsLinuxMdComponent" property</h3>
1304 <pre class="programlisting">'DeviceIsLinuxMdComponent' read 'b'
1305 </pre>
1306@@ -2708,7 +2708,7 @@
1307 </table></div>
1308 <hr>
1309 <div class="refsect2">
1310-<a name="id470185"></a><h3>
1311+<a name="idp11952688"></a><h3>
1312 <a name="Device:DeviceIsLinuxMd"></a>The "DeviceIsLinuxMd" property</h3>
1313 <pre class="programlisting">'DeviceIsLinuxMd' read 'b'
1314 </pre>
1315@@ -2722,7 +2722,7 @@
1316 </table></div>
1317 <hr>
1318 <div class="refsect2">
1319-<a name="id470228"></a><h3>
1320+<a name="idp11957872"></a><h3>
1321 <a name="Device:DeviceIsLinuxLvm2LV"></a>The "DeviceIsLinuxLvm2LV" property</h3>
1322 <pre class="programlisting">'DeviceIsLinuxLvm2LV' read 'b'
1323 </pre>
1324@@ -2736,7 +2736,7 @@
1325 </table></div>
1326 <hr>
1327 <div class="refsect2">
1328-<a name="id470271"></a><h3>
1329+<a name="idp11963104"></a><h3>
1330 <a name="Device:DeviceIsLinuxLvm2PV"></a>The "DeviceIsLinuxLvm2PV" property</h3>
1331 <pre class="programlisting">'DeviceIsLinuxLvm2PV' read 'b'
1332 </pre>
1333@@ -2750,7 +2750,7 @@
1334 </table></div>
1335 <hr>
1336 <div class="refsect2">
1337-<a name="id470314"></a><h3>
1338+<a name="idp11968272"></a><h3>
1339 <a name="Device:DeviceIsLinuxDmmpComponent"></a>The "DeviceIsLinuxDmmpComponent" property</h3>
1340 <pre class="programlisting">'DeviceIsLinuxDmmpComponent' read 'b'
1341 </pre>
1342@@ -2764,7 +2764,7 @@
1343 </table></div>
1344 <hr>
1345 <div class="refsect2">
1346-<a name="id470358"></a><h3>
1347+<a name="idp11973552"></a><h3>
1348 <a name="Device:DeviceIsLinuxDmmp"></a>The "DeviceIsLinuxDmmp" property</h3>
1349 <pre class="programlisting">'DeviceIsLinuxDmmp' read 'b'
1350 </pre>
1351@@ -2778,7 +2778,7 @@
1352 </table></div>
1353 <hr>
1354 <div class="refsect2">
1355-<a name="id470401"></a><h3>
1356+<a name="idp11978672"></a><h3>
1357 <a name="Device:DeviceIsLinuxLoop"></a>The "DeviceIsLinuxLoop" property</h3>
1358 <pre class="programlisting">'DeviceIsLinuxLoop' read 'b'
1359 </pre>
1360@@ -2792,7 +2792,7 @@
1361 </table></div>
1362 <hr>
1363 <div class="refsect2">
1364-<a name="id470443"></a><h3>
1365+<a name="idp11983792"></a><h3>
1366 <a name="Device:DeviceSize"></a>The "DeviceSize" property</h3>
1367 <pre class="programlisting">'DeviceSize' read 't'
1368 </pre>
1369@@ -2806,7 +2806,7 @@
1370 </table></div>
1371 <hr>
1372 <div class="refsect2">
1373-<a name="id470486"></a><h3>
1374+<a name="idp11988864"></a><h3>
1375 <a name="Device:DeviceBlockSize"></a>The "DeviceBlockSize" property</h3>
1376 <pre class="programlisting">'DeviceBlockSize' read 't'
1377 </pre>
1378@@ -2820,7 +2820,7 @@
1379 </table></div>
1380 <hr>
1381 <div class="refsect2">
1382-<a name="id470528"></a><h3>
1383+<a name="idp11993952"></a><h3>
1384 <a name="Device:DevicePresentationHide"></a>The "DevicePresentationHide" property</h3>
1385 <pre class="programlisting">'DevicePresentationHide' read 'b'
1386 </pre>
1387@@ -2834,7 +2834,7 @@
1388 </table></div>
1389 <hr>
1390 <div class="refsect2">
1391-<a name="id470572"></a><h3>
1392+<a name="idp11999104"></a><h3>
1393 <a name="Device:DevicePresentationNopolicy"></a>The "DevicePresentationNopolicy" property</h3>
1394 <pre class="programlisting">'DevicePresentationNopolicy' read 'b'
1395 </pre>
1396@@ -2849,7 +2849,7 @@
1397 </table></div>
1398 <hr>
1399 <div class="refsect2">
1400-<a name="id470615"></a><h3>
1401+<a name="idp12004368"></a><h3>
1402 <a name="Device:DevicePresentationName"></a>The "DevicePresentationName" property</h3>
1403 <pre class="programlisting">'DevicePresentationName' read 's'
1404 </pre>
1405@@ -2863,7 +2863,7 @@
1406 </table></div>
1407 <hr>
1408 <div class="refsect2">
1409-<a name="id470659"></a><h3>
1410+<a name="idp12009584"></a><h3>
1411 <a name="Device:DevicePresentationIconName"></a>The "DevicePresentationIconName" property</h3>
1412 <pre class="programlisting">'DevicePresentationIconName' read 's'
1413 </pre>
1414@@ -2878,7 +2878,7 @@
1415 </table></div>
1416 <hr>
1417 <div class="refsect2">
1418-<a name="id470703"></a><h3>
1419+<a name="idp12014928"></a><h3>
1420 <a name="Device:DeviceAutomountHint"></a>The "DeviceAutomountHint" property</h3>
1421 <pre class="programlisting">'DeviceAutomountHint' read 's'
1422 </pre>
1423@@ -2904,7 +2904,7 @@
1424 </table></div>
1425 <hr>
1426 <div class="refsect2">
1427-<a name="id470766"></a><h3>
1428+<a name="idp12022512"></a><h3>
1429 <a name="Device:JobInProgress"></a>The "JobInProgress" property</h3>
1430 <pre class="programlisting">'JobInProgress' read 'b'
1431 </pre>
1432@@ -2919,7 +2919,7 @@
1433 </table></div>
1434 <hr>
1435 <div class="refsect2">
1436-<a name="id470810"></a><h3>
1437+<a name="idp12027664"></a><h3>
1438 <a name="Device:JobId"></a>The "JobId" property</h3>
1439 <pre class="programlisting">'JobId' read 's'
1440 </pre>
1441@@ -2935,7 +2935,7 @@
1442 </table></div>
1443 <hr>
1444 <div class="refsect2">
1445-<a name="id470853"></a><h3>
1446+<a name="idp12032848"></a><h3>
1447 <a name="Device:JobInitiatedByUid"></a>The "JobInitiatedByUid" property</h3>
1448 <pre class="programlisting">'JobInitiatedByUid' read 'u'
1449 </pre>
1450@@ -2949,7 +2949,7 @@
1451 </table></div>
1452 <hr>
1453 <div class="refsect2">
1454-<a name="id470896"></a><h3>
1455+<a name="idp12038032"></a><h3>
1456 <a name="Device:JobIsCancellable"></a>The "JobIsCancellable" property</h3>
1457 <pre class="programlisting">'JobIsCancellable' read 'b'
1458 </pre>
1459@@ -2964,7 +2964,7 @@
1460 </table></div>
1461 <hr>
1462 <div class="refsect2">
1463-<a name="id470948"></a><h3>
1464+<a name="idp12044304"></a><h3>
1465 <a name="Device:JobPercentage"></a>The "JobPercentage" property</h3>
1466 <pre class="programlisting">'JobPercentage' read 'd'
1467 </pre>
1468@@ -2978,7 +2978,7 @@
1469 </table></div>
1470 <hr>
1471 <div class="refsect2">
1472-<a name="id470990"></a><h3>
1473+<a name="idp12049424"></a><h3>
1474 <a name="Device:IdUsage"></a>The "IdUsage" property</h3>
1475 <pre class="programlisting">'IdUsage' read 's'
1476 </pre>
1477@@ -3011,7 +3011,7 @@
1478 </table></div>
1479 <hr>
1480 <div class="refsect2">
1481-<a name="id471074"></a><h3>
1482+<a name="idp12059504"></a><h3>
1483 <a name="Device:IdType"></a>The "IdType" property</h3>
1484 <pre class="programlisting">'IdType' read 's'
1485 </pre>
1486@@ -3064,7 +3064,7 @@
1487 </table></div>
1488 <hr>
1489 <div class="refsect2">
1490-<a name="id471253"></a><h3>
1491+<a name="idp12080976"></a><h3>
1492 <a name="Device:IdVersion"></a>The "IdVersion" property</h3>
1493 <pre class="programlisting">'IdVersion' read 's'
1494 </pre>
1495@@ -3083,7 +3083,7 @@
1496 </table></div>
1497 <hr>
1498 <div class="refsect2">
1499-<a name="id471315"></a><h3>
1500+<a name="idp12088400"></a><h3>
1501 <a name="Device:IdUuid"></a>The "IdUuid" property</h3>
1502 <pre class="programlisting">'IdUuid' read 's'
1503 </pre>
1504@@ -3102,7 +3102,7 @@
1505 </table></div>
1506 <hr>
1507 <div class="refsect2">
1508-<a name="id471377"></a><h3>
1509+<a name="idp12095904"></a><h3>
1510 <a name="Device:IdLabel"></a>The "IdLabel" property</h3>
1511 <pre class="programlisting">'IdLabel' read 's'
1512 </pre>
1513@@ -3121,7 +3121,7 @@
1514 </table></div>
1515 <hr>
1516 <div class="refsect2">
1517-<a name="id471439"></a><h3>
1518+<a name="idp12103328"></a><h3>
1519 <a name="Device:LuksHolder"></a>The "LuksHolder" property</h3>
1520 <pre class="programlisting">'LuksHolder' read 'o'
1521 </pre>
1522@@ -3138,7 +3138,7 @@
1523 </table></div>
1524 <hr>
1525 <div class="refsect2">
1526-<a name="id471492"></a><h3>
1527+<a name="idp12109632"></a><h3>
1528 <a name="Device:LuksCleartextSlave"></a>The "LuksCleartextSlave" property</h3>
1529 <pre class="programlisting">'LuksCleartextSlave' read 'o'
1530 </pre>
1531@@ -3155,7 +3155,7 @@
1532 </table></div>
1533 <hr>
1534 <div class="refsect2">
1535-<a name="id471544"></a><h3>
1536+<a name="idp12115968"></a><h3>
1537 <a name="Device:LuksCleartextUnlockedByUid"></a>The "LuksCleartextUnlockedByUid" property</h3>
1538 <pre class="programlisting">'LuksCleartextUnlockedByUid' read 'u'
1539 </pre>
1540@@ -3173,7 +3173,7 @@
1541 </table></div>
1542 <hr>
1543 <div class="refsect2">
1544-<a name="id471598"></a><h3>
1545+<a name="idp12122400"></a><h3>
1546 <a name="Device:PartitionSlave"></a>The "PartitionSlave" property</h3>
1547 <pre class="programlisting">'PartitionSlave' read 'o'
1548 </pre>
1549@@ -3190,7 +3190,7 @@
1550 </table></div>
1551 <hr>
1552 <div class="refsect2">
1553-<a name="id471651"></a><h3>
1554+<a name="idp12128704"></a><h3>
1555 <a name="Device:PartitionScheme"></a>The "PartitionScheme" property</h3>
1556 <pre class="programlisting">'PartitionScheme' read 's'
1557 </pre>
1558@@ -3210,7 +3210,7 @@
1559 </table></div>
1560 <hr>
1561 <div class="refsect2">
1562-<a name="id471720"></a><h3>
1563+<a name="idp12136944"></a><h3>
1564 <a name="Device:PartitionType"></a>The "PartitionType" property</h3>
1565 <pre class="programlisting">'PartitionType' read 's'
1566 </pre>
1567@@ -3230,7 +3230,7 @@
1568 </table></div>
1569 <hr>
1570 <div class="refsect2">
1571-<a name="id471788"></a><h3>
1572+<a name="idp12145136"></a><h3>
1573 <a name="Device:PartitionLabel"></a>The "PartitionLabel" property</h3>
1574 <pre class="programlisting">'PartitionLabel' read 's'
1575 </pre>
1576@@ -3250,7 +3250,7 @@
1577 </table></div>
1578 <hr>
1579 <div class="refsect2">
1580-<a name="id471857"></a><h3>
1581+<a name="idp12153392"></a><h3>
1582 <a name="Device:PartitionUuid"></a>The "PartitionUuid" property</h3>
1583 <pre class="programlisting">'PartitionUuid' read 's'
1584 </pre>
1585@@ -3270,7 +3270,7 @@
1586 </table></div>
1587 <hr>
1588 <div class="refsect2">
1589-<a name="id471926"></a><h3>
1590+<a name="idp12161584"></a><h3>
1591 <a name="Device:PartitionFlags"></a>The "PartitionFlags" property</h3>
1592 <pre class="programlisting">'PartitionFlags' read 'as'
1593 </pre>
1594@@ -3290,7 +3290,7 @@
1595 </table></div>
1596 <hr>
1597 <div class="refsect2">
1598-<a name="id471994"></a><h3>
1599+<a name="idp12169824"></a><h3>
1600 <a name="Device:PartitionNumber"></a>The "PartitionNumber" property</h3>
1601 <pre class="programlisting">'PartitionNumber' read 'i'
1602 </pre>
1603@@ -3309,7 +3309,7 @@
1604 </table></div>
1605 <hr>
1606 <div class="refsect2">
1607-<a name="id472047"></a><h3>
1608+<a name="idp12176272"></a><h3>
1609 <a name="Device:PartitionOffset"></a>The "PartitionOffset" property</h3>
1610 <pre class="programlisting">'PartitionOffset' read 't'
1611 </pre>
1612@@ -3327,7 +3327,7 @@
1613 </table></div>
1614 <hr>
1615 <div class="refsect2">
1616-<a name="id472110"></a><h3>
1617+<a name="idp12183808"></a><h3>
1618 <a name="Device:PartitionSize"></a>The "PartitionSize" property</h3>
1619 <pre class="programlisting">'PartitionSize' read 't'
1620 </pre>
1621@@ -3344,7 +3344,7 @@
1622 </table></div>
1623 <hr>
1624 <div class="refsect2">
1625-<a name="id472162"></a><h3>
1626+<a name="idp12190144"></a><h3>
1627 <a name="Device:PartitionAlignmentOffset"></a>The "PartitionAlignmentOffset" property</h3>
1628 <pre class="programlisting">'PartitionAlignmentOffset' read 't'
1629 </pre>
1630@@ -3363,7 +3363,7 @@
1631 </table></div>
1632 <hr>
1633 <div class="refsect2">
1634-<a name="id472216"></a><h3>
1635+<a name="idp12196560"></a><h3>
1636 <a name="Device:PartitionTableScheme"></a>The "PartitionTableScheme" property</h3>
1637 <pre class="programlisting">'PartitionTableScheme' read 's'
1638 </pre>
1639@@ -3383,7 +3383,7 @@
1640 </table></div>
1641 <hr>
1642 <div class="refsect2">
1643-<a name="id472286"></a><h3>
1644+<a name="idp12204800"></a><h3>
1645 <a name="Device:PartitionTableCount"></a>The "PartitionTableCount" property</h3>
1646 <pre class="programlisting">'PartitionTableCount' read 'i'
1647 </pre>
1648@@ -3400,7 +3400,7 @@
1649 </table></div>
1650 <hr>
1651 <div class="refsect2">
1652-<a name="id472338"></a><h3>
1653+<a name="idp12211184"></a><h3>
1654 <a name="Device:DriveVendor"></a>The "DriveVendor" property</h3>
1655 <pre class="programlisting">'DriveVendor' read 's'
1656 </pre>
1657@@ -3417,7 +3417,7 @@
1658 </table></div>
1659 <hr>
1660 <div class="refsect2">
1661-<a name="id472403"></a><h3>
1662+<a name="idp12218960"></a><h3>
1663 <a name="Device:DriveModel"></a>The "DriveModel" property</h3>
1664 <pre class="programlisting">'DriveModel' read 's'
1665 </pre>
1666@@ -3434,7 +3434,7 @@
1667 </table></div>
1668 <hr>
1669 <div class="refsect2">
1670-<a name="id472467"></a><h3>
1671+<a name="idp12226672"></a><h3>
1672 <a name="Device:DriveRevision"></a>The "DriveRevision" property</h3>
1673 <pre class="programlisting">'DriveRevision' read 's'
1674 </pre>
1675@@ -3451,7 +3451,7 @@
1676 </table></div>
1677 <hr>
1678 <div class="refsect2">
1679-<a name="id472532"></a><h3>
1680+<a name="idp12234432"></a><h3>
1681 <a name="Device:DriveSerial"></a>The "DriveSerial" property</h3>
1682 <pre class="programlisting">'DriveSerial' read 's'
1683 </pre>
1684@@ -3469,7 +3469,7 @@
1685 </table></div>
1686 <hr>
1687 <div class="refsect2">
1688-<a name="id472596"></a><h3>
1689+<a name="idp12242224"></a><h3>
1690 <a name="Device:DriveWwn"></a>The "DriveWwn" property</h3>
1691 <pre class="programlisting">'DriveWwn' read 's'
1692 </pre>
1693@@ -3488,7 +3488,7 @@
1694 </table></div>
1695 <hr>
1696 <div class="refsect2">
1697-<a name="id472661"></a><h3>
1698+<a name="idp12250048"></a><h3>
1699 <a name="Device:DriveRotationRate"></a>The "DriveRotationRate" property</h3>
1700 <pre class="programlisting">'DriveRotationRate' read 'u'
1701 </pre>
1702@@ -3508,7 +3508,7 @@
1703 </table></div>
1704 <hr>
1705 <div class="refsect2">
1706-<a name="id472724"></a><h3>
1707+<a name="idp12257648"></a><h3>
1708 <a name="Device:DriveWriteCache"></a>The "DriveWriteCache" property</h3>
1709 <pre class="programlisting">'DriveWriteCache' read 's'
1710 </pre>
1711@@ -3526,7 +3526,7 @@
1712 </table></div>
1713 <hr>
1714 <div class="refsect2">
1715-<a name="id472777"></a><h3>
1716+<a name="idp12264000"></a><h3>
1717 <a name="Device:DriveConnectionInterface"></a>The "DriveConnectionInterface" property</h3>
1718 <pre class="programlisting">'DriveConnectionInterface' read 's'
1719 </pre>
1720@@ -3568,7 +3568,7 @@
1721 </table></div>
1722 <hr>
1723 <div class="refsect2">
1724-<a name="id472906"></a><h3>
1725+<a name="idp12279392"></a><h3>
1726 <a name="Device:DriveConnectionSpeed"></a>The "DriveConnectionSpeed" property</h3>
1727 <pre class="programlisting">'DriveConnectionSpeed' read 't'
1728 </pre>
1729@@ -3586,7 +3586,7 @@
1730 </table></div>
1731 <hr>
1732 <div class="refsect2">
1733-<a name="id472959"></a><h3>
1734+<a name="idp12285840"></a><h3>
1735 <a name="Device:DriveMediaCompatibility"></a>The "DriveMediaCompatibility" property</h3>
1736 <pre class="programlisting">'DriveMediaCompatibility' read 'as'
1737 </pre>
1738@@ -3674,7 +3674,7 @@
1739 </table></div>
1740 <hr>
1741 <div class="refsect2">
1742-<a name="id473240"></a><h3>
1743+<a name="idp12319552"></a><h3>
1744 <a name="Device:DriveMedia"></a>The "DriveMedia" property</h3>
1745 <pre class="programlisting">'DriveMedia' read 's'
1746 </pre>
1747@@ -3694,7 +3694,7 @@
1748 </table></div>
1749 <hr>
1750 <div class="refsect2">
1751-<a name="id473303"></a><h3>
1752+<a name="idp12327136"></a><h3>
1753 <a name="Device:DriveIsMediaEjectable"></a>The "DriveIsMediaEjectable" property</h3>
1754 <pre class="programlisting">'DriveIsMediaEjectable' read 'b'
1755 </pre>
1756@@ -3712,7 +3712,7 @@
1757 </table></div>
1758 <hr>
1759 <div class="refsect2">
1760-<a name="id473356"></a><h3>
1761+<a name="idp12333536"></a><h3>
1762 <a name="Device:DriveCanDetach"></a>The "DriveCanDetach" property</h3>
1763 <pre class="programlisting">'DriveCanDetach' read 'b'
1764 </pre>
1765@@ -3730,7 +3730,7 @@
1766 </table></div>
1767 <hr>
1768 <div class="refsect2">
1769-<a name="id473409"></a><h3>
1770+<a name="idp12339872"></a><h3>
1771 <a name="Device:DriveCanSpindown"></a>The "DriveCanSpindown" property</h3>
1772 <pre class="programlisting">'DriveCanSpindown' read 'b'
1773 </pre>
1774@@ -3748,7 +3748,7 @@
1775 </table></div>
1776 <hr>
1777 <div class="refsect2">
1778-<a name="id473463"></a><h3>
1779+<a name="idp12346224"></a><h3>
1780 <a name="Device:DriveIsRotational"></a>The "DriveIsRotational" property</h3>
1781 <pre class="programlisting">'DriveIsRotational' read 'b'
1782 </pre>
1783@@ -3765,7 +3765,7 @@
1784 </table></div>
1785 <hr>
1786 <div class="refsect2">
1787-<a name="id473516"></a><h3>
1788+<a name="idp12352544"></a><h3>
1789 <a name="Device:DriveAdapter"></a>The "DriveAdapter" property</h3>
1790 <pre class="programlisting">'DriveAdapter' read 'o'
1791 </pre>
1792@@ -3782,7 +3782,7 @@
1793 </table></div>
1794 <hr>
1795 <div class="refsect2">
1796-<a name="id473568"></a><h3>
1797+<a name="idp12358848"></a><h3>
1798 <a name="Device:DrivePorts"></a>The "DrivePorts" property</h3>
1799 <pre class="programlisting">'DrivePorts' read 'ao'
1800 </pre>
1801@@ -3799,7 +3799,7 @@
1802 </table></div>
1803 <hr>
1804 <div class="refsect2">
1805-<a name="id473621"></a><h3>
1806+<a name="idp12365152"></a><h3>
1807 <a name="Device:DriveSimilarDevices"></a>The "DriveSimilarDevices" property</h3>
1808 <pre class="programlisting">'DriveSimilarDevices' read 'ao'
1809 </pre>
1810@@ -3828,7 +3828,7 @@
1811 </table></div>
1812 <hr>
1813 <div class="refsect2">
1814-<a name="id473716"></a><h3>
1815+<a name="idp12376544"></a><h3>
1816 <a name="Device:OpticalDiscIsBlank"></a>The "OpticalDiscIsBlank" property</h3>
1817 <pre class="programlisting">'OpticalDiscIsBlank' read 'b'
1818 </pre>
1819@@ -3845,7 +3845,7 @@
1820 </table></div>
1821 <hr>
1822 <div class="refsect2">
1823-<a name="id473770"></a><h3>
1824+<a name="idp12382864"></a><h3>
1825 <a name="Device:OpticalDiscIsAppendable"></a>The "OpticalDiscIsAppendable" property</h3>
1826 <pre class="programlisting">'OpticalDiscIsAppendable' read 'b'
1827 </pre>
1828@@ -3862,7 +3862,7 @@
1829 </table></div>
1830 <hr>
1831 <div class="refsect2">
1832-<a name="id473822"></a><h3>
1833+<a name="idp12389200"></a><h3>
1834 <a name="Device:OpticalDiscIsClosed"></a>The "OpticalDiscIsClosed" property</h3>
1835 <pre class="programlisting">'OpticalDiscIsClosed' read 'b'
1836 </pre>
1837@@ -3879,7 +3879,7 @@
1838 </table></div>
1839 <hr>
1840 <div class="refsect2">
1841-<a name="id473875"></a><h3>
1842+<a name="idp12395584"></a><h3>
1843 <a name="Device:OpticalDiscNumTracks"></a>The "OpticalDiscNumTracks" property</h3>
1844 <pre class="programlisting">'OpticalDiscNumTracks' read 'u'
1845 </pre>
1846@@ -3896,7 +3896,7 @@
1847 </table></div>
1848 <hr>
1849 <div class="refsect2">
1850-<a name="id473928"></a><h3>
1851+<a name="idp12401888"></a><h3>
1852 <a name="Device:OpticalDiscNumAudioTracks"></a>The "OpticalDiscNumAudioTracks" property</h3>
1853 <pre class="programlisting">'OpticalDiscNumAudioTracks' read 'u'
1854 </pre>
1855@@ -3913,7 +3913,7 @@
1856 </table></div>
1857 <hr>
1858 <div class="refsect2">
1859-<a name="id473981"></a><h3>
1860+<a name="idp12408320"></a><h3>
1861 <a name="Device:OpticalDiscNumSessions"></a>The "OpticalDiscNumSessions" property</h3>
1862 <pre class="programlisting">'OpticalDiscNumSessions' read 'u'
1863 </pre>
1864@@ -3930,7 +3930,7 @@
1865 </table></div>
1866 <hr>
1867 <div class="refsect2">
1868-<a name="id474034"></a><h3>
1869+<a name="idp12414704"></a><h3>
1870 <a name="Device:DriveAtaSmartIsAvailable"></a>The "DriveAtaSmartIsAvailable" property</h3>
1871 <pre class="programlisting">'DriveAtaSmartIsAvailable' read 'b'
1872 </pre>
1873@@ -3944,7 +3944,7 @@
1874 </table></div>
1875 <hr>
1876 <div class="refsect2">
1877-<a name="id474078"></a><h3>
1878+<a name="idp12419888"></a><h3>
1879 <a name="Device:DriveAtaSmartTimeCollected"></a>The "DriveAtaSmartTimeCollected" property</h3>
1880 <pre class="programlisting">'DriveAtaSmartTimeCollected' read 't'
1881 </pre>
1882@@ -3962,7 +3962,7 @@
1883 </table></div>
1884 <hr>
1885 <div class="refsect2">
1886-<a name="id474131"></a><h3>
1887+<a name="idp12426352"></a><h3>
1888 <a name="Device:DriveAtaSmartStatus"></a>The "DriveAtaSmartStatus" property</h3>
1889 <pre class="programlisting">'DriveAtaSmartStatus' read 's'
1890 </pre>
1891@@ -3986,7 +3986,7 @@
1892 </table></div>
1893 <hr>
1894 <div class="refsect2">
1895-<a name="id474188"></a><h3>
1896+<a name="idp12433248"></a><h3>
1897 <a name="Device:DriveAtaSmartBlob"></a>The "DriveAtaSmartBlob" property</h3>
1898 <pre class="programlisting">'DriveAtaSmartBlob' read 'ay'
1899 </pre>
1900@@ -4004,7 +4004,7 @@
1901 </table></div>
1902 <hr>
1903 <div class="refsect2">
1904-<a name="id474242"></a><h3>
1905+<a name="idp12439728"></a><h3>
1906 <a name="Device:LinuxMdComponentLevel"></a>The "LinuxMdComponentLevel" property</h3>
1907 <pre class="programlisting">'LinuxMdComponentLevel' read 's'
1908 </pre>
1909@@ -4039,7 +4039,7 @@
1910 </table></div>
1911 <hr>
1912 <div class="refsect2">
1913-<a name="id474348"></a><h3>
1914+<a name="idp12452528"></a><h3>
1915 <a name="Device:LinuxMdComponentPosition"></a>The "LinuxMdComponentPosition" property</h3>
1916 <pre class="programlisting">'LinuxMdComponentPosition' read 'i'
1917 </pre>
1918@@ -4056,7 +4056,7 @@
1919 </table></div>
1920 <hr>
1921 <div class="refsect2">
1922-<a name="id474402"></a><h3>
1923+<a name="idp12458992"></a><h3>
1924 <a name="Device:LinuxMdComponentNumRaidDevices"></a>The "LinuxMdComponentNumRaidDevices" property</h3>
1925 <pre class="programlisting">'LinuxMdComponentNumRaidDevices' read 'i'
1926 </pre>
1927@@ -4073,7 +4073,7 @@
1928 </table></div>
1929 <hr>
1930 <div class="refsect2">
1931-<a name="id474455"></a><h3>
1932+<a name="idp12465472"></a><h3>
1933 <a name="Device:LinuxMdComponentUuid"></a>The "LinuxMdComponentUuid" property</h3>
1934 <pre class="programlisting">'LinuxMdComponentUuid' read 's'
1935 </pre>
1936@@ -4090,7 +4090,7 @@
1937 </table></div>
1938 <hr>
1939 <div class="refsect2">
1940-<a name="id474509"></a><h3>
1941+<a name="idp12471872"></a><h3>
1942 <a name="Device:LinuxMdComponentName"></a>The "LinuxMdComponentName" property</h3>
1943 <pre class="programlisting">'LinuxMdComponentName' read 's'
1944 </pre>
1945@@ -4108,7 +4108,7 @@
1946 </table></div>
1947 <hr>
1948 <div class="refsect2">
1949-<a name="id474563"></a><h3>
1950+<a name="idp12478288"></a><h3>
1951 <a name="Device:LinuxMdComponentHomeHost"></a>The "LinuxMdComponentHomeHost" property</h3>
1952 <pre class="programlisting">'LinuxMdComponentHomeHost' read 's'
1953 </pre>
1954@@ -4126,7 +4126,7 @@
1955 </table></div>
1956 <hr>
1957 <div class="refsect2">
1958-<a name="id474617"></a><h3>
1959+<a name="idp12484752"></a><h3>
1960 <a name="Device:LinuxMdComponentVersion"></a>The "LinuxMdComponentVersion" property</h3>
1961 <pre class="programlisting">'LinuxMdComponentVersion' read 's'
1962 </pre>
1963@@ -4143,7 +4143,7 @@
1964 </table></div>
1965 <hr>
1966 <div class="refsect2">
1967-<a name="id474670"></a><h3>
1968+<a name="idp12491168"></a><h3>
1969 <a name="Device:LinuxMdComponentHolder"></a>The "LinuxMdComponentHolder" property</h3>
1970 <pre class="programlisting">'LinuxMdComponentHolder' read 'o'
1971 </pre>
1972@@ -4160,7 +4160,7 @@
1973 </table></div>
1974 <hr>
1975 <div class="refsect2">
1976-<a name="id474723"></a><h3>
1977+<a name="idp12497552"></a><h3>
1978 <a name="Device:LinuxMdComponentState"></a>The "LinuxMdComponentState" property</h3>
1979 <pre class="programlisting">'LinuxMdComponentState' read 'as'
1980 </pre>
1981@@ -4179,7 +4179,7 @@
1982 </table></div>
1983 <hr>
1984 <div class="refsect2">
1985-<a name="id474786"></a><h3>
1986+<a name="idp12505152"></a><h3>
1987 <a name="Device:LinuxMdState"></a>The "LinuxMdState" property</h3>
1988 <pre class="programlisting">'LinuxMdState' read 's'
1989 </pre>
1990@@ -4196,7 +4196,7 @@
1991 </table></div>
1992 <hr>
1993 <div class="refsect2">
1994-<a name="id474838"></a><h3>
1995+<a name="idp12511504"></a><h3>
1996 <a name="Device:LinuxMdLevel"></a>The "LinuxMdLevel" property</h3>
1997 <pre class="programlisting">'LinuxMdLevel' read 's'
1998 </pre>
1999@@ -4215,7 +4215,7 @@
2000 </table></div>
2001 <hr>
2002 <div class="refsect2">
2003-<a name="id474901"></a><h3>
2004+<a name="idp12518944"></a><h3>
2005 <a name="Device:LinuxMdUuid"></a>The "LinuxMdUuid" property</h3>
2006 <pre class="programlisting">'LinuxMdUuid' read 's'
2007 </pre>
2008@@ -4232,7 +4232,7 @@
2009 </table></div>
2010 <hr>
2011 <div class="refsect2">
2012-<a name="id474953"></a><h3>
2013+<a name="idp12525264"></a><h3>
2014 <a name="Device:LinuxMdHomeHost"></a>The "LinuxMdHomeHost" property</h3>
2015 <pre class="programlisting">'LinuxMdHomeHost' read 's'
2016 </pre>
2017@@ -4249,7 +4249,7 @@
2018 </table></div>
2019 <hr>
2020 <div class="refsect2">
2021-<a name="id475006"></a><h3>
2022+<a name="idp12531616"></a><h3>
2023 <a name="Device:LinuxMdName"></a>The "LinuxMdName" property</h3>
2024 <pre class="programlisting">'LinuxMdName' read 's'
2025 </pre>
2026@@ -4266,7 +4266,7 @@
2027 </table></div>
2028 <hr>
2029 <div class="refsect2">
2030-<a name="id475058"></a><h3>
2031+<a name="idp12537904"></a><h3>
2032 <a name="Device:LinuxMdNumRaidDevices"></a>The "LinuxMdNumRaidDevices" property</h3>
2033 <pre class="programlisting">'LinuxMdNumRaidDevices' read 'i'
2034 </pre>
2035@@ -4283,7 +4283,7 @@
2036 </table></div>
2037 <hr>
2038 <div class="refsect2">
2039-<a name="id475111"></a><h3>
2040+<a name="idp12544272"></a><h3>
2041 <a name="Device:LinuxMdVersion"></a>The "LinuxMdVersion" property</h3>
2042 <pre class="programlisting">'LinuxMdVersion' read 's'
2043 </pre>
2044@@ -4300,7 +4300,7 @@
2045 </table></div>
2046 <hr>
2047 <div class="refsect2">
2048-<a name="id475163"></a><h3>
2049+<a name="idp12550544"></a><h3>
2050 <a name="Device:LinuxMdSlaves"></a>The "LinuxMdSlaves" property</h3>
2051 <pre class="programlisting">'LinuxMdSlaves' read 'ao'
2052 </pre>
2053@@ -4317,7 +4317,7 @@
2054 </table></div>
2055 <hr>
2056 <div class="refsect2">
2057-<a name="id475216"></a><h3>
2058+<a name="idp12556848"></a><h3>
2059 <a name="Device:LinuxMdIsDegraded"></a>The "LinuxMdIsDegraded" property</h3>
2060 <pre class="programlisting">'LinuxMdIsDegraded' read 'b'
2061 </pre>
2062@@ -4334,7 +4334,7 @@
2063 </table></div>
2064 <hr>
2065 <div class="refsect2">
2066-<a name="id475269"></a><h3>
2067+<a name="idp12563168"></a><h3>
2068 <a name="Device:LinuxMdSyncAction"></a>The "LinuxMdSyncAction" property</h3>
2069 <pre class="programlisting">'LinuxMdSyncAction' read 's'
2070 </pre>
2071@@ -4366,7 +4366,7 @@
2072 </table></div>
2073 <hr>
2074 <div class="refsect2">
2075-<a name="id475362"></a><h3>
2076+<a name="idp12574272"></a><h3>
2077 <a name="Device:LinuxMdSyncPercentage"></a>The "LinuxMdSyncPercentage" property</h3>
2078 <pre class="programlisting">'LinuxMdSyncPercentage' read 'd'
2079 </pre>
2080@@ -4385,7 +4385,7 @@
2081 </table></div>
2082 <hr>
2083 <div class="refsect2">
2084-<a name="id475430"></a><h3>
2085+<a name="idp12582464"></a><h3>
2086 <a name="Device:LinuxMdSyncSpeed"></a>The "LinuxMdSyncSpeed" property</h3>
2087 <pre class="programlisting">'LinuxMdSyncSpeed' read 't'
2088 </pre>
2089@@ -4404,7 +4404,7 @@
2090 </table></div>
2091 <hr>
2092 <div class="refsect2">
2093-<a name="id475499"></a><h3>
2094+<a name="idp12590640"></a><h3>
2095 <a name="Device:LinuxLvm2PVUuid"></a>The "LinuxLvm2PVUuid" property</h3>
2096 <pre class="programlisting">'LinuxLvm2PVUuid' read 's'
2097 </pre>
2098@@ -4421,7 +4421,7 @@
2099 </table></div>
2100 <hr>
2101 <div class="refsect2">
2102-<a name="id475551"></a><h3>
2103+<a name="idp12596976"></a><h3>
2104 <a name="Device:LinuxLvm2PVNumMetadataAreas"></a>The "LinuxLvm2PVNumMetadataAreas" property</h3>
2105 <pre class="programlisting">'LinuxLvm2PVNumMetadataAreas' read 'u'
2106 </pre>
2107@@ -4438,7 +4438,7 @@
2108 </table></div>
2109 <hr>
2110 <div class="refsect2">
2111-<a name="id475605"></a><h3>
2112+<a name="idp12603408"></a><h3>
2113 <a name="Device:LinuxLvm2PVGroupName"></a>The "LinuxLvm2PVGroupName" property</h3>
2114 <pre class="programlisting">'LinuxLvm2PVGroupName' read 's'
2115 </pre>
2116@@ -4455,7 +4455,7 @@
2117 </table></div>
2118 <hr>
2119 <div class="refsect2">
2120-<a name="id475658"></a><h3>
2121+<a name="idp12609760"></a><h3>
2122 <a name="Device:LinuxLvm2PVGroupUuid"></a>The "LinuxLvm2PVGroupUuid" property</h3>
2123 <pre class="programlisting">'LinuxLvm2PVGroupUuid' read 's'
2124 </pre>
2125@@ -4472,7 +4472,7 @@
2126 </table></div>
2127 <hr>
2128 <div class="refsect2">
2129-<a name="id475711"></a><h3>
2130+<a name="idp12616112"></a><h3>
2131 <a name="Device:LinuxLvm2PVGroupSize"></a>The "LinuxLvm2PVGroupSize" property</h3>
2132 <pre class="programlisting">'LinuxLvm2PVGroupSize' read 't'
2133 </pre>
2134@@ -4489,7 +4489,7 @@
2135 </table></div>
2136 <hr>
2137 <div class="refsect2">
2138-<a name="id475764"></a><h3>
2139+<a name="idp12622464"></a><h3>
2140 <a name="Device:LinuxLvm2PVGroupUnallocatedSize"></a>The "LinuxLvm2PVGroupUnallocatedSize" property</h3>
2141 <pre class="programlisting">'LinuxLvm2PVGroupUnallocatedSize' read 't'
2142 </pre>
2143@@ -4506,7 +4506,7 @@
2144 </table></div>
2145 <hr>
2146 <div class="refsect2">
2147-<a name="id475818"></a><h3>
2148+<a name="idp12628944"></a><h3>
2149 <a name="Device:LinuxLvm2PVGroupSequenceNumber"></a>The "LinuxLvm2PVGroupSequenceNumber" property</h3>
2150 <pre class="programlisting">'LinuxLvm2PVGroupSequenceNumber' read 't'
2151 </pre>
2152@@ -4523,7 +4523,7 @@
2153 </table></div>
2154 <hr>
2155 <div class="refsect2">
2156-<a name="id475872"></a><h3>
2157+<a name="idp12635408"></a><h3>
2158 <a name="Device:LinuxLvm2PVGroupExtentSize"></a>The "LinuxLvm2PVGroupExtentSize" property</h3>
2159 <pre class="programlisting">'LinuxLvm2PVGroupExtentSize' read 't'
2160 </pre>
2161@@ -4540,7 +4540,7 @@
2162 </table></div>
2163 <hr>
2164 <div class="refsect2">
2165-<a name="id475926"></a><h3>
2166+<a name="idp12641888"></a><h3>
2167 <a name="Device:LinuxLvm2PVGroupPhysicalVolumes"></a>The "LinuxLvm2PVGroupPhysicalVolumes" property</h3>
2168 <pre class="programlisting">'LinuxLvm2PVGroupPhysicalVolumes' read 'as'
2169 </pre>
2170@@ -4559,7 +4559,7 @@
2171 </table></div>
2172 <hr>
2173 <div class="refsect2">
2174-<a name="id475981"></a><h3>
2175+<a name="idp12648480"></a><h3>
2176 <a name="Device:LinuxLvm2PVGroupLogicalVolumes"></a>The "LinuxLvm2PVGroupLogicalVolumes" property</h3>
2177 <pre class="programlisting">'LinuxLvm2PVGroupLogicalVolumes' read 'as'
2178 </pre>
2179@@ -4582,7 +4582,7 @@
2180 </table></div>
2181 <hr>
2182 <div class="refsect2">
2183-<a name="id476038"></a><h3>
2184+<a name="idp12655328"></a><h3>
2185 <a name="Device:LinuxLvm2LVName"></a>The "LinuxLvm2LVName" property</h3>
2186 <pre class="programlisting">'LinuxLvm2LVName' read 's'
2187 </pre>
2188@@ -4599,7 +4599,7 @@
2189 </table></div>
2190 <hr>
2191 <div class="refsect2">
2192-<a name="id476090"></a><h3>
2193+<a name="idp12661664"></a><h3>
2194 <a name="Device:LinuxLvm2LVUuid"></a>The "LinuxLvm2LVUuid" property</h3>
2195 <pre class="programlisting">'LinuxLvm2LVUuid' read 's'
2196 </pre>
2197@@ -4616,7 +4616,7 @@
2198 </table></div>
2199 <hr>
2200 <div class="refsect2">
2201-<a name="id476143"></a><h3>
2202+<a name="idp12667936"></a><h3>
2203 <a name="Device:LinuxLvm2LVGroupName"></a>The "LinuxLvm2LVGroupName" property</h3>
2204 <pre class="programlisting">'LinuxLvm2LVGroupName' read 's'
2205 </pre>
2206@@ -4633,7 +4633,7 @@
2207 </table></div>
2208 <hr>
2209 <div class="refsect2">
2210-<a name="id476195"></a><h3>
2211+<a name="idp12674336"></a><h3>
2212 <a name="Device:LinuxLvm2LVGroupUuid"></a>The "LinuxLvm2LVGroupUuid" property</h3>
2213 <pre class="programlisting">'LinuxLvm2LVGroupUuid' read 's'
2214 </pre>
2215@@ -4650,7 +4650,7 @@
2216 </table></div>
2217 <hr>
2218 <div class="refsect2">
2219-<a name="id476249"></a><h3>
2220+<a name="idp12680672"></a><h3>
2221 <a name="Device:LinuxDmmpComponentHolder"></a>The "LinuxDmmpComponentHolder" property</h3>
2222 <pre class="programlisting">'LinuxDmmpComponentHolder' read 'o'
2223 </pre>
2224@@ -4667,7 +4667,7 @@
2225 </table></div>
2226 <hr>
2227 <div class="refsect2">
2228-<a name="id476302"></a><h3>
2229+<a name="idp12687136"></a><h3>
2230 <a name="Device:LinuxDmmpName"></a>The "LinuxDmmpName" property</h3>
2231 <pre class="programlisting">'LinuxDmmpName' read 's'
2232 </pre>
2233@@ -4684,7 +4684,7 @@
2234 </table></div>
2235 <hr>
2236 <div class="refsect2">
2237-<a name="id476360"></a><h3>
2238+<a name="idp12694144"></a><h3>
2239 <a name="Device:LinuxDmmpSlaves"></a>The "LinuxDmmpSlaves" property</h3>
2240 <pre class="programlisting">'LinuxDmmpSlaves' read 'ao'
2241 </pre>
2242@@ -4701,7 +4701,7 @@
2243 </table></div>
2244 <hr>
2245 <div class="refsect2">
2246-<a name="id476413"></a><h3>
2247+<a name="idp12700528"></a><h3>
2248 <a name="Device:LinuxDmmpParameters"></a>The "LinuxDmmpParameters" property</h3>
2249 <pre class="programlisting">'LinuxDmmpParameters' read 's'
2250 </pre>
2251@@ -4718,7 +4718,7 @@
2252 </table></div>
2253 <hr>
2254 <div class="refsect2">
2255-<a name="id476466"></a><h3>
2256+<a name="idp12706928"></a><h3>
2257 <a name="Device:LinuxLoopFilename"></a>The "LinuxLoopFilename" property</h3>
2258 <pre class="programlisting">'LinuxLoopFilename' read 's'
2259 </pre>
2260@@ -4737,6 +4737,6 @@
2261 </div>
2262 <div class="footer">
2263 <hr>
2264- Generated by GTK-Doc V1.17</div>
2265+ Generated by GTK-Doc V1.18</div>
2266 </body>
2267 </html>
2268\ No newline at end of file
2269
2270=== modified file 'doc/html/Expander.html'
2271--- doc/html/Expander.html 2011-08-30 00:51:54 +0000
2272+++ doc/html/Expander.html 2012-08-14 01:15:24 +0000
2273@@ -8,7 +8,7 @@
2274 <link rel="up" href="ref-dbus.html" title="D-Bus API Reference">
2275 <link rel="prev" href="Adapter.html" title="org.freedesktop.UDisks.Adapter">
2276 <link rel="next" href="Port.html" title="org.freedesktop.UDisks.Port">
2277-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
2278+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
2279 <link rel="stylesheet" href="style.css" type="text/css">
2280 </head>
2281 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2282@@ -46,12 +46,12 @@
2283 <pre class="synopsis"></pre>
2284 </div>
2285 <div class="refsect1">
2286-<a name="id445868"></a><h2>Signals</h2>
2287+<a name="idp7882944"></a><h2>Signals</h2>
2288 <pre class="synopsis"><a class="link" href="Expander.html#Expander::Changed">Changed</a> ()
2289 </pre>
2290 </div>
2291 <div class="refsect1">
2292-<a name="id443775"></a><h2>Implemented Interfaces</h2>
2293+<a name="idp8429696"></a><h2>Implemented Interfaces</h2>
2294 <p>
2295 Objects implementing org.freedesktop.UDisks.Expander also implements
2296 org.freedesktop.DBus.Introspectable,
2297@@ -59,7 +59,7 @@
2298 </p>
2299 </div>
2300 <div class="refsect1">
2301-<a name="id446456"></a><h2>Properties</h2>
2302+<a name="idp8771024"></a><h2>Properties</h2>
2303 <pre class="synopsis"><a class="link" href="Expander.html#Expander:NativePath">'NativePath'</a> read 's'
2304 <a class="link" href="Expander.html#Expander:Vendor">'Vendor'</a> read 's'
2305 <a class="link" href="Expander.html#Expander:Model">'Model'</a> read 's'
2306@@ -70,7 +70,7 @@
2307 </pre>
2308 </div>
2309 <div class="refsect1">
2310-<a name="id427691"></a><h2>Description</h2>
2311+<a name="idp8870208"></a><h2>Description</h2>
2312 <p>
2313
2314 </p>
2315@@ -82,12 +82,12 @@
2316 </p>
2317 </div>
2318 <div class="refsect1">
2319-<a name="id427711"></a><h2>Details</h2>
2320+<a name="idp8872640"></a><h2>Details</h2>
2321 </div>
2322 <div class="refsect1">
2323-<a name="id427723"></a><h2>Signal Details</h2>
2324+<a name="idp8874080"></a><h2>Signal Details</h2>
2325 <div class="refsect2">
2326-<a name="id427731"></a><h3>
2327+<a name="idp8875040"></a><h3>
2328 <a name="Expander::Changed"></a>The Changed signal</h3>
2329 <pre class="programlisting">Changed ()</pre>
2330 </div>
2331@@ -100,9 +100,9 @@
2332 </table></div>
2333 </div>
2334 <div class="refsect1">
2335-<a name="id440740"></a><h2>Property Details</h2>
2336+<a name="idp6083040"></a><h2>Property Details</h2>
2337 <div class="refsect2">
2338-<a name="id440751"></a><h3>
2339+<a name="idp6084320"></a><h3>
2340 <a name="Expander:NativePath"></a>The "NativePath" property</h3>
2341 <pre class="programlisting">'NativePath' read 's'
2342 </pre>
2343@@ -116,7 +116,7 @@
2344 </table></div>
2345 <hr>
2346 <div class="refsect2">
2347-<a name="id439172"></a><h3>
2348+<a name="idp9629952"></a><h3>
2349 <a name="Expander:Vendor"></a>The "Vendor" property</h3>
2350 <pre class="programlisting">'Vendor' read 's'
2351 </pre>
2352@@ -130,7 +130,7 @@
2353 </table></div>
2354 <hr>
2355 <div class="refsect2">
2356-<a name="id439213"></a><h3>
2357+<a name="idp9634880"></a><h3>
2358 <a name="Expander:Model"></a>The "Model" property</h3>
2359 <pre class="programlisting">'Model' read 's'
2360 </pre>
2361@@ -144,7 +144,7 @@
2362 </table></div>
2363 <hr>
2364 <div class="refsect2">
2365-<a name="id431936"></a><h3>
2366+<a name="idp9639792"></a><h3>
2367 <a name="Expander:Revision"></a>The "Revision" property</h3>
2368 <pre class="programlisting">'Revision' read 's'
2369 </pre>
2370@@ -158,7 +158,7 @@
2371 </table></div>
2372 <hr>
2373 <div class="refsect2">
2374-<a name="id431977"></a><h3>
2375+<a name="idp9644720"></a><h3>
2376 <a name="Expander:NumPorts"></a>The "NumPorts" property</h3>
2377 <pre class="programlisting">'NumPorts' read 'u'
2378 </pre>
2379@@ -176,7 +176,7 @@
2380 </table></div>
2381 <hr>
2382 <div class="refsect2">
2383-<a name="id432029"></a><h3>
2384+<a name="idp5089488"></a><h3>
2385 <a name="Expander:UpstreamPorts"></a>The "UpstreamPorts" property</h3>
2386 <pre class="programlisting">'UpstreamPorts' read 'ao'
2387 </pre>
2388@@ -190,7 +190,7 @@
2389 </table></div>
2390 <hr>
2391 <div class="refsect2">
2392-<a name="id414761"></a><h3>
2393+<a name="idp5094432"></a><h3>
2394 <a name="Expander:Adapter"></a>The "Adapter" property</h3>
2395 <pre class="programlisting">'Adapter' read 'o'
2396 </pre>
2397@@ -206,6 +206,6 @@
2398 </div>
2399 <div class="footer">
2400 <hr>
2401- Generated by GTK-Doc V1.17</div>
2402+ Generated by GTK-Doc V1.18</div>
2403 </body>
2404 </html>
2405\ No newline at end of file
2406
2407=== modified file 'doc/html/Port.html'
2408--- doc/html/Port.html 2011-08-30 00:51:54 +0000
2409+++ doc/html/Port.html 2012-08-14 01:15:24 +0000
2410@@ -8,7 +8,7 @@
2411 <link rel="up" href="ref-dbus.html" title="D-Bus API Reference">
2412 <link rel="prev" href="Expander.html" title="org.freedesktop.UDisks.Expander">
2413 <link rel="next" href="tools-fileformats.html" title="Manual Pages">
2414-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
2415+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
2416 <link rel="stylesheet" href="style.css" type="text/css">
2417 </head>
2418 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2419@@ -46,12 +46,12 @@
2420 <pre class="synopsis"></pre>
2421 </div>
2422 <div class="refsect1">
2423-<a name="id441426"></a><h2>Signals</h2>
2424+<a name="idp6888032"></a><h2>Signals</h2>
2425 <pre class="synopsis"><a class="link" href="Port.html#Port::Changed">Changed</a> ()
2426 </pre>
2427 </div>
2428 <div class="refsect1">
2429-<a name="id438179"></a><h2>Implemented Interfaces</h2>
2430+<a name="idp9726992"></a><h2>Implemented Interfaces</h2>
2431 <p>
2432 Objects implementing org.freedesktop.UDisks.Port also implements
2433 org.freedesktop.DBus.Introspectable,
2434@@ -59,7 +59,7 @@
2435 </p>
2436 </div>
2437 <div class="refsect1">
2438-<a name="id447365"></a><h2>Properties</h2>
2439+<a name="idp6026032"></a><h2>Properties</h2>
2440 <pre class="synopsis"><a class="link" href="Port.html#Port:NativePath">'NativePath'</a> read 's'
2441 <a class="link" href="Port.html#Port:Adapter">'Adapter'</a> read 'o'
2442 <a class="link" href="Port.html#Port:Parent">'Parent'</a> read 'o'
2443@@ -68,7 +68,7 @@
2444 </pre>
2445 </div>
2446 <div class="refsect1">
2447-<a name="id444303"></a><h2>Description</h2>
2448+<a name="idp8827008"></a><h2>Description</h2>
2449 <p>
2450
2451 </p>
2452@@ -82,12 +82,12 @@
2453 </p>
2454 </div>
2455 <div class="refsect1">
2456-<a name="id447047"></a><h2>Details</h2>
2457+<a name="idp7004944"></a><h2>Details</h2>
2458 </div>
2459 <div class="refsect1">
2460-<a name="id447059"></a><h2>Signal Details</h2>
2461+<a name="idp7006384"></a><h2>Signal Details</h2>
2462 <div class="refsect2">
2463-<a name="id447067"></a><h3>
2464+<a name="idp7007344"></a><h3>
2465 <a name="Port::Changed"></a>The Changed signal</h3>
2466 <pre class="programlisting">Changed ()</pre>
2467 </div>
2468@@ -100,9 +100,9 @@
2469 </table></div>
2470 </div>
2471 <div class="refsect1">
2472-<a name="id441359"></a><h2>Property Details</h2>
2473+<a name="idp9188208"></a><h2>Property Details</h2>
2474 <div class="refsect2">
2475-<a name="id441370"></a><h3>
2476+<a name="idp9189488"></a><h3>
2477 <a name="Port:NativePath"></a>The "NativePath" property</h3>
2478 <pre class="programlisting">'NativePath' read 's'
2479 </pre>
2480@@ -116,7 +116,7 @@
2481 </table></div>
2482 <hr>
2483 <div class="refsect2">
2484-<a name="id441418"></a><h3>
2485+<a name="idp9195200"></a><h3>
2486 <a name="Port:Adapter"></a>The "Adapter" property</h3>
2487 <pre class="programlisting">'Adapter' read 'o'
2488 </pre>
2489@@ -130,7 +130,7 @@
2490 </table></div>
2491 <hr>
2492 <div class="refsect2">
2493-<a name="id441234"></a><h3>
2494+<a name="idp6335360"></a><h3>
2495 <a name="Port:Parent"></a>The "Parent" property</h3>
2496 <pre class="programlisting">'Parent' read 'o'
2497 </pre>
2498@@ -144,7 +144,7 @@
2499 </table></div>
2500 <hr>
2501 <div class="refsect2">
2502-<a name="id447112"></a><h3>
2503+<a name="idp6340400"></a><h3>
2504 <a name="Port:Number"></a>The "Number" property</h3>
2505 <pre class="programlisting">'Number' read 'i'
2506 </pre>
2507@@ -158,7 +158,7 @@
2508 </table></div>
2509 <hr>
2510 <div class="refsect2">
2511-<a name="id447153"></a><h3>
2512+<a name="idp6345328"></a><h3>
2513 <a name="Port:ConnectorType"></a>The "ConnectorType" property</h3>
2514 <pre class="programlisting">'ConnectorType' read 's'
2515 </pre>
2516@@ -209,6 +209,6 @@
2517 </div>
2518 <div class="footer">
2519 <hr>
2520- Generated by GTK-Doc V1.17</div>
2521+ Generated by GTK-Doc V1.18</div>
2522 </body>
2523 </html>
2524\ No newline at end of file
2525
2526=== modified file 'doc/html/UDisks.html'
2527--- doc/html/UDisks.html 2011-08-30 00:51:54 +0000
2528+++ doc/html/UDisks.html 2012-08-14 01:15:24 +0000
2529@@ -8,7 +8,7 @@
2530 <link rel="up" href="ref-dbus.html" title="D-Bus API Reference">
2531 <link rel="prev" href="ref-dbus.html" title="D-Bus API Reference">
2532 <link rel="next" href="Device.html" title="org.freedesktop.UDisks.Device">
2533-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
2534+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
2535 <link rel="stylesheet" href="style.css" type="text/css">
2536 </head>
2537 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2538@@ -105,7 +105,7 @@
2539 </pre>
2540 </div>
2541 <div class="refsect1">
2542-<a name="id372098"></a><h2>Signals</h2>
2543+<a name="idp26976"></a><h2>Signals</h2>
2544 <pre class="synopsis"><a class="link" href="UDisks.html#UDisks::DeviceAdded">DeviceAdded</a> ('o' device)
2545 <a class="link" href="UDisks.html#UDisks::DeviceRemoved">DeviceRemoved</a> ('o' device)
2546 <a class="link" href="UDisks.html#UDisks::DeviceChanged">DeviceChanged</a> ('o' device)
2547@@ -129,7 +129,7 @@
2548 </pre>
2549 </div>
2550 <div class="refsect1">
2551-<a name="id372196"></a><h2>Implemented Interfaces</h2>
2552+<a name="idp115136"></a><h2>Implemented Interfaces</h2>
2553 <p>
2554 Objects implementing org.freedesktop.UDisks also implements
2555 org.freedesktop.DBus.Introspectable,
2556@@ -137,7 +137,7 @@
2557 </p>
2558 </div>
2559 <div class="refsect1">
2560-<a name="id372212"></a><h2>Properties</h2>
2561+<a name="idp117152"></a><h2>Properties</h2>
2562 <pre class="synopsis"><a class="link" href="UDisks.html#UDisks:DaemonVersion">'DaemonVersion'</a> read 's'
2563 <a class="link" href="UDisks.html#UDisks:DaemonIsInhibited">'DaemonIsInhibited'</a> read 'b'
2564 <a class="link" href="UDisks.html#UDisks:SupportsLuksDevices">'SupportsLuksDevices'</a> read 'b'
2565@@ -145,13 +145,13 @@
2566 </pre>
2567 </div>
2568 <div class="refsect1">
2569-<a name="id371492"></a><h2>Description</h2>
2570+<a name="idp122080"></a><h2>Description</h2>
2571 <p></p>
2572 </div>
2573 <div class="refsect1">
2574-<a name="id371507"></a><h2>Details</h2>
2575+<a name="idp123808"></a><h2>Details</h2>
2576 <div class="refsect2">
2577-<a name="id371515"></a><h3>
2578+<a name="idp124768"></a><h3>
2579 <a name="UDisks.EnumerateAdapters"></a>EnumerateAdapters ()</h3>
2580 <pre class="programlisting">EnumerateAdapters (out 'ao' devices)</pre>
2581 </div>
2582@@ -167,7 +167,7 @@
2583 </table></div>
2584 <hr>
2585 <div class="refsect2">
2586-<a name="id371557"></a><h3>
2587+<a name="idp7117696"></a><h3>
2588 <a name="UDisks.EnumerateExpanders"></a>EnumerateExpanders ()</h3>
2589 <pre class="programlisting">EnumerateExpanders (out 'ao' devices)</pre>
2590 </div>
2591@@ -183,7 +183,7 @@
2592 </table></div>
2593 <hr>
2594 <div class="refsect2">
2595-<a name="id428459"></a><h3>
2596+<a name="idp7122736"></a><h3>
2597 <a name="UDisks.EnumeratePorts"></a>EnumeratePorts ()</h3>
2598 <pre class="programlisting">EnumeratePorts (out 'ao' devices)</pre>
2599 </div>
2600@@ -199,7 +199,7 @@
2601 </table></div>
2602 <hr>
2603 <div class="refsect2">
2604-<a name="id428501"></a><h3>
2605+<a name="idp7127792"></a><h3>
2606 <a name="UDisks.EnumerateDevices"></a>EnumerateDevices ()</h3>
2607 <pre class="programlisting">EnumerateDevices (out 'ao' devices)</pre>
2608 </div>
2609@@ -215,7 +215,7 @@
2610 </table></div>
2611 <hr>
2612 <div class="refsect2">
2613-<a name="id428543"></a><h3>
2614+<a name="idp7132848"></a><h3>
2615 <a name="UDisks.EnumerateDeviceFiles"></a>EnumerateDeviceFiles ()</h3>
2616 <pre class="programlisting">EnumerateDeviceFiles (out 'as' device_files)</pre>
2617 </div>
2618@@ -231,7 +231,7 @@
2619 </table></div>
2620 <hr>
2621 <div class="refsect2">
2622-<a name="id428586"></a><h3>
2623+<a name="idp7138000"></a><h3>
2624 <a name="UDisks.FindDeviceByDeviceFile"></a>FindDeviceByDeviceFile ()</h3>
2625 <pre class="programlisting">FindDeviceByDeviceFile (in 's' device_file,
2626 out 'o' device)</pre>
2627@@ -254,7 +254,7 @@
2628 </table></div>
2629 <hr>
2630 <div class="refsect2">
2631-<a name="id428640"></a><h3>
2632+<a name="idp7144448"></a><h3>
2633 <a name="UDisks.FindDeviceByMajorMinor"></a>FindDeviceByMajorMinor ()</h3>
2634 <pre class="programlisting">FindDeviceByMajorMinor (in 'x' device_major,
2635 in 'x' device_minor,
2636@@ -282,7 +282,7 @@
2637 </table></div>
2638 <hr>
2639 <div class="refsect2">
2640-<a name="id428706"></a><h3>
2641+<a name="idp7152416"></a><h3>
2642 <a name="UDisks.DriveInhibitAllPolling"></a>DriveInhibitAllPolling ()</h3>
2643 <pre class="programlisting">DriveInhibitAllPolling (in 'as' options,
2644 out 's' cookie)</pre>
2645@@ -308,7 +308,7 @@
2646 </tbody>
2647 </table></div>
2648 <div class="refsect3">
2649-<a name="id428769"></a><h4>Errors</h4>
2650+<a name="idp7160000"></a><h4>Errors</h4>
2651 <div class="variablelist"><table border="0">
2652 <col align="left" valign="top">
2653 <tbody>
2654@@ -324,7 +324,7 @@
2655 </table></div>
2656 </div>
2657 <div class="refsect3">
2658-<a name="id428799"></a><h4>Permissions</h4>
2659+<a name="idp7163632"></a><h4>Permissions</h4>
2660 <p class="permission">
2661 The caller will need one of the following PolicyKit authorizations:
2662 </p>
2663@@ -335,7 +335,7 @@
2664 </div>
2665 <hr>
2666 <div class="refsect2">
2667-<a name="id428818"></a><h3>
2668+<a name="idp7165920"></a><h3>
2669 <a name="UDisks.DriveUninhibitAllPolling"></a>DriveUninhibitAllPolling ()</h3>
2670 <pre class="programlisting">DriveUninhibitAllPolling (in 's' cookie)</pre>
2671 </div>
2672@@ -353,7 +353,7 @@
2673 </tr></tbody>
2674 </table></div>
2675 <div class="refsect3">
2676-<a name="id428869"></a><h4>Errors</h4>
2677+<a name="idp7172192"></a><h4>Errors</h4>
2678 <div class="variablelist"><table border="0">
2679 <col align="left" valign="top">
2680 <tbody><tr>
2681@@ -364,7 +364,7 @@
2682 </div>
2683 <hr>
2684 <div class="refsect2">
2685-<a name="id428888"></a><h3>
2686+<a name="idp7174432"></a><h3>
2687 <a name="UDisks.DriveSetAllSpindownTimeouts"></a>DriveSetAllSpindownTimeouts ()</h3>
2688 <pre class="programlisting">DriveSetAllSpindownTimeouts (in 'i' timeout_seconds,
2689 in 'as' options,
2690@@ -402,7 +402,7 @@
2691 </tbody>
2692 </table></div>
2693 <div class="refsect3">
2694-<a name="id428974"></a><h4>Errors</h4>
2695+<a name="idp7184816"></a><h4>Errors</h4>
2696 <div class="variablelist"><table border="0">
2697 <col align="left" valign="top">
2698 <tbody>
2699@@ -422,7 +422,7 @@
2700 </table></div>
2701 </div>
2702 <div class="refsect3">
2703-<a name="id429015"></a><h4>Permissions</h4>
2704+<a name="idp7189776"></a><h4>Permissions</h4>
2705 <p class="permission">
2706 The caller will need one of the following PolicyKit authorizations:
2707 </p>
2708@@ -433,7 +433,7 @@
2709 </div>
2710 <hr>
2711 <div class="refsect2">
2712-<a name="id429034"></a><h3>
2713+<a name="idp7192080"></a><h3>
2714 <a name="UDisks.DriveUnsetAllSpindownTimeouts"></a>DriveUnsetAllSpindownTimeouts ()</h3>
2715 <pre class="programlisting">DriveUnsetAllSpindownTimeouts (in 's' cookie)</pre>
2716 </div>
2717@@ -451,7 +451,7 @@
2718 </tr></tbody>
2719 </table></div>
2720 <div class="refsect3">
2721-<a name="id429086"></a><h4>Errors</h4>
2722+<a name="idp7198336"></a><h4>Errors</h4>
2723 <div class="variablelist"><table border="0">
2724 <col align="left" valign="top">
2725 <tbody>
2726@@ -467,7 +467,7 @@
2727 </table></div>
2728 </div>
2729 <div class="refsect3">
2730-<a name="id429117"></a><h4>Permissions</h4>
2731+<a name="idp7201968"></a><h4>Permissions</h4>
2732 <p class="permission">
2733 The caller will need one of the following PolicyKit authorizations:
2734 </p>
2735@@ -478,7 +478,7 @@
2736 </div>
2737 <hr>
2738 <div class="refsect2">
2739-<a name="id429136"></a><h3>
2740+<a name="idp7204272"></a><h3>
2741 <a name="UDisks.LinuxLvm2VGStart"></a>LinuxLvm2VGStart ()</h3>
2742 <pre class="programlisting">LinuxLvm2VGStart (in 's' uuid,
2743 in 'as' options)</pre>
2744@@ -500,7 +500,7 @@
2745 </tbody>
2746 </table></div>
2747 <div class="refsect3">
2748-<a name="id429190"></a><h4>Errors</h4>
2749+<a name="idp7210896"></a><h4>Errors</h4>
2750 <div class="variablelist"><table border="0">
2751 <col align="left" valign="top">
2752 <tbody>
2753@@ -524,7 +524,7 @@
2754 </table></div>
2755 </div>
2756 <div class="refsect3">
2757-<a name="id429244"></a><h4>Permissions</h4>
2758+<a name="idp7217328"></a><h4>Permissions</h4>
2759 <p class="permission">
2760 The caller will need the following PolicyKit authorization:
2761 </p>
2762@@ -537,7 +537,7 @@
2763 </div>
2764 <hr>
2765 <div class="refsect2">
2766-<a name="id429264"></a><h3>
2767+<a name="idp7219712"></a><h3>
2768 <a name="UDisks.LinuxLvm2VGStop"></a>LinuxLvm2VGStop ()</h3>
2769 <pre class="programlisting">LinuxLvm2VGStop (in 's' uuid,
2770 in 'as' options)</pre>
2771@@ -559,7 +559,7 @@
2772 </tbody>
2773 </table></div>
2774 <div class="refsect3">
2775-<a name="id429319"></a><h4>Errors</h4>
2776+<a name="idp7226336"></a><h4>Errors</h4>
2777 <div class="variablelist"><table border="0">
2778 <col align="left" valign="top">
2779 <tbody>
2780@@ -583,7 +583,7 @@
2781 </table></div>
2782 </div>
2783 <div class="refsect3">
2784-<a name="id429373"></a><h4>Permissions</h4>
2785+<a name="idp7232768"></a><h4>Permissions</h4>
2786 <p class="permission">
2787 The caller will need the following PolicyKit authorization:
2788 </p>
2789@@ -596,7 +596,7 @@
2790 </div>
2791 <hr>
2792 <div class="refsect2">
2793-<a name="id429392"></a><h3>
2794+<a name="idp7235152"></a><h3>
2795 <a name="UDisks.LinuxLvm2VGSetName"></a>LinuxLvm2VGSetName ()</h3>
2796 <pre class="programlisting">LinuxLvm2VGSetName (in 's' uuid,
2797 in 's' name)</pre>
2798@@ -618,7 +618,7 @@
2799 </tbody>
2800 </table></div>
2801 <div class="refsect3">
2802-<a name="id429447"></a><h4>Errors</h4>
2803+<a name="idp7241712"></a><h4>Errors</h4>
2804 <div class="variablelist"><table border="0">
2805 <col align="left" valign="top">
2806 <tbody>
2807@@ -642,7 +642,7 @@
2808 </table></div>
2809 </div>
2810 <div class="refsect3">
2811-<a name="id429501"></a><h4>Permissions</h4>
2812+<a name="idp7248144"></a><h4>Permissions</h4>
2813 <p class="permission">
2814 The caller will need the following PolicyKit authorization:
2815 </p>
2816@@ -655,7 +655,7 @@
2817 </div>
2818 <hr>
2819 <div class="refsect2">
2820-<a name="id429521"></a><h3>
2821+<a name="idp7250528"></a><h3>
2822 <a name="UDisks.LinuxLvm2VGAddPV"></a>LinuxLvm2VGAddPV ()</h3>
2823 <pre class="programlisting">LinuxLvm2VGAddPV (in 's' uuid,
2824 in 'o' physical_volume,
2825@@ -683,7 +683,7 @@
2826 </tbody>
2827 </table></div>
2828 <div class="refsect3">
2829-<a name="id429589"></a><h4>Errors</h4>
2830+<a name="idp7258704"></a><h4>Errors</h4>
2831 <div class="variablelist"><table border="0">
2832 <col align="left" valign="top">
2833 <tbody>
2834@@ -707,7 +707,7 @@
2835 </table></div>
2836 </div>
2837 <div class="refsect3">
2838-<a name="id429642"></a><h4>Permissions</h4>
2839+<a name="idp7265136"></a><h4>Permissions</h4>
2840 <p class="permission">
2841 The caller will need the following PolicyKit authorization:
2842 </p>
2843@@ -720,7 +720,7 @@
2844 </div>
2845 <hr>
2846 <div class="refsect2">
2847-<a name="id429662"></a><h3>
2848+<a name="idp7267520"></a><h3>
2849 <a name="UDisks.LinuxLvm2VGRemovePV"></a>LinuxLvm2VGRemovePV ()</h3>
2850 <pre class="programlisting">LinuxLvm2VGRemovePV (in 's' vg_uuid,
2851 in 's' pv_uuid,
2852@@ -747,7 +747,7 @@
2853 </tbody>
2854 </table></div>
2855 <div class="refsect3">
2856-<a name="id429730"></a><h4>Errors</h4>
2857+<a name="idp7275616"></a><h4>Errors</h4>
2858 <div class="variablelist"><table border="0">
2859 <col align="left" valign="top">
2860 <tbody>
2861@@ -771,7 +771,7 @@
2862 </table></div>
2863 </div>
2864 <div class="refsect3">
2865-<a name="id429783"></a><h4>Permissions</h4>
2866+<a name="idp7282000"></a><h4>Permissions</h4>
2867 <p class="permission">
2868 The caller will need the following PolicyKit authorization:
2869 </p>
2870@@ -784,7 +784,7 @@
2871 </div>
2872 <hr>
2873 <div class="refsect2">
2874-<a name="id429803"></a><h3>
2875+<a name="idp7284384"></a><h3>
2876 <a name="UDisks.LinuxLvm2LVSetName"></a>LinuxLvm2LVSetName ()</h3>
2877 <pre class="programlisting">LinuxLvm2LVSetName (in 's' group_uuid,
2878 in 's' uuid,
2879@@ -811,7 +811,7 @@
2880 </tbody>
2881 </table></div>
2882 <div class="refsect3">
2883-<a name="id429869"></a><h4>Errors</h4>
2884+<a name="idp7292352"></a><h4>Errors</h4>
2885 <div class="variablelist"><table border="0">
2886 <col align="left" valign="top">
2887 <tbody>
2888@@ -835,7 +835,7 @@
2889 </table></div>
2890 </div>
2891 <div class="refsect3">
2892-<a name="id429923"></a><h4>Permissions</h4>
2893+<a name="idp7298784"></a><h4>Permissions</h4>
2894 <p class="permission">
2895 The caller will need the following PolicyKit authorization:
2896 </p>
2897@@ -848,7 +848,7 @@
2898 </div>
2899 <hr>
2900 <div class="refsect2">
2901-<a name="id429943"></a><h3>
2902+<a name="idp7301168"></a><h3>
2903 <a name="UDisks.LinuxLvm2LVStart"></a>LinuxLvm2LVStart ()</h3>
2904 <pre class="programlisting">LinuxLvm2LVStart (in 's' group_uuid,
2905 in 's' uuid,
2906@@ -875,7 +875,7 @@
2907 </tbody>
2908 </table></div>
2909 <div class="refsect3">
2910-<a name="id430009"></a><h4>Errors</h4>
2911+<a name="idp7309152"></a><h4>Errors</h4>
2912 <div class="variablelist"><table border="0">
2913 <col align="left" valign="top">
2914 <tbody>
2915@@ -899,7 +899,7 @@
2916 </table></div>
2917 </div>
2918 <div class="refsect3">
2919-<a name="id430063"></a><h4>Permissions</h4>
2920+<a name="idp7315584"></a><h4>Permissions</h4>
2921 <p class="permission">
2922 The caller will need the following PolicyKit authorization:
2923 </p>
2924@@ -912,7 +912,7 @@
2925 </div>
2926 <hr>
2927 <div class="refsect2">
2928-<a name="id430083"></a><h3>
2929+<a name="idp7317968"></a><h3>
2930 <a name="UDisks.LinuxLvm2LVRemove"></a>LinuxLvm2LVRemove ()</h3>
2931 <pre class="programlisting">LinuxLvm2LVRemove (in 's' group_uuid,
2932 in 's' uuid,
2933@@ -939,7 +939,7 @@
2934 </tbody>
2935 </table></div>
2936 <div class="refsect3">
2937-<a name="id430150"></a><h4>Errors</h4>
2938+<a name="idp7326032"></a><h4>Errors</h4>
2939 <div class="variablelist"><table border="0">
2940 <col align="left" valign="top">
2941 <tbody>
2942@@ -963,7 +963,7 @@
2943 </table></div>
2944 </div>
2945 <div class="refsect3">
2946-<a name="id430203"></a><h4>Permissions</h4>
2947+<a name="idp7332416"></a><h4>Permissions</h4>
2948 <p class="permission">
2949 The caller will need the following PolicyKit authorization:
2950 </p>
2951@@ -976,7 +976,7 @@
2952 </div>
2953 <hr>
2954 <div class="refsect2">
2955-<a name="id430223"></a><h3>
2956+<a name="idp7334800"></a><h3>
2957 <a name="UDisks.LinuxLvm2LVCreate"></a>LinuxLvm2LVCreate ()</h3>
2958 <pre class="programlisting">LinuxLvm2LVCreate (in 's' group_uuid,
2959 in 's' name,
2960@@ -1047,7 +1047,7 @@
2961 </tbody>
2962 </table></div>
2963 <div class="refsect3">
2964-<a name="id430394"></a><h4>Errors</h4>
2965+<a name="idp7355392"></a><h4>Errors</h4>
2966 <div class="variablelist"><table border="0">
2967 <col align="left" valign="top">
2968 <tbody>
2969@@ -1071,7 +1071,7 @@
2970 </table></div>
2971 </div>
2972 <div class="refsect3">
2973-<a name="id430448"></a><h4>Permissions</h4>
2974+<a name="idp9894832"></a><h4>Permissions</h4>
2975 <p class="permission">
2976 The caller will need the following PolicyKit authorization:
2977 </p>
2978@@ -1084,7 +1084,7 @@
2979 </div>
2980 <hr>
2981 <div class="refsect2">
2982-<a name="id430468"></a><h3>
2983+<a name="idp9897040"></a><h3>
2984 <a name="UDisks.LinuxMdStart"></a>LinuxMdStart ()</h3>
2985 <pre class="programlisting">LinuxMdStart (in 'ao' components,
2986 in 'as' options,
2987@@ -1113,7 +1113,7 @@
2988 </tbody>
2989 </table></div>
2990 <div class="refsect3">
2991-<a name="id452724"></a><h4>Errors</h4>
2992+<a name="idp9904560"></a><h4>Errors</h4>
2993 <div class="variablelist"><table border="0">
2994 <col align="left" valign="top">
2995 <tbody>
2996@@ -1137,7 +1137,7 @@
2997 </table></div>
2998 </div>
2999 <div class="refsect3">
3000-<a name="id452774"></a><h4>Permissions</h4>
3001+<a name="idp9910448"></a><h4>Permissions</h4>
3002 <p class="permission">
3003 The caller will need the following PolicyKit authorization:
3004 </p>
3005@@ -1150,7 +1150,7 @@
3006 </div>
3007 <hr>
3008 <div class="refsect2">
3009-<a name="id452792"></a><h3>
3010+<a name="idp9912656"></a><h3>
3011 <a name="UDisks.LinuxMdCreate"></a>LinuxMdCreate ()</h3>
3012 <pre class="programlisting">LinuxMdCreate (in 'ao' components,
3013 in 's' level,
3014@@ -1193,7 +1193,7 @@
3015 </tbody>
3016 </table></div>
3017 <div class="refsect3">
3018-<a name="id452887"></a><h4>Errors</h4>
3019+<a name="idp9924064"></a><h4>Errors</h4>
3020 <div class="variablelist"><table border="0">
3021 <col align="left" valign="top">
3022 <tbody>
3023@@ -1217,7 +1217,7 @@
3024 </table></div>
3025 </div>
3026 <div class="refsect3">
3027-<a name="id452936"></a><h4>Permissions</h4>
3028+<a name="idp9929952"></a><h4>Permissions</h4>
3029 <p class="permission">
3030 The caller will need the following PolicyKit authorization:
3031 </p>
3032@@ -1230,7 +1230,7 @@
3033 </div>
3034 <hr>
3035 <div class="refsect2">
3036-<a name="id452954"></a><h3>
3037+<a name="idp9932160"></a><h3>
3038 <a name="UDisks.Inhibit"></a>Inhibit ()</h3>
3039 <pre class="programlisting">Inhibit (out 's' cookie)</pre>
3040 </div>
3041@@ -1255,7 +1255,7 @@
3042 </tr></tbody>
3043 </table></div>
3044 <div class="refsect3">
3045-<a name="id453010"></a><h4>Errors</h4>
3046+<a name="idp9938880"></a><h4>Errors</h4>
3047 <div class="variablelist"><table border="0">
3048 <col align="left" valign="top">
3049 <tbody><tr>
3050@@ -1265,14 +1265,14 @@
3051 </table></div>
3052 </div>
3053 <div class="refsect3">
3054-<a name="id453027"></a><h4>Permissions</h4>
3055+<a name="idp9940896"></a><h4>Permissions</h4>
3056 <p class="permission">
3057 Only the super user can invoke this method.
3058 </p>
3059 </div>
3060 <hr>
3061 <div class="refsect2">
3062-<a name="id453035"></a><h3>
3063+<a name="idp9941856"></a><h3>
3064 <a name="UDisks.Uninhibit"></a>Uninhibit ()</h3>
3065 <pre class="programlisting">Uninhibit (in 's' cookie)</pre>
3066 </div>
3067@@ -1290,7 +1290,7 @@
3068 </tr></tbody>
3069 </table></div>
3070 <div class="refsect3">
3071-<a name="id453082"></a><h4>Errors</h4>
3072+<a name="idp9947440"></a><h4>Errors</h4>
3073 <div class="variablelist"><table border="0">
3074 <col align="left" valign="top">
3075 <tbody><tr>
3076@@ -1301,9 +1301,9 @@
3077 </div>
3078 </div>
3079 <div class="refsect1">
3080-<a name="id453100"></a><h2>Signal Details</h2>
3081+<a name="idp9949584"></a><h2>Signal Details</h2>
3082 <div class="refsect2">
3083-<a name="id453107"></a><h3>
3084+<a name="idp9950448"></a><h3>
3085 <a name="UDisks::DeviceAdded"></a>The DeviceAdded signal</h3>
3086 <pre class="programlisting">DeviceAdded ('o' device)</pre>
3087 </div>
3088@@ -1319,7 +1319,7 @@
3089 </table></div>
3090 <hr>
3091 <div class="refsect2">
3092-<a name="id453144"></a><h3>
3093+<a name="idp9954960"></a><h3>
3094 <a name="UDisks::DeviceRemoved"></a>The DeviceRemoved signal</h3>
3095 <pre class="programlisting">DeviceRemoved ('o' device)</pre>
3096 </div>
3097@@ -1335,7 +1335,7 @@
3098 </table></div>
3099 <hr>
3100 <div class="refsect2">
3101-<a name="id453183"></a><h3>
3102+<a name="idp9959552"></a><h3>
3103 <a name="UDisks::DeviceChanged"></a>The DeviceChanged signal</h3>
3104 <pre class="programlisting">DeviceChanged ('o' device)</pre>
3105 </div>
3106@@ -1351,7 +1351,7 @@
3107 </table></div>
3108 <hr>
3109 <div class="refsect2">
3110-<a name="id453220"></a><h3>
3111+<a name="idp9964064"></a><h3>
3112 <a name="UDisks::DeviceJobChanged"></a>The DeviceJobChanged signal</h3>
3113 <pre class="programlisting">DeviceJobChanged ('o' device,
3114 'b' job_in_progress,
3115@@ -1404,7 +1404,7 @@
3116 </table></div>
3117 <hr>
3118 <div class="refsect2">
3119-<a name="id453336"></a><h3>
3120+<a name="idp9977920"></a><h3>
3121 <a name="UDisks::AdapterAdded"></a>The AdapterAdded signal</h3>
3122 <pre class="programlisting">AdapterAdded ('o' adapter)</pre>
3123 </div>
3124@@ -1420,7 +1420,7 @@
3125 </table></div>
3126 <hr>
3127 <div class="refsect2">
3128-<a name="id453374"></a><h3>
3129+<a name="idp9982512"></a><h3>
3130 <a name="UDisks::AdapterRemoved"></a>The AdapterRemoved signal</h3>
3131 <pre class="programlisting">AdapterRemoved ('o' adapter)</pre>
3132 </div>
3133@@ -1436,7 +1436,7 @@
3134 </table></div>
3135 <hr>
3136 <div class="refsect2">
3137-<a name="id453412"></a><h3>
3138+<a name="idp9987104"></a><h3>
3139 <a name="UDisks::AdapterChanged"></a>The AdapterChanged signal</h3>
3140 <pre class="programlisting">AdapterChanged ('o' adapter)</pre>
3141 </div>
3142@@ -1452,7 +1452,7 @@
3143 </table></div>
3144 <hr>
3145 <div class="refsect2">
3146-<a name="id453451"></a><h3>
3147+<a name="idp9991696"></a><h3>
3148 <a name="UDisks::ExpanderAdded"></a>The ExpanderAdded signal</h3>
3149 <pre class="programlisting">ExpanderAdded ('o' expander)</pre>
3150 </div>
3151@@ -1468,7 +1468,7 @@
3152 </table></div>
3153 <hr>
3154 <div class="refsect2">
3155-<a name="id453489"></a><h3>
3156+<a name="idp9996288"></a><h3>
3157 <a name="UDisks::ExpanderRemoved"></a>The ExpanderRemoved signal</h3>
3158 <pre class="programlisting">ExpanderRemoved ('o' expander)</pre>
3159 </div>
3160@@ -1484,7 +1484,7 @@
3161 </table></div>
3162 <hr>
3163 <div class="refsect2">
3164-<a name="id453527"></a><h3>
3165+<a name="idp10000880"></a><h3>
3166 <a name="UDisks::ExpanderChanged"></a>The ExpanderChanged signal</h3>
3167 <pre class="programlisting">ExpanderChanged ('o' expander)</pre>
3168 </div>
3169@@ -1500,7 +1500,7 @@
3170 </table></div>
3171 <hr>
3172 <div class="refsect2">
3173-<a name="id453565"></a><h3>
3174+<a name="idp10005472"></a><h3>
3175 <a name="UDisks::PortAdded"></a>The PortAdded signal</h3>
3176 <pre class="programlisting">PortAdded ('o' port)</pre>
3177 </div>
3178@@ -1516,7 +1516,7 @@
3179 </table></div>
3180 <hr>
3181 <div class="refsect2">
3182-<a name="id453603"></a><h3>
3183+<a name="idp10009984"></a><h3>
3184 <a name="UDisks::PortRemoved"></a>The PortRemoved signal</h3>
3185 <pre class="programlisting">PortRemoved ('o' port)</pre>
3186 </div>
3187@@ -1532,7 +1532,7 @@
3188 </table></div>
3189 <hr>
3190 <div class="refsect2">
3191-<a name="id453641"></a><h3>
3192+<a name="idp10014496"></a><h3>
3193 <a name="UDisks::PortChanged"></a>The PortChanged signal</h3>
3194 <pre class="programlisting">PortChanged ('o' port)</pre>
3195 </div>
3196@@ -1548,9 +1548,9 @@
3197 </table></div>
3198 </div>
3199 <div class="refsect1">
3200-<a name="id453679"></a><h2>Property Details</h2>
3201+<a name="idp10019136"></a><h2>Property Details</h2>
3202 <div class="refsect2">
3203-<a name="id453689"></a><h3>
3204+<a name="idp10020256"></a><h3>
3205 <a name="UDisks:DaemonVersion"></a>The "DaemonVersion" property</h3>
3206 <pre class="programlisting">'DaemonVersion' read 's'
3207 </pre>
3208@@ -1564,7 +1564,7 @@
3209 </table></div>
3210 <hr>
3211 <div class="refsect2">
3212-<a name="id453724"></a><h3>
3213+<a name="idp10024528"></a><h3>
3214 <a name="UDisks:DaemonIsInhibited"></a>The "DaemonIsInhibited" property</h3>
3215 <pre class="programlisting">'DaemonIsInhibited' read 'b'
3216 </pre>
3217@@ -1578,7 +1578,7 @@
3218 </table></div>
3219 <hr>
3220 <div class="refsect2">
3221-<a name="id453760"></a><h3>
3222+<a name="idp10028880"></a><h3>
3223 <a name="UDisks:SupportsLuksDevices"></a>The "SupportsLuksDevices" property</h3>
3224 <pre class="programlisting">'SupportsLuksDevices' read 'b'
3225 </pre>
3226@@ -1595,7 +1595,7 @@
3227 </table></div>
3228 <hr>
3229 <div class="refsect2">
3230-<a name="id453814"></a><h3>
3231+<a name="idp10035248"></a><h3>
3232 <a name="UDisks:KnownFilesystems"></a>The "KnownFilesystems" property</h3>
3233 <pre class="programlisting">'KnownFilesystems' read 'a(ssbbbubbbbbbbb)'
3234 </pre>
3235@@ -1677,6 +1677,6 @@
3236 </div>
3237 <div class="footer">
3238 <hr>
3239- Generated by GTK-Doc V1.17</div>
3240+ Generated by GTK-Doc V1.18</div>
3241 </body>
3242 </html>
3243\ No newline at end of file
3244
3245=== modified file 'doc/html/home.png'
3246Binary files doc/html/home.png 2011-06-29 16:56:49 +0000 and doc/html/home.png 2012-08-14 01:15:24 +0000 differ
3247=== modified file 'doc/html/index.html'
3248--- doc/html/index.html 2011-08-30 00:51:54 +0000
3249+++ doc/html/index.html 2012-08-14 01:15:24 +0000
3250@@ -6,7 +6,7 @@
3251 <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
3252 <link rel="home" href="index.html" title="udisks Reference Manual">
3253 <link rel="next" href="ref-dbus.html" title="D-Bus API Reference">
3254-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
3255+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
3256 <link rel="stylesheet" href="style.css" type="text/css">
3257 </head>
3258 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3259@@ -26,7 +26,7 @@
3260 </p></div>
3261 <div><p class="copyright">Copyright © 2008 The udisks Authors</p></div>
3262 <div><div class="legalnotice">
3263-<a name="id372777"></a><p>
3264+<a name="idp292432"></a><p>
3265 Permission is granted to copy, distribute and/or modify this
3266 document under the terms of the <em class="citetitle">GNU Free
3267 Documentation License</em>, Version 1.1 or any later
3268@@ -97,6 +97,6 @@
3269 </div>
3270 <div class="footer">
3271 <hr>
3272- Generated by GTK-Doc V1.17</div>
3273+ Generated by GTK-Doc V1.18</div>
3274 </body>
3275 </html>
3276\ No newline at end of file
3277
3278=== modified file 'doc/html/ix01.html'
3279--- doc/html/ix01.html 2011-08-30 00:51:54 +0000
3280+++ doc/html/ix01.html 2012-08-14 01:15:24 +0000
3281@@ -8,7 +8,7 @@
3282 <link rel="up" href="index.html" title="udisks Reference Manual">
3283 <link rel="prev" href="udisks-tcp-bridge.1.html" title="udisks-tcp-bridge">
3284 <link rel="next" href="license.html" title="Appendix A. License">
3285-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
3286+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
3287 <link rel="stylesheet" href="style.css" type="text/css">
3288 </head>
3289 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3290@@ -21,26 +21,26 @@
3291 </tr></table>
3292 <div class="index">
3293 <div class="titlepage"><div><div><h2 class="title">
3294-<a name="id372418"></a>Index</h2></div></div></div>
3295+<a name="idp93872"></a>Index</h2></div></div></div>
3296 <div class="index">
3297 <div class="indexdiv">
3298 <h3>A</h3>
3299 <dl>
3300 <dt>Adapter</dt>
3301 <dd><dl>
3302-<dt>Expander, <a class="indexterm" href="Expander.html#id414761">The "Adapter" property</a>
3303+<dt>Expander, <a class="indexterm" href="Expander.html#idp5094432">The "Adapter" property</a>
3304 </dt>
3305-<dt>Port, <a class="indexterm" href="Port.html#id441418">The "Adapter" property</a>
3306+<dt>Port, <a class="indexterm" href="Port.html#idp9195200">The "Adapter" property</a>
3307 </dt>
3308 </dl></dd>
3309 <dt>AdapterAdded</dt>
3310-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453336">The AdapterAdded signal</a>
3311+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9977920">The AdapterAdded signal</a>
3312 </dt></dl></dd>
3313 <dt>AdapterChanged</dt>
3314-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453412">The AdapterChanged signal</a>
3315+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9987104">The AdapterChanged signal</a>
3316 </dt></dl></dd>
3317 <dt>AdapterRemoved</dt>
3318-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453374">The AdapterRemoved signal</a>
3319+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9982512">The AdapterRemoved signal</a>
3320 </dt></dl></dd>
3321 </dl>
3322 </div>
3323@@ -49,17 +49,17 @@
3324 <dl>
3325 <dt>Changed</dt>
3326 <dd><dl>
3327-<dt>Adapter, <a class="indexterm" href="Adapter.html#id418501">The Changed signal</a>
3328-</dt>
3329-<dt>Device, <a class="indexterm" href="Device.html#id468787">The Changed signal</a>
3330-</dt>
3331-<dt>Expander, <a class="indexterm" href="Expander.html#id427731">The Changed signal</a>
3332-</dt>
3333-<dt>Port, <a class="indexterm" href="Port.html#id447067">The Changed signal</a>
3334+<dt>Adapter, <a class="indexterm" href="Adapter.html#idp6762304">The Changed signal</a>
3335+</dt>
3336+<dt>Device, <a class="indexterm" href="Device.html#idp11784800">The Changed signal</a>
3337+</dt>
3338+<dt>Expander, <a class="indexterm" href="Expander.html#idp8875040">The Changed signal</a>
3339+</dt>
3340+<dt>Port, <a class="indexterm" href="Port.html#idp7007344">The Changed signal</a>
3341 </dt>
3342 </dl></dd>
3343 <dt>ConnectorType</dt>
3344-<dd><dl><dt>Port, <a class="indexterm" href="Port.html#id447153">The "ConnectorType" property</a>
3345+<dd><dl><dt>Port, <a class="indexterm" href="Port.html#idp6345328">The "ConnectorType" property</a>
3346 </dt></dl></dd>
3347 </dl>
3348 </div>
3349@@ -67,250 +67,250 @@
3350 <h3>D</h3>
3351 <dl>
3352 <dt>DaemonIsInhibited</dt>
3353-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453724">The "DaemonIsInhibited" property</a>
3354+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10024528">The "DaemonIsInhibited" property</a>
3355 </dt></dl></dd>
3356 <dt>DaemonVersion</dt>
3357-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453689">The "DaemonVersion" property</a>
3358+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10020256">The "DaemonVersion" property</a>
3359 </dt></dl></dd>
3360 <dt>DeviceAdded</dt>
3361-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453107">The DeviceAdded signal</a>
3362+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9950448">The DeviceAdded signal</a>
3363 </dt></dl></dd>
3364 <dt>DeviceAutomountHint</dt>
3365-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470703">The "DeviceAutomountHint" property</a>
3366+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12014928">The "DeviceAutomountHint" property</a>
3367 </dt></dl></dd>
3368 <dt>DeviceBlockSize</dt>
3369-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470486">The "DeviceBlockSize" property</a>
3370+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11988864">The "DeviceBlockSize" property</a>
3371 </dt></dl></dd>
3372 <dt>DeviceChanged</dt>
3373-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453183">The DeviceChanged signal</a>
3374+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9959552">The DeviceChanged signal</a>
3375 </dt></dl></dd>
3376 <dt>DeviceDetectionTime</dt>
3377-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468982">The "DeviceDetectionTime" property</a>
3378+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11808336">The "DeviceDetectionTime" property</a>
3379 </dt></dl></dd>
3380 <dt>DeviceFile</dt>
3381-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469155">The "DeviceFile" property</a>
3382+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11829072">The "DeviceFile" property</a>
3383 </dt></dl></dd>
3384 <dt>DeviceFileById</dt>
3385-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469278">The "DeviceFileById" property</a>
3386+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11843840">The "DeviceFileById" property</a>
3387 </dt></dl></dd>
3388 <dt>DeviceFileByPath</dt>
3389-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469334">The "DeviceFileByPath" property</a>
3390+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11850480">The "DeviceFileByPath" property</a>
3391 </dt></dl></dd>
3392 <dt>DeviceFilePresentation</dt>
3393-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469204">The "DeviceFilePresentation" property</a>
3394+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11834880">The "DeviceFilePresentation" property</a>
3395 </dt></dl></dd>
3396 <dt>DeviceIsDrive</dt>
3397-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469821">The "DeviceIsDrive" property</a>
3398+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11908992">The "DeviceIsDrive" property</a>
3399 </dt></dl></dd>
3400 <dt>DeviceIsLinuxDmmp</dt>
3401-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470358">The "DeviceIsLinuxDmmp" property</a>
3402+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11973552">The "DeviceIsLinuxDmmp" property</a>
3403 </dt></dl></dd>
3404 <dt>DeviceIsLinuxDmmpComponent</dt>
3405-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470314">The "DeviceIsLinuxDmmpComponent" property</a>
3406+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11968272">The "DeviceIsLinuxDmmpComponent" property</a>
3407 </dt></dl></dd>
3408 <dt>DeviceIsLinuxLoop</dt>
3409-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470401">The "DeviceIsLinuxLoop" property</a>
3410+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11978672">The "DeviceIsLinuxLoop" property</a>
3411 </dt></dl></dd>
3412 <dt>DeviceIsLinuxLvm2LV</dt>
3413-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470228">The "DeviceIsLinuxLvm2LV" property</a>
3414+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11957872">The "DeviceIsLinuxLvm2LV" property</a>
3415 </dt></dl></dd>
3416 <dt>DeviceIsLinuxLvm2PV</dt>
3417-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470271">The "DeviceIsLinuxLvm2PV" property</a>
3418+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11963104">The "DeviceIsLinuxLvm2PV" property</a>
3419 </dt></dl></dd>
3420 <dt>DeviceIsLinuxMd</dt>
3421-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470185">The "DeviceIsLinuxMd" property</a>
3422+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11952688">The "DeviceIsLinuxMd" property</a>
3423 </dt></dl></dd>
3424 <dt>DeviceIsLinuxMdComponent</dt>
3425-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470142">The "DeviceIsLinuxMdComponent" property</a>
3426+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11947488">The "DeviceIsLinuxMdComponent" property</a>
3427 </dt></dl></dd>
3428 <dt>DeviceIsLuks</dt>
3429-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470056">The "DeviceIsLuks" property</a>
3430+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11937184">The "DeviceIsLuks" property</a>
3431 </dt></dl></dd>
3432 <dt>DeviceIsLuksCleartext</dt>
3433-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470099">The "DeviceIsLuksCleartext" property</a>
3434+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11942304">The "DeviceIsLuksCleartext" property</a>
3435 </dt></dl></dd>
3436 <dt>DeviceIsMediaAvailable</dt>
3437-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469559">The "DeviceIsMediaAvailable" property</a>
3438+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11877552">The "DeviceIsMediaAvailable" property</a>
3439 </dt></dl></dd>
3440 <dt>DeviceIsMediaChangeDetected</dt>
3441-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469601">The "DeviceIsMediaChangeDetected" property</a>
3442+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11882688">The "DeviceIsMediaChangeDetected" property</a>
3443 </dt></dl></dd>
3444 <dt>DeviceIsMediaChangeDetectionInhibitable</dt>
3445-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469690">The "DeviceIsMediaChangeDetectionInhibitable" property</a>
3446+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11893344">The "DeviceIsMediaChangeDetectionInhibitable" property</a>
3447 </dt></dl></dd>
3448 <dt>DeviceIsMediaChangeDetectionInhibited</dt>
3449-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469735">The "DeviceIsMediaChangeDetectionInhibited" property</a>
3450+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11898656">The "DeviceIsMediaChangeDetectionInhibited" property</a>
3451 </dt></dl></dd>
3452 <dt>DeviceIsMediaChangeDetectionPolling</dt>
3453-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469644">The "DeviceIsMediaChangeDetectionPolling" property</a>
3454+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11887840">The "DeviceIsMediaChangeDetectionPolling" property</a>
3455 </dt></dl></dd>
3456 <dt>DeviceIsMounted</dt>
3457-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469907">The "DeviceIsMounted" property</a>
3458+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11919440">The "DeviceIsMounted" property</a>
3459 </dt></dl></dd>
3460 <dt>DeviceIsOpticalDisc</dt>
3461-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469864">The "DeviceIsOpticalDisc" property</a>
3462+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11914176">The "DeviceIsOpticalDisc" property</a>
3463 </dt></dl></dd>
3464 <dt>DeviceIsPartition</dt>
3465-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469430">The "DeviceIsPartition" property</a>
3466+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11861888">The "DeviceIsPartition" property</a>
3467 </dt></dl></dd>
3468 <dt>DeviceIsPartitionTable</dt>
3469-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469473">The "DeviceIsPartitionTable" property</a>
3470+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11867120">The "DeviceIsPartitionTable" property</a>
3471 </dt></dl></dd>
3472 <dt>DeviceIsReadOnly</dt>
3473-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469779">The "DeviceIsReadOnly" property</a>
3474+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11903920">The "DeviceIsReadOnly" property</a>
3475 </dt></dl></dd>
3476 <dt>DeviceIsRemovable</dt>
3477-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469516">The "DeviceIsRemovable" property</a>
3478+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11872368">The "DeviceIsRemovable" property</a>
3479 </dt></dl></dd>
3480 <dt>DeviceIsSystemInternal</dt>
3481-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469383">The "DeviceIsSystemInternal" property</a>
3482+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11856400">The "DeviceIsSystemInternal" property</a>
3483 </dt></dl></dd>
3484 <dt>DeviceJobChanged</dt>
3485-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453220">The DeviceJobChanged signal</a>
3486+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9964064">The DeviceJobChanged signal</a>
3487 </dt></dl></dd>
3488 <dt>DeviceMajor</dt>
3489-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469070">The "DeviceMajor" property</a>
3490+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11818832">The "DeviceMajor" property</a>
3491 </dt></dl></dd>
3492 <dt>DeviceMediaDetectionTime</dt>
3493-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469026">The "DeviceMediaDetectionTime" property</a>
3494+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11813536">The "DeviceMediaDetectionTime" property</a>
3495 </dt></dl></dd>
3496 <dt>DeviceMinor</dt>
3497-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469112">The "DeviceMinor" property</a>
3498+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11823920">The "DeviceMinor" property</a>
3499 </dt></dl></dd>
3500 <dt>DeviceMountedByUid</dt>
3501-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470002">The "DeviceMountedByUid" property</a>
3502+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11930816">The "DeviceMountedByUid" property</a>
3503 </dt></dl></dd>
3504 <dt>DeviceMountPaths</dt>
3505-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id469949">The "DeviceMountPaths" property</a>
3506+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11924512">The "DeviceMountPaths" property</a>
3507 </dt></dl></dd>
3508 <dt>DevicePresentationHide</dt>
3509-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470528">The "DevicePresentationHide" property</a>
3510+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11993952">The "DevicePresentationHide" property</a>
3511 </dt></dl></dd>
3512 <dt>DevicePresentationIconName</dt>
3513-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470659">The "DevicePresentationIconName" property</a>
3514+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12009584">The "DevicePresentationIconName" property</a>
3515 </dt></dl></dd>
3516 <dt>DevicePresentationName</dt>
3517-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470615">The "DevicePresentationName" property</a>
3518+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12004368">The "DevicePresentationName" property</a>
3519 </dt></dl></dd>
3520 <dt>DevicePresentationNopolicy</dt>
3521-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470572">The "DevicePresentationNopolicy" property</a>
3522+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11999104">The "DevicePresentationNopolicy" property</a>
3523 </dt></dl></dd>
3524 <dt>DeviceRemoved</dt>
3525-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453144">The DeviceRemoved signal</a>
3526+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9954960">The DeviceRemoved signal</a>
3527 </dt></dl></dd>
3528 <dt>DeviceSize</dt>
3529-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470443">The "DeviceSize" property</a>
3530+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11983792">The "DeviceSize" property</a>
3531 </dt></dl></dd>
3532 <dt>DriveAdapter</dt>
3533-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473516">The "DriveAdapter" property</a>
3534+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12352544">The "DriveAdapter" property</a>
3535 </dt></dl></dd>
3536 <dt>DriveAtaSmartBlob</dt>
3537-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474188">The "DriveAtaSmartBlob" property</a>
3538+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12433248">The "DriveAtaSmartBlob" property</a>
3539 </dt></dl></dd>
3540 <dt>DriveAtaSmartInitiateSelftest</dt>
3541-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468495">DriveAtaSmartInitiateSelftest ()</a>
3542+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11749808">DriveAtaSmartInitiateSelftest ()</a>
3543 </dt></dl></dd>
3544 <dt>DriveAtaSmartIsAvailable</dt>
3545-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474034">The "DriveAtaSmartIsAvailable" property</a>
3546+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12414704">The "DriveAtaSmartIsAvailable" property</a>
3547 </dt></dl></dd>
3548 <dt>DriveAtaSmartRefreshData</dt>
3549-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468356">DriveAtaSmartRefreshData ()</a>
3550+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11733120">DriveAtaSmartRefreshData ()</a>
3551 </dt></dl></dd>
3552 <dt>DriveAtaSmartStatus</dt>
3553-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474131">The "DriveAtaSmartStatus" property</a>
3554+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12426352">The "DriveAtaSmartStatus" property</a>
3555 </dt></dl></dd>
3556 <dt>DriveAtaSmartTimeCollected</dt>
3557-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474078">The "DriveAtaSmartTimeCollected" property</a>
3558+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12419888">The "DriveAtaSmartTimeCollected" property</a>
3559 </dt></dl></dd>
3560 <dt>DriveBenchmark</dt>
3561-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468615">DriveBenchmark ()</a>
3562+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11764208">DriveBenchmark ()</a>
3563 </dt></dl></dd>
3564 <dt>DriveCanDetach</dt>
3565-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473356">The "DriveCanDetach" property</a>
3566+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12333536">The "DriveCanDetach" property</a>
3567 </dt></dl></dd>
3568 <dt>DriveCanSpindown</dt>
3569-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473409">The "DriveCanSpindown" property</a>
3570+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12339872">The "DriveCanSpindown" property</a>
3571 </dt></dl></dd>
3572 <dt>DriveConnectionInterface</dt>
3573-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472777">The "DriveConnectionInterface" property</a>
3574+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12264000">The "DriveConnectionInterface" property</a>
3575 </dt></dl></dd>
3576 <dt>DriveConnectionSpeed</dt>
3577-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472906">The "DriveConnectionSpeed" property</a>
3578+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12279392">The "DriveConnectionSpeed" property</a>
3579 </dt></dl></dd>
3580 <dt>DriveDetach</dt>
3581-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467943">DriveDetach ()</a>
3582+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11683664">DriveDetach ()</a>
3583 </dt></dl></dd>
3584 <dt>DriveEject</dt>
3585-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467811">DriveEject ()</a>
3586+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11667888">DriveEject ()</a>
3587 </dt></dl></dd>
3588 <dt>DriveInhibitAllPolling</dt>
3589-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428706">DriveInhibitAllPolling ()</a>
3590+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7152416">DriveInhibitAllPolling ()</a>
3591 </dt></dl></dd>
3592 <dt>DriveInhibitPolling</dt>
3593-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467542">DriveInhibitPolling ()</a>
3594+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11635616">DriveInhibitPolling ()</a>
3595 </dt></dl></dd>
3596 <dt>DriveIsMediaEjectable</dt>
3597-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473303">The "DriveIsMediaEjectable" property</a>
3598+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12327136">The "DriveIsMediaEjectable" property</a>
3599 </dt></dl></dd>
3600 <dt>DriveIsRotational</dt>
3601-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473463">The "DriveIsRotational" property</a>
3602+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12346224">The "DriveIsRotational" property</a>
3603 </dt></dl></dd>
3604 <dt>DriveMedia</dt>
3605-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473240">The "DriveMedia" property</a>
3606+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12319552">The "DriveMedia" property</a>
3607 </dt></dl></dd>
3608 <dt>DriveMediaCompatibility</dt>
3609-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472959">The "DriveMediaCompatibility" property</a>
3610+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12285840">The "DriveMediaCompatibility" property</a>
3611 </dt></dl></dd>
3612 <dt>DriveModel</dt>
3613-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472403">The "DriveModel" property</a>
3614+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12218960">The "DriveModel" property</a>
3615 </dt></dl></dd>
3616 <dt>DrivePollMedia</dt>
3617-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467731">DrivePollMedia ()</a>
3618+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11658320">DrivePollMedia ()</a>
3619 </dt></dl></dd>
3620 <dt>DrivePorts</dt>
3621-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473568">The "DrivePorts" property</a>
3622+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12358848">The "DrivePorts" property</a>
3623 </dt></dl></dd>
3624 <dt>Driver</dt>
3625-<dd><dl><dt>Adapter, <a class="indexterm" href="Adapter.html#id421111">The "Driver" property</a>
3626+<dd><dl><dt>Adapter, <a class="indexterm" href="Adapter.html#idp6837600">The "Driver" property</a>
3627 </dt></dl></dd>
3628 <dt>DriveRevision</dt>
3629-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472467">The "DriveRevision" property</a>
3630+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12226672">The "DriveRevision" property</a>
3631 </dt></dl></dd>
3632 <dt>DriveRotationRate</dt>
3633-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472661">The "DriveRotationRate" property</a>
3634+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12250048">The "DriveRotationRate" property</a>
3635 </dt></dl></dd>
3636 <dt>DriveSerial</dt>
3637-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472532">The "DriveSerial" property</a>
3638+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12234432">The "DriveSerial" property</a>
3639 </dt></dl></dd>
3640 <dt>DriveSetAllSpindownTimeouts</dt>
3641-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428888">DriveSetAllSpindownTimeouts ()</a>
3642+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7174432">DriveSetAllSpindownTimeouts ()</a>
3643 </dt></dl></dd>
3644 <dt>DriveSetSpindownTimeout</dt>
3645-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468092">DriveSetSpindownTimeout ()</a>
3646+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11701488">DriveSetSpindownTimeout ()</a>
3647 </dt></dl></dd>
3648 <dt>DriveSimilarDevices</dt>
3649-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473621">The "DriveSimilarDevices" property</a>
3650+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12365152">The "DriveSimilarDevices" property</a>
3651 </dt></dl></dd>
3652 <dt>DriveUninhibitAllPolling</dt>
3653-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428818">DriveUninhibitAllPolling ()</a>
3654+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7165920">DriveUninhibitAllPolling ()</a>
3655 </dt></dl></dd>
3656 <dt>DriveUninhibitPolling</dt>
3657-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467659">DriveUninhibitPolling ()</a>
3658+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11649600">DriveUninhibitPolling ()</a>
3659 </dt></dl></dd>
3660 <dt>DriveUnsetAllSpindownTimeouts</dt>
3661-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429034">DriveUnsetAllSpindownTimeouts ()</a>
3662+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7192080">DriveUnsetAllSpindownTimeouts ()</a>
3663 </dt></dl></dd>
3664 <dt>DriveUnsetSpindownTimeout</dt>
3665-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468251">DriveUnsetSpindownTimeout ()</a>
3666+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11720608">DriveUnsetSpindownTimeout ()</a>
3667 </dt></dl></dd>
3668 <dt>DriveVendor</dt>
3669-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472338">The "DriveVendor" property</a>
3670+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12211184">The "DriveVendor" property</a>
3671 </dt></dl></dd>
3672 <dt>DriveWriteCache</dt>
3673-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472724">The "DriveWriteCache" property</a>
3674+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12257648">The "DriveWriteCache" property</a>
3675 </dt></dl></dd>
3676 <dt>DriveWwn</dt>
3677-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472596">The "DriveWwn" property</a>
3678+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12242224">The "DriveWwn" property</a>
3679 </dt></dl></dd>
3680 </dl>
3681 </div>
3682@@ -318,28 +318,28 @@
3683 <h3>E</h3>
3684 <dl>
3685 <dt>EnumerateAdapters</dt>
3686-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id371515">EnumerateAdapters ()</a>
3687+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp124768">EnumerateAdapters ()</a>
3688 </dt></dl></dd>
3689 <dt>EnumerateDeviceFiles</dt>
3690-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428543">EnumerateDeviceFiles ()</a>
3691+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7132848">EnumerateDeviceFiles ()</a>
3692 </dt></dl></dd>
3693 <dt>EnumerateDevices</dt>
3694-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428501">EnumerateDevices ()</a>
3695+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7127792">EnumerateDevices ()</a>
3696 </dt></dl></dd>
3697 <dt>EnumerateExpanders</dt>
3698-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id371557">EnumerateExpanders ()</a>
3699+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7117696">EnumerateExpanders ()</a>
3700 </dt></dl></dd>
3701 <dt>EnumeratePorts</dt>
3702-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428459">EnumeratePorts ()</a>
3703+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7122736">EnumeratePorts ()</a>
3704 </dt></dl></dd>
3705 <dt>ExpanderAdded</dt>
3706-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453451">The ExpanderAdded signal</a>
3707+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9991696">The ExpanderAdded signal</a>
3708 </dt></dl></dd>
3709 <dt>ExpanderChanged</dt>
3710-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453527">The ExpanderChanged signal</a>
3711+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10000880">The ExpanderChanged signal</a>
3712 </dt></dl></dd>
3713 <dt>ExpanderRemoved</dt>
3714-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453489">The ExpanderRemoved signal</a>
3715+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9996288">The ExpanderRemoved signal</a>
3716 </dt></dl></dd>
3717 </dl>
3718 </div>
3719@@ -347,31 +347,31 @@
3720 <h3>F</h3>
3721 <dl>
3722 <dt>Fabric</dt>
3723-<dd><dl><dt>Adapter, <a class="indexterm" href="Adapter.html#id421227">The "Fabric" property</a>
3724+<dd><dl><dt>Adapter, <a class="indexterm" href="Adapter.html#idp10085264">The "Fabric" property</a>
3725 </dt></dl></dd>
3726 <dt>FilesystemCheck</dt>
3727-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466064">FilesystemCheck ()</a>
3728+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11458256">FilesystemCheck ()</a>
3729 </dt></dl></dd>
3730 <dt>FilesystemCreate</dt>
3731-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id413547">FilesystemCreate ()</a>
3732+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5475088">FilesystemCreate ()</a>
3733 </dt></dl></dd>
3734 <dt>FilesystemListOpenFiles</dt>
3735-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466222">FilesystemListOpenFiles ()</a>
3736+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11477264">FilesystemListOpenFiles ()</a>
3737 </dt></dl></dd>
3738 <dt>FilesystemMount</dt>
3739-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id465734">FilesystemMount ()</a>
3740+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11418784">FilesystemMount ()</a>
3741 </dt></dl></dd>
3742 <dt>FilesystemSetLabel</dt>
3743-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id413761">FilesystemSetLabel ()</a>
3744+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5500752">FilesystemSetLabel ()</a>
3745 </dt></dl></dd>
3746 <dt>FilesystemUnmount</dt>
3747-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id465926">FilesystemUnmount ()</a>
3748+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11441712">FilesystemUnmount ()</a>
3749 </dt></dl></dd>
3750 <dt>FindDeviceByDeviceFile</dt>
3751-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428586">FindDeviceByDeviceFile ()</a>
3752+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7138000">FindDeviceByDeviceFile ()</a>
3753 </dt></dl></dd>
3754 <dt>FindDeviceByMajorMinor</dt>
3755-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id428640">FindDeviceByMajorMinor ()</a>
3756+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7144448">FindDeviceByMajorMinor ()</a>
3757 </dt></dl></dd>
3758 </dl>
3759 </div>
3760@@ -379,22 +379,22 @@
3761 <h3>I</h3>
3762 <dl>
3763 <dt>IdLabel</dt>
3764-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471377">The "IdLabel" property</a>
3765+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12095904">The "IdLabel" property</a>
3766 </dt></dl></dd>
3767 <dt>IdType</dt>
3768-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471074">The "IdType" property</a>
3769+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12059504">The "IdType" property</a>
3770 </dt></dl></dd>
3771 <dt>IdUsage</dt>
3772-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470990">The "IdUsage" property</a>
3773+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12049424">The "IdUsage" property</a>
3774 </dt></dl></dd>
3775 <dt>IdUuid</dt>
3776-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471315">The "IdUuid" property</a>
3777+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12088400">The "IdUuid" property</a>
3778 </dt></dl></dd>
3779 <dt>IdVersion</dt>
3780-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471253">The "IdVersion" property</a>
3781+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12080976">The "IdVersion" property</a>
3782 </dt></dl></dd>
3783 <dt>Inhibit</dt>
3784-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id452954">Inhibit ()</a>
3785+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9932160">Inhibit ()</a>
3786 </dt></dl></dd>
3787 </dl>
3788 </div>
3789@@ -402,25 +402,25 @@
3790 <h3>J</h3>
3791 <dl>
3792 <dt>JobCancel</dt>
3793-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id412532">JobCancel ()</a>
3794+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5353088">JobCancel ()</a>
3795 </dt></dl></dd>
3796 <dt>JobChanged</dt>
3797-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id468828">The JobChanged signal</a>
3798+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11789808">The JobChanged signal</a>
3799 </dt></dl></dd>
3800 <dt>JobId</dt>
3801-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470810">The "JobId" property</a>
3802+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12027664">The "JobId" property</a>
3803 </dt></dl></dd>
3804 <dt>JobInitiatedByUid</dt>
3805-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470853">The "JobInitiatedByUid" property</a>
3806+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12032848">The "JobInitiatedByUid" property</a>
3807 </dt></dl></dd>
3808 <dt>JobInProgress</dt>
3809-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470766">The "JobInProgress" property</a>
3810+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12022512">The "JobInProgress" property</a>
3811 </dt></dl></dd>
3812 <dt>JobIsCancellable</dt>
3813-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470896">The "JobIsCancellable" property</a>
3814+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12038032">The "JobIsCancellable" property</a>
3815 </dt></dl></dd>
3816 <dt>JobPercentage</dt>
3817-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id470948">The "JobPercentage" property</a>
3818+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12044304">The "JobPercentage" property</a>
3819 </dt></dl></dd>
3820 </dl>
3821 </div>
3822@@ -428,7 +428,7 @@
3823 <h3>K</h3>
3824 <dl>
3825 <dt>KnownFilesystems</dt>
3826-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453814">The "KnownFilesystems" property</a>
3827+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10035248">The "KnownFilesystems" property</a>
3828 </dt></dl></dd>
3829 </dl>
3830 </div>
3831@@ -436,193 +436,193 @@
3832 <h3>L</h3>
3833 <dl>
3834 <dt>LinuxDmmpComponentHolder</dt>
3835-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476249">The "LinuxDmmpComponentHolder" property</a>
3836+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12680672">The "LinuxDmmpComponentHolder" property</a>
3837 </dt></dl></dd>
3838 <dt>LinuxDmmpName</dt>
3839-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476302">The "LinuxDmmpName" property</a>
3840+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12687136">The "LinuxDmmpName" property</a>
3841 </dt></dl></dd>
3842 <dt>LinuxDmmpParameters</dt>
3843-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476413">The "LinuxDmmpParameters" property</a>
3844+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12700528">The "LinuxDmmpParameters" property</a>
3845 </dt></dl></dd>
3846 <dt>LinuxDmmpSlaves</dt>
3847-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476360">The "LinuxDmmpSlaves" property</a>
3848+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12694144">The "LinuxDmmpSlaves" property</a>
3849 </dt></dl></dd>
3850 <dt>LinuxLoopFilename</dt>
3851-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476466">The "LinuxLoopFilename" property</a>
3852+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12706928">The "LinuxLoopFilename" property</a>
3853 </dt></dl></dd>
3854 <dt>LinuxLvm2LVCreate</dt>
3855-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id430223">LinuxLvm2LVCreate ()</a>
3856+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7334800">LinuxLvm2LVCreate ()</a>
3857 </dt></dl></dd>
3858 <dt>LinuxLvm2LVGroupName</dt>
3859-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476143">The "LinuxLvm2LVGroupName" property</a>
3860+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12667936">The "LinuxLvm2LVGroupName" property</a>
3861 </dt></dl></dd>
3862 <dt>LinuxLvm2LVGroupUuid</dt>
3863-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476195">The "LinuxLvm2LVGroupUuid" property</a>
3864+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12674336">The "LinuxLvm2LVGroupUuid" property</a>
3865 </dt></dl></dd>
3866 <dt>LinuxLvm2LVName</dt>
3867-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476038">The "LinuxLvm2LVName" property</a>
3868+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12655328">The "LinuxLvm2LVName" property</a>
3869 </dt></dl></dd>
3870 <dt>LinuxLvm2LVRemove</dt>
3871-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id430083">LinuxLvm2LVRemove ()</a>
3872+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7317968">LinuxLvm2LVRemove ()</a>
3873 </dt></dl></dd>
3874 <dt>LinuxLvm2LVSetName</dt>
3875-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429803">LinuxLvm2LVSetName ()</a>
3876+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7284384">LinuxLvm2LVSetName ()</a>
3877 </dt></dl></dd>
3878 <dt>LinuxLvm2LVStart</dt>
3879-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429943">LinuxLvm2LVStart ()</a>
3880+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7301168">LinuxLvm2LVStart ()</a>
3881 </dt></dl></dd>
3882 <dt>LinuxLvm2LVStop</dt>
3883-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467296">LinuxLvm2LVStop ()</a>
3884+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11605984">LinuxLvm2LVStop ()</a>
3885 </dt></dl></dd>
3886 <dt>LinuxLvm2LVUuid</dt>
3887-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id476090">The "LinuxLvm2LVUuid" property</a>
3888+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12661664">The "LinuxLvm2LVUuid" property</a>
3889 </dt></dl></dd>
3890 <dt>LinuxLvm2PVGroupExtentSize</dt>
3891-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475872">The "LinuxLvm2PVGroupExtentSize" property</a>
3892+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12635408">The "LinuxLvm2PVGroupExtentSize" property</a>
3893 </dt></dl></dd>
3894 <dt>LinuxLvm2PVGroupLogicalVolumes</dt>
3895-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475981">The "LinuxLvm2PVGroupLogicalVolumes" property</a>
3896+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12648480">The "LinuxLvm2PVGroupLogicalVolumes" property</a>
3897 </dt></dl></dd>
3898 <dt>LinuxLvm2PVGroupName</dt>
3899-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475605">The "LinuxLvm2PVGroupName" property</a>
3900+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12603408">The "LinuxLvm2PVGroupName" property</a>
3901 </dt></dl></dd>
3902 <dt>LinuxLvm2PVGroupPhysicalVolumes</dt>
3903-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475926">The "LinuxLvm2PVGroupPhysicalVolumes" property</a>
3904+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12641888">The "LinuxLvm2PVGroupPhysicalVolumes" property</a>
3905 </dt></dl></dd>
3906 <dt>LinuxLvm2PVGroupSequenceNumber</dt>
3907-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475818">The "LinuxLvm2PVGroupSequenceNumber" property</a>
3908+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12628944">The "LinuxLvm2PVGroupSequenceNumber" property</a>
3909 </dt></dl></dd>
3910 <dt>LinuxLvm2PVGroupSize</dt>
3911-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475711">The "LinuxLvm2PVGroupSize" property</a>
3912+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12616112">The "LinuxLvm2PVGroupSize" property</a>
3913 </dt></dl></dd>
3914 <dt>LinuxLvm2PVGroupUnallocatedSize</dt>
3915-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475764">The "LinuxLvm2PVGroupUnallocatedSize" property</a>
3916+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12622464">The "LinuxLvm2PVGroupUnallocatedSize" property</a>
3917 </dt></dl></dd>
3918 <dt>LinuxLvm2PVGroupUuid</dt>
3919-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475658">The "LinuxLvm2PVGroupUuid" property</a>
3920+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12609760">The "LinuxLvm2PVGroupUuid" property</a>
3921 </dt></dl></dd>
3922 <dt>LinuxLvm2PVNumMetadataAreas</dt>
3923-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475551">The "LinuxLvm2PVNumMetadataAreas" property</a>
3924+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12596976">The "LinuxLvm2PVNumMetadataAreas" property</a>
3925 </dt></dl></dd>
3926 <dt>LinuxLvm2PVUuid</dt>
3927-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475499">The "LinuxLvm2PVUuid" property</a>
3928+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12590640">The "LinuxLvm2PVUuid" property</a>
3929 </dt></dl></dd>
3930 <dt>LinuxLvm2VGAddPV</dt>
3931-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429521">LinuxLvm2VGAddPV ()</a>
3932+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7250528">LinuxLvm2VGAddPV ()</a>
3933 </dt></dl></dd>
3934 <dt>LinuxLvm2VGRemovePV</dt>
3935-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429662">LinuxLvm2VGRemovePV ()</a>
3936+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7267520">LinuxLvm2VGRemovePV ()</a>
3937 </dt></dl></dd>
3938 <dt>LinuxLvm2VGSetName</dt>
3939-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429392">LinuxLvm2VGSetName ()</a>
3940+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7235152">LinuxLvm2VGSetName ()</a>
3941 </dt></dl></dd>
3942 <dt>LinuxLvm2VGStart</dt>
3943-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429136">LinuxLvm2VGStart ()</a>
3944+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7204272">LinuxLvm2VGStart ()</a>
3945 </dt></dl></dd>
3946 <dt>LinuxLvm2VGStop</dt>
3947-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id429264">LinuxLvm2VGStop ()</a>
3948+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp7219712">LinuxLvm2VGStop ()</a>
3949 </dt></dl></dd>
3950 <dt>LinuxMdAddSpare</dt>
3951-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466797">LinuxMdAddSpare ()</a>
3952+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11546208">LinuxMdAddSpare ()</a>
3953 </dt></dl></dd>
3954 <dt>LinuxMdCheck</dt>
3955-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467401">LinuxMdCheck ()</a>
3956+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11618672">LinuxMdCheck ()</a>
3957 </dt></dl></dd>
3958 <dt>LinuxMdComponentHolder</dt>
3959-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474670">The "LinuxMdComponentHolder" property</a>
3960+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12491168">The "LinuxMdComponentHolder" property</a>
3961 </dt></dl></dd>
3962 <dt>LinuxMdComponentHomeHost</dt>
3963-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474563">The "LinuxMdComponentHomeHost" property</a>
3964+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12478288">The "LinuxMdComponentHomeHost" property</a>
3965 </dt></dl></dd>
3966 <dt>LinuxMdComponentLevel</dt>
3967-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474242">The "LinuxMdComponentLevel" property</a>
3968+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12439728">The "LinuxMdComponentLevel" property</a>
3969 </dt></dl></dd>
3970 <dt>LinuxMdComponentName</dt>
3971-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474509">The "LinuxMdComponentName" property</a>
3972+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12471872">The "LinuxMdComponentName" property</a>
3973 </dt></dl></dd>
3974 <dt>LinuxMdComponentNumRaidDevices</dt>
3975-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474402">The "LinuxMdComponentNumRaidDevices" property</a>
3976+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12458992">The "LinuxMdComponentNumRaidDevices" property</a>
3977 </dt></dl></dd>
3978 <dt>LinuxMdComponentPosition</dt>
3979-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474348">The "LinuxMdComponentPosition" property</a>
3980+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12452528">The "LinuxMdComponentPosition" property</a>
3981 </dt></dl></dd>
3982 <dt>LinuxMdComponentState</dt>
3983-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474723">The "LinuxMdComponentState" property</a>
3984+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12497552">The "LinuxMdComponentState" property</a>
3985 </dt></dl></dd>
3986 <dt>LinuxMdComponentUuid</dt>
3987-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474455">The "LinuxMdComponentUuid" property</a>
3988+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12465472">The "LinuxMdComponentUuid" property</a>
3989 </dt></dl></dd>
3990 <dt>LinuxMdComponentVersion</dt>
3991-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474617">The "LinuxMdComponentVersion" property</a>
3992+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12484752">The "LinuxMdComponentVersion" property</a>
3993 </dt></dl></dd>
3994 <dt>LinuxMdCreate</dt>
3995-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id452792">LinuxMdCreate ()</a>
3996+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9912656">LinuxMdCreate ()</a>
3997 </dt></dl></dd>
3998 <dt>LinuxMdExpand</dt>
3999-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466928">LinuxMdExpand ()</a>
4000+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11561904">LinuxMdExpand ()</a>
4001 </dt></dl></dd>
4002 <dt>LinuxMdHomeHost</dt>
4003-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474953">The "LinuxMdHomeHost" property</a>
4004+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12525264">The "LinuxMdHomeHost" property</a>
4005 </dt></dl></dd>
4006 <dt>LinuxMdIsDegraded</dt>
4007-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475216">The "LinuxMdIsDegraded" property</a>
4008+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12556848">The "LinuxMdIsDegraded" property</a>
4009 </dt></dl></dd>
4010 <dt>LinuxMdLevel</dt>
4011-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474838">The "LinuxMdLevel" property</a>
4012+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12511504">The "LinuxMdLevel" property</a>
4013 </dt></dl></dd>
4014 <dt>LinuxMdName</dt>
4015-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475006">The "LinuxMdName" property</a>
4016+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12531616">The "LinuxMdName" property</a>
4017 </dt></dl></dd>
4018 <dt>LinuxMdNumRaidDevices</dt>
4019-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475058">The "LinuxMdNumRaidDevices" property</a>
4020+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12537904">The "LinuxMdNumRaidDevices" property</a>
4021 </dt></dl></dd>
4022 <dt>LinuxMdRemoveComponent</dt>
4023-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467058">LinuxMdRemoveComponent ()</a>
4024+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11577520">LinuxMdRemoveComponent ()</a>
4025 </dt></dl></dd>
4026 <dt>LinuxMdSlaves</dt>
4027-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475163">The "LinuxMdSlaves" property</a>
4028+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12550544">The "LinuxMdSlaves" property</a>
4029 </dt></dl></dd>
4030 <dt>LinuxMdStart</dt>
4031-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id430468">LinuxMdStart ()</a>
4032+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9897040">LinuxMdStart ()</a>
4033 </dt></dl></dd>
4034 <dt>LinuxMdState</dt>
4035-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474786">The "LinuxMdState" property</a>
4036+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12505152">The "LinuxMdState" property</a>
4037 </dt></dl></dd>
4038 <dt>LinuxMdStop</dt>
4039-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id467190">LinuxMdStop ()</a>
4040+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11593296">LinuxMdStop ()</a>
4041 </dt></dl></dd>
4042 <dt>LinuxMdSyncAction</dt>
4043-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475269">The "LinuxMdSyncAction" property</a>
4044+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12563168">The "LinuxMdSyncAction" property</a>
4045 </dt></dl></dd>
4046 <dt>LinuxMdSyncPercentage</dt>
4047-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475362">The "LinuxMdSyncPercentage" property</a>
4048+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12574272">The "LinuxMdSyncPercentage" property</a>
4049 </dt></dl></dd>
4050 <dt>LinuxMdSyncSpeed</dt>
4051-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475430">The "LinuxMdSyncSpeed" property</a>
4052+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12582464">The "LinuxMdSyncSpeed" property</a>
4053 </dt></dl></dd>
4054 <dt>LinuxMdUuid</dt>
4055-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id474901">The "LinuxMdUuid" property</a>
4056+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12518944">The "LinuxMdUuid" property</a>
4057 </dt></dl></dd>
4058 <dt>LinuxMdVersion</dt>
4059-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id475111">The "LinuxMdVersion" property</a>
4060+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12544272">The "LinuxMdVersion" property</a>
4061 </dt></dl></dd>
4062 <dt>LuksChangePassphrase</dt>
4063-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466640">LuksChangePassphrase ()</a>
4064+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11527424">LuksChangePassphrase ()</a>
4065 </dt></dl></dd>
4066 <dt>LuksCleartextSlave</dt>
4067-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471492">The "LuksCleartextSlave" property</a>
4068+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12109632">The "LuksCleartextSlave" property</a>
4069 </dt></dl></dd>
4070 <dt>LuksCleartextUnlockedByUid</dt>
4071-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471544">The "LuksCleartextUnlockedByUid" property</a>
4072+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12115968">The "LuksCleartextUnlockedByUid" property</a>
4073 </dt></dl></dd>
4074 <dt>LuksHolder</dt>
4075-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471439">The "LuksHolder" property</a>
4076+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12103328">The "LuksHolder" property</a>
4077 </dt></dl></dd>
4078 <dt>LuksLock</dt>
4079-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466512">LuksLock ()</a>
4080+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11512144">LuksLock ()</a>
4081 </dt></dl></dd>
4082 <dt>LuksUnlock</dt>
4083-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id466370">LuksUnlock ()</a>
4084+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp11495072">LuksUnlock ()</a>
4085 </dt></dl></dd>
4086 </dl>
4087 </div>
4088@@ -631,9 +631,9 @@
4089 <dl>
4090 <dt>Model</dt>
4091 <dd><dl>
4092-<dt>Adapter, <a class="indexterm" href="Adapter.html#id445341">The "Model" property</a>
4093+<dt>Adapter, <a class="indexterm" href="Adapter.html#idp6832688">The "Model" property</a>
4094 </dt>
4095-<dt>Expander, <a class="indexterm" href="Expander.html#id439213">The "Model" property</a>
4096+<dt>Expander, <a class="indexterm" href="Expander.html#idp9634880">The "Model" property</a>
4097 </dt>
4098 </dl></dd>
4099 </dl>
4100@@ -643,23 +643,23 @@
4101 <dl>
4102 <dt>NativePath</dt>
4103 <dd><dl>
4104-<dt>Adapter, <a class="indexterm" href="Adapter.html#id448349">The "NativePath" property</a>
4105-</dt>
4106-<dt>Device, <a class="indexterm" href="Device.html#id468933">The "NativePath" property</a>
4107-</dt>
4108-<dt>Expander, <a class="indexterm" href="Expander.html#id440751">The "NativePath" property</a>
4109-</dt>
4110-<dt>Port, <a class="indexterm" href="Port.html#id441370">The "NativePath" property</a>
4111+<dt>Adapter, <a class="indexterm" href="Adapter.html#idp6561184">The "NativePath" property</a>
4112+</dt>
4113+<dt>Device, <a class="indexterm" href="Device.html#idp11802432">The "NativePath" property</a>
4114+</dt>
4115+<dt>Expander, <a class="indexterm" href="Expander.html#idp6084320">The "NativePath" property</a>
4116+</dt>
4117+<dt>Port, <a class="indexterm" href="Port.html#idp9189488">The "NativePath" property</a>
4118 </dt>
4119 </dl></dd>
4120 <dt>Number</dt>
4121-<dd><dl><dt>Port, <a class="indexterm" href="Port.html#id447112">The "Number" property</a>
4122+<dd><dl><dt>Port, <a class="indexterm" href="Port.html#idp6340400">The "Number" property</a>
4123 </dt></dl></dd>
4124 <dt>NumPorts</dt>
4125 <dd><dl>
4126-<dt>Adapter, <a class="indexterm" href="Adapter.html#id421152">The "NumPorts" property</a>
4127+<dt>Adapter, <a class="indexterm" href="Adapter.html#idp6842528">The "NumPorts" property</a>
4128 </dt>
4129-<dt>Expander, <a class="indexterm" href="Expander.html#id431977">The "NumPorts" property</a>
4130+<dt>Expander, <a class="indexterm" href="Expander.html#idp9644720">The "NumPorts" property</a>
4131 </dt>
4132 </dl></dd>
4133 </dl>
4134@@ -668,22 +668,22 @@
4135 <h3>O</h3>
4136 <dl>
4137 <dt>OpticalDiscIsAppendable</dt>
4138-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473770">The "OpticalDiscIsAppendable" property</a>
4139+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12382864">The "OpticalDiscIsAppendable" property</a>
4140 </dt></dl></dd>
4141 <dt>OpticalDiscIsBlank</dt>
4142-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473716">The "OpticalDiscIsBlank" property</a>
4143+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12376544">The "OpticalDiscIsBlank" property</a>
4144 </dt></dl></dd>
4145 <dt>OpticalDiscIsClosed</dt>
4146-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473822">The "OpticalDiscIsClosed" property</a>
4147+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12389200">The "OpticalDiscIsClosed" property</a>
4148 </dt></dl></dd>
4149 <dt>OpticalDiscNumAudioTracks</dt>
4150-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473928">The "OpticalDiscNumAudioTracks" property</a>
4151+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12401888">The "OpticalDiscNumAudioTracks" property</a>
4152 </dt></dl></dd>
4153 <dt>OpticalDiscNumSessions</dt>
4154-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473981">The "OpticalDiscNumSessions" property</a>
4155+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12408320">The "OpticalDiscNumSessions" property</a>
4156 </dt></dl></dd>
4157 <dt>OpticalDiscNumTracks</dt>
4158-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id473875">The "OpticalDiscNumTracks" property</a>
4159+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12395584">The "OpticalDiscNumTracks" property</a>
4160 </dt></dl></dd>
4161 </dl>
4162 </div>
4163@@ -691,64 +691,64 @@
4164 <h3>P</h3>
4165 <dl>
4166 <dt>Parent</dt>
4167-<dd><dl><dt>Port, <a class="indexterm" href="Port.html#id441234">The "Parent" property</a>
4168+<dd><dl><dt>Port, <a class="indexterm" href="Port.html#idp6335360">The "Parent" property</a>
4169 </dt></dl></dd>
4170 <dt>PartitionAlignmentOffset</dt>
4171-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472162">The "PartitionAlignmentOffset" property</a>
4172+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12190144">The "PartitionAlignmentOffset" property</a>
4173 </dt></dl></dd>
4174 <dt>PartitionCreate</dt>
4175-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id412953">PartitionCreate ()</a>
4176+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5403712">PartitionCreate ()</a>
4177 </dt></dl></dd>
4178 <dt>PartitionDelete</dt>
4179-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id412811">PartitionDelete ()</a>
4180+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5386768">PartitionDelete ()</a>
4181 </dt></dl></dd>
4182 <dt>PartitionFlags</dt>
4183-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471926">The "PartitionFlags" property</a>
4184+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12161584">The "PartitionFlags" property</a>
4185 </dt></dl></dd>
4186 <dt>PartitionLabel</dt>
4187-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471788">The "PartitionLabel" property</a>
4188+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12145136">The "PartitionLabel" property</a>
4189 </dt></dl></dd>
4190 <dt>PartitionModify</dt>
4191-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id413334">PartitionModify ()</a>
4192+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5449536">PartitionModify ()</a>
4193 </dt></dl></dd>
4194 <dt>PartitionNumber</dt>
4195-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471994">The "PartitionNumber" property</a>
4196+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12169824">The "PartitionNumber" property</a>
4197 </dt></dl></dd>
4198 <dt>PartitionOffset</dt>
4199-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472047">The "PartitionOffset" property</a>
4200+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12176272">The "PartitionOffset" property</a>
4201 </dt></dl></dd>
4202 <dt>PartitionScheme</dt>
4203-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471651">The "PartitionScheme" property</a>
4204+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12128704">The "PartitionScheme" property</a>
4205 </dt></dl></dd>
4206 <dt>PartitionSize</dt>
4207-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472110">The "PartitionSize" property</a>
4208+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12183808">The "PartitionSize" property</a>
4209 </dt></dl></dd>
4210 <dt>PartitionSlave</dt>
4211-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471598">The "PartitionSlave" property</a>
4212+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12122400">The "PartitionSlave" property</a>
4213 </dt></dl></dd>
4214 <dt>PartitionTableCount</dt>
4215-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472286">The "PartitionTableCount" property</a>
4216+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12204800">The "PartitionTableCount" property</a>
4217 </dt></dl></dd>
4218 <dt>PartitionTableCreate</dt>
4219-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id412611">PartitionTableCreate ()</a>
4220+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp5362608">PartitionTableCreate ()</a>
4221 </dt></dl></dd>
4222 <dt>PartitionTableScheme</dt>
4223-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id472216">The "PartitionTableScheme" property</a>
4224+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12196560">The "PartitionTableScheme" property</a>
4225 </dt></dl></dd>
4226 <dt>PartitionType</dt>
4227-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471720">The "PartitionType" property</a>
4228+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12136944">The "PartitionType" property</a>
4229 </dt></dl></dd>
4230 <dt>PartitionUuid</dt>
4231-<dd><dl><dt>Device, <a class="indexterm" href="Device.html#id471857">The "PartitionUuid" property</a>
4232+<dd><dl><dt>Device, <a class="indexterm" href="Device.html#idp12153392">The "PartitionUuid" property</a>
4233 </dt></dl></dd>
4234 <dt>PortAdded</dt>
4235-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453565">The PortAdded signal</a>
4236+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10005472">The PortAdded signal</a>
4237 </dt></dl></dd>
4238 <dt>PortChanged</dt>
4239-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453641">The PortChanged signal</a>
4240+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10014496">The PortChanged signal</a>
4241 </dt></dl></dd>
4242 <dt>PortRemoved</dt>
4243-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453603">The PortRemoved signal</a>
4244+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10009984">The PortRemoved signal</a>
4245 </dt></dl></dd>
4246 </dl>
4247 </div>
4248@@ -756,7 +756,7 @@
4249 <h3>R</h3>
4250 <dl>
4251 <dt>Revision</dt>
4252-<dd><dl><dt>Expander, <a class="indexterm" href="Expander.html#id431936">The "Revision" property</a>
4253+<dd><dl><dt>Expander, <a class="indexterm" href="Expander.html#idp9639792">The "Revision" property</a>
4254 </dt></dl></dd>
4255 </dl>
4256 </div>
4257@@ -764,7 +764,7 @@
4258 <h3>S</h3>
4259 <dl>
4260 <dt>SupportsLuksDevices</dt>
4261-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453760">The "SupportsLuksDevices" property</a>
4262+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp10028880">The "SupportsLuksDevices" property</a>
4263 </dt></dl></dd>
4264 </dl>
4265 </div>
4266@@ -772,10 +772,10 @@
4267 <h3>U</h3>
4268 <dl>
4269 <dt>Uninhibit</dt>
4270-<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#id453035">Uninhibit ()</a>
4271+<dd><dl><dt>UDisks, <a class="indexterm" href="UDisks.html#idp9941856">Uninhibit ()</a>
4272 </dt></dl></dd>
4273 <dt>UpstreamPorts</dt>
4274-<dd><dl><dt>Expander, <a class="indexterm" href="Expander.html#id432029">The "UpstreamPorts" property</a>
4275+<dd><dl><dt>Expander, <a class="indexterm" href="Expander.html#idp5089488">The "UpstreamPorts" property</a>
4276 </dt></dl></dd>
4277 </dl>
4278 </div>
4279@@ -784,9 +784,9 @@
4280 <dl>
4281 <dt>Vendor</dt>
4282 <dd><dl>
4283-<dt>Adapter, <a class="indexterm" href="Adapter.html#id445300">The "Vendor" property</a>
4284+<dt>Adapter, <a class="indexterm" href="Adapter.html#idp6827808">The "Vendor" property</a>
4285 </dt>
4286-<dt>Expander, <a class="indexterm" href="Expander.html#id439172">The "Vendor" property</a>
4287+<dt>Expander, <a class="indexterm" href="Expander.html#idp9629952">The "Vendor" property</a>
4288 </dt>
4289 </dl></dd>
4290 </dl>
4291@@ -795,6 +795,6 @@
4292 </div>
4293 <div class="footer">
4294 <hr>
4295- Generated by GTK-Doc V1.17</div>
4296+ Generated by GTK-Doc V1.18</div>
4297 </body>
4298 </html>
4299\ No newline at end of file
4300
4301=== modified file 'doc/html/left.png'
4302Binary files doc/html/left.png 2011-06-29 16:56:49 +0000 and doc/html/left.png 2012-08-14 01:15:24 +0000 differ
4303=== modified file 'doc/html/license.html'
4304--- doc/html/license.html 2011-06-29 16:56:49 +0000
4305+++ doc/html/license.html 2012-08-14 01:15:24 +0000
4306@@ -7,7 +7,7 @@
4307 <link rel="home" href="index.html" title="udisks Reference Manual">
4308 <link rel="up" href="index.html" title="udisks Reference Manual">
4309 <link rel="prev" href="ix01.html" title="Index">
4310-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4311+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4312 <link rel="stylesheet" href="style.css" type="text/css">
4313 </head>
4314 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4315@@ -386,6 +386,6 @@
4316 </div>
4317 <div class="footer">
4318 <hr>
4319- Generated by GTK-Doc V1.17</div>
4320+ Generated by GTK-Doc V1.18</div>
4321 </body>
4322 </html>
4323\ No newline at end of file
4324
4325=== modified file 'doc/html/ref-dbus.html'
4326--- doc/html/ref-dbus.html 2011-06-29 16:56:49 +0000
4327+++ doc/html/ref-dbus.html 2012-08-14 01:15:24 +0000
4328@@ -8,7 +8,7 @@
4329 <link rel="up" href="index.html" title="udisks Reference Manual">
4330 <link rel="prev" href="index.html" title="udisks Reference Manual">
4331 <link rel="next" href="UDisks.html" title="org.freedesktop.UDisks">
4332-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4333+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4334 <link rel="stylesheet" href="style.css" type="text/css">
4335 </head>
4336 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4337@@ -55,6 +55,6 @@
4338 </div>
4339 <div class="footer">
4340 <hr>
4341- Generated by GTK-Doc V1.17</div>
4342+ Generated by GTK-Doc V1.18</div>
4343 </body>
4344 </html>
4345\ No newline at end of file
4346
4347=== modified file 'doc/html/right.png'
4348Binary files doc/html/right.png 2011-06-29 16:56:49 +0000 and doc/html/right.png 2012-08-14 01:15:24 +0000 differ
4349=== modified file 'doc/html/tools-fileformats.html'
4350--- doc/html/tools-fileformats.html 2011-06-29 16:56:49 +0000
4351+++ doc/html/tools-fileformats.html 2012-08-14 01:15:24 +0000
4352@@ -8,7 +8,7 @@
4353 <link rel="up" href="index.html" title="udisks Reference Manual">
4354 <link rel="prev" href="Port.html" title="org.freedesktop.UDisks.Port">
4355 <link rel="next" href="udisks.7.html" title="udisks">
4356-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4357+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4358 <link rel="stylesheet" href="style.css" type="text/css">
4359 </head>
4360 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4361@@ -51,6 +51,6 @@
4362 </div>
4363 <div class="footer">
4364 <hr>
4365- Generated by GTK-Doc V1.17</div>
4366+ Generated by GTK-Doc V1.18</div>
4367 </body>
4368 </html>
4369\ No newline at end of file
4370
4371=== modified file 'doc/html/udisks-daemon.8.html'
4372--- doc/html/udisks-daemon.8.html 2011-08-30 00:51:54 +0000
4373+++ doc/html/udisks-daemon.8.html 2012-08-14 01:15:24 +0000
4374@@ -8,7 +8,7 @@
4375 <link rel="up" href="tools-fileformats.html" title="Manual Pages">
4376 <link rel="prev" href="udisks.7.html" title="udisks">
4377 <link rel="next" href="udisks.1.html" title="udisks">
4378-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4379+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4380 <link rel="stylesheet" href="style.css" type="text/css">
4381 </head>
4382 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4383@@ -33,7 +33,7 @@
4384 <div class="cmdsynopsis"><p><code class="command">udisks-daemon</code> [<code class="option">--help</code>]</p></div>
4385 </div>
4386 <div class="refsect1">
4387-<a name="id444760"></a><h2>DESCRIPTION</h2>
4388+<a name="idp8059152"></a><h2>DESCRIPTION</h2>
4389 <p>
4390 <span class="emphasis"><em><span class="refentrytitle">udisks-daemon</span></em></span> provides
4391 the <span class="emphasis"><em>org.freedesktop.UDisks</em></span> service on the
4392@@ -52,7 +52,7 @@
4393 </p>
4394 </div>
4395 <div class="refsect1">
4396-<a name="id447911"></a><h2>OPTIONS</h2>
4397+<a name="idp6625328"></a><h2>OPTIONS</h2>
4398 <div class="variablelist"><table border="0">
4399 <col align="left" valign="top">
4400 <tbody><tr>
4401@@ -64,14 +64,14 @@
4402 </table></div>
4403 </div>
4404 <div class="refsect1">
4405-<a name="id446247"></a><h2>AUTHOR</h2>
4406+<a name="idp7921648"></a><h2>AUTHOR</h2>
4407 <p>
4408 Written by David Zeuthen <code class="email">&lt;<a class="email" href="mailto:david@fubar.dk">david@fubar.dk</a>&gt;</code> with
4409 a lot of help from many others.
4410 </p>
4411 </div>
4412 <div class="refsect1">
4413-<a name="id426585"></a><h2>BUGS</h2>
4414+<a name="idp6986640"></a><h2>BUGS</h2>
4415 <p>
4416 Please send bug reports to either the distribution bug tracker
4417 or the upstream bug tracker at
4418@@ -79,7 +79,7 @@
4419 </p>
4420 </div>
4421 <div class="refsect1">
4422-<a name="id428172"></a><h2>SEE ALSO</h2>
4423+<a name="idp7780208"></a><h2>SEE ALSO</h2>
4424 <p>
4425 <span class="citerefentry"><span class="refentrytitle">udisks</span>(7)</span>,
4426 <span class="citerefentry"><span class="refentrytitle">udisks</span>(1)</span>,
4427@@ -90,6 +90,6 @@
4428 </div>
4429 <div class="footer">
4430 <hr>
4431- Generated by GTK-Doc V1.17</div>
4432+ Generated by GTK-Doc V1.18</div>
4433 </body>
4434 </html>
4435\ No newline at end of file
4436
4437=== modified file 'doc/html/udisks-tcp-bridge.1.html'
4438--- doc/html/udisks-tcp-bridge.1.html 2011-08-30 00:51:54 +0000
4439+++ doc/html/udisks-tcp-bridge.1.html 2012-08-14 01:15:24 +0000
4440@@ -8,7 +8,7 @@
4441 <link rel="up" href="tools-fileformats.html" title="Manual Pages">
4442 <link rel="prev" href="udisks.1.html" title="udisks">
4443 <link rel="next" href="ix01.html" title="Index">
4444-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4445+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4446 <link rel="stylesheet" href="style.css" type="text/css">
4447 </head>
4448 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4449@@ -38,7 +38,7 @@
4450 ]</p></div>
4451 </div>
4452 <div class="refsect1">
4453-<a name="id434795"></a><h2>DESCRIPTION</h2>
4454+<a name="idp8863312"></a><h2>DESCRIPTION</h2>
4455 <p>
4456 This program is used by remote clients to connect to
4457 the <span class="emphasis"><em>org.freedesktop.UDisks</em></span> D-Bus service on
4458@@ -54,14 +54,14 @@
4459 </p>
4460 </div>
4461 <div class="refsect1">
4462-<a name="id443369"></a><h2>AUTHOR</h2>
4463+<a name="idp9260384"></a><h2>AUTHOR</h2>
4464 <p>
4465 Written by David Zeuthen <code class="email">&lt;<a class="email" href="mailto:david@fubar.dk">david@fubar.dk</a>&gt;</code> with
4466 a lot of help from many others.
4467 </p>
4468 </div>
4469 <div class="refsect1">
4470-<a name="id444652"></a><h2>BUGS</h2>
4471+<a name="idp6374608"></a><h2>BUGS</h2>
4472 <p>
4473 Please send bug reports to either the distribution bug tracker
4474 or the upstream bug tracker at
4475@@ -69,7 +69,7 @@
4476 </p>
4477 </div>
4478 <div class="refsect1">
4479-<a name="id452276"></a><h2>SEE ALSO</h2>
4480+<a name="idp6461600"></a><h2>SEE ALSO</h2>
4481 <p>
4482 <span class="citerefentry"><span class="refentrytitle">udisks-daemon</span>(8)</span>,
4483 <span class="citerefentry"><span class="refentrytitle">udisks</span>(7)</span>,
4484@@ -80,6 +80,6 @@
4485 </div>
4486 <div class="footer">
4487 <hr>
4488- Generated by GTK-Doc V1.17</div>
4489+ Generated by GTK-Doc V1.18</div>
4490 </body>
4491 </html>
4492\ No newline at end of file
4493
4494=== modified file 'doc/html/udisks.1.html'
4495--- doc/html/udisks.1.html 2011-08-30 00:51:54 +0000
4496+++ doc/html/udisks.1.html 2012-08-14 01:15:24 +0000
4497@@ -8,7 +8,7 @@
4498 <link rel="up" href="tools-fileformats.html" title="Manual Pages">
4499 <link rel="prev" href="udisks-daemon.8.html" title="udisks-daemon">
4500 <link rel="next" href="udisks-tcp-bridge.1.html" title="udisks-tcp-bridge">
4501-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4502+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4503 <link rel="stylesheet" href="style.css" type="text/css">
4504 </head>
4505 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4506@@ -33,7 +33,7 @@
4507 <div class="cmdsynopsis"><p><code class="command">udisks</code> [<code class="option">OPTIONS</code>]</p></div>
4508 </div>
4509 <div class="refsect1">
4510-<a name="id433097"></a><h2>DESCRIPTION</h2>
4511+<a name="idp9466064"></a><h2>DESCRIPTION</h2>
4512 <p>
4513 <span class="emphasis"><em><span class="refentrytitle">udisks</span></em></span> is a
4514 simple command line client for the
4515@@ -42,7 +42,7 @@
4516 </p>
4517 </div>
4518 <div class="refsect1">
4519-<a name="id449190"></a><h2>OPTIONS</h2>
4520+<a name="idp5059104"></a><h2>OPTIONS</h2>
4521 <div class="variablelist"><table border="0">
4522 <col align="left" valign="top">
4523 <tbody>
4524@@ -288,14 +288,14 @@
4525 </p>
4526 </div>
4527 <div class="refsect1">
4528-<a name="id411300"></a><h2>AUTHOR</h2>
4529+<a name="idp5575952"></a><h2>AUTHOR</h2>
4530 <p>
4531 Written by David Zeuthen <code class="email">&lt;<a class="email" href="mailto:david@fubar.dk">david@fubar.dk</a>&gt;</code> with
4532 a lot of help from many others.
4533 </p>
4534 </div>
4535 <div class="refsect1">
4536-<a name="id439747"></a><h2>BUGS</h2>
4537+<a name="idp9250688"></a><h2>BUGS</h2>
4538 <p>
4539 Please send bug reports to either the distribution bug tracker
4540 or the upstream bug tracker at
4541@@ -303,7 +303,7 @@
4542 </p>
4543 </div>
4544 <div class="refsect1">
4545-<a name="id426461"></a><h2>SEE ALSO</h2>
4546+<a name="idp7814416"></a><h2>SEE ALSO</h2>
4547 <p>
4548 <span class="citerefentry"><span class="refentrytitle">udisks-daemon</span>(8)</span>,
4549 <span class="citerefentry"><span class="refentrytitle">udisks</span>(7)</span>,
4550@@ -312,6 +312,6 @@
4551 </div>
4552 <div class="footer">
4553 <hr>
4554- Generated by GTK-Doc V1.17</div>
4555+ Generated by GTK-Doc V1.18</div>
4556 </body>
4557 </html>
4558\ No newline at end of file
4559
4560=== modified file 'doc/html/udisks.7.html'
4561--- doc/html/udisks.7.html 2011-08-30 00:51:54 +0000
4562+++ doc/html/udisks.7.html 2012-08-14 01:15:24 +0000
4563@@ -8,7 +8,7 @@
4564 <link rel="up" href="tools-fileformats.html" title="Manual Pages">
4565 <link rel="prev" href="tools-fileformats.html" title="Manual Pages">
4566 <link rel="next" href="udisks-daemon.8.html" title="udisks-daemon">
4567-<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
4568+<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
4569 <link rel="stylesheet" href="style.css" type="text/css">
4570 </head>
4571 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4572@@ -29,7 +29,7 @@
4573 <td valign="top" align="right"></td>
4574 </tr></table></div>
4575 <div class="refsect1">
4576-<a name="id447497"></a><h2>DESCRIPTION</h2>
4577+<a name="idp6407536"></a><h2>DESCRIPTION</h2>
4578 <p>
4579 udisks provides an interface to enumerate storage
4580 devices and perform operations on them. Any application
4581@@ -39,7 +39,7 @@
4582 </p>
4583 </div>
4584 <div class="refsect1">
4585-<a name="id438061"></a><h2>DEVICE INFORMATION</h2>
4586+<a name="idp7660640"></a><h2>DEVICE INFORMATION</h2>
4587 <p>
4588 On Linux, udisks relies on recent versions of
4589 <span class="citerefentry"><span class="refentrytitle">udev</span>(7)</span>
4590@@ -177,7 +177,7 @@
4591 </tr>
4592 <tr>
4593 <td><p><span class="term"><code class="option">ID_DRIVE_FLASH_SDHC</code></span></p></td>
4594-<td><p>The device is compatible with High-Capicity SecureDigital.
4595+<td><p>The device is compatible with High-Capacity SecureDigital.
4596 </p></td>
4597 </tr>
4598 <tr>
4599@@ -240,7 +240,7 @@
4600 </tr>
4601 <tr>
4602 <td><p><span class="term"><code class="option">ID_DRIVE_MEDIA_FLASH_SDHC</code></span></p></td>
4603-<td><p>The physical media currently inserted into the device is High-Capicity SecureDigital.
4604+<td><p>The physical media currently inserted into the device is High-Capacity SecureDigital.
4605 </p></td>
4606 </tr>
4607 <tr>
4608@@ -267,20 +267,20 @@
4609 </table></div>
4610 </div>
4611 <div class="refsect1">
4612-<a name="id417322"></a><h2>REMOTE CLIENTS</h2>
4613+<a name="idp6381168"></a><h2>REMOTE CLIENTS</h2>
4614 <p>
4615 TODO: write me.
4616 </p>
4617 </div>
4618 <div class="refsect1">
4619-<a name="id452343"></a><h2>AUTHOR</h2>
4620+<a name="idp9804048"></a><h2>AUTHOR</h2>
4621 <p>
4622 Written by David Zeuthen <code class="email">&lt;<a class="email" href="mailto:david@fubar.dk">david@fubar.dk</a>&gt;</code> with
4623 a lot of help from many others.
4624 </p>
4625 </div>
4626 <div class="refsect1">
4627-<a name="id417267"></a><h2>BUGS</h2>
4628+<a name="idp9801920"></a><h2>BUGS</h2>
4629 <p>
4630 Please send bug reports to either the distribution bug tracker
4631 or the upstream bug tracker at
4632@@ -288,7 +288,7 @@
4633 </p>
4634 </div>
4635 <div class="refsect1">
4636-<a name="id447434"></a><h2>SEE ALSO</h2>
4637+<a name="idp9855504"></a><h2>SEE ALSO</h2>
4638 <p>
4639 <span class="citerefentry"><span class="refentrytitle">udev</span>(7)</span>,
4640 <span class="citerefentry"><span class="refentrytitle">polkit</span>(8)</span>,
4641@@ -300,6 +300,6 @@
4642 </div>
4643 <div class="footer">
4644 <hr>
4645- Generated by GTK-Doc V1.17</div>
4646+ Generated by GTK-Doc V1.18</div>
4647 </body>
4648 </html>
4649\ No newline at end of file
4650
4651=== removed file 'doc/html/udisks.devhelp'
4652--- doc/html/udisks.devhelp 2011-06-29 16:56:49 +0000
4653+++ doc/html/udisks.devhelp 1970-01-01 00:00:00 +0000
4654@@ -1,250 +0,0 @@
4655-<?xml version="1.0" encoding="utf-8" standalone="no"?>
4656-<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
4657-<book xmlns="http://www.devhelp.net/book" title="udisks Reference Manual" link="index.html" author="David Zeuthen" name="udisks">
4658- <chapters>
4659- <sub name="D-Bus API Reference" link="ref-dbus.html">
4660- <sub name="org.freedesktop.UDisks" link="UDisks.html"/>
4661- <sub name="org.freedesktop.UDisks.Device" link="Device.html"/>
4662- <sub name="org.freedesktop.UDisks.Adapter" link="Adapter.html"/>
4663- <sub name="org.freedesktop.UDisks.Expander" link="Expander.html"/>
4664- <sub name="org.freedesktop.UDisks.Port" link="Port.html"/>
4665- </sub>
4666- <sub name="Manual Pages" link="tools-fileformats.html">
4667- <sub name="udisks" link="udisks.7.html"/>
4668- <sub name="udisks-daemon" link="udisks-daemon.8.html"/>
4669- <sub name="udisks" link="udisks.1.html"/>
4670- <sub name="udisks-tcp-bridge" link="udisks-tcp-bridge.1.html"/>
4671- </sub>
4672- <sub name="Index" link="ix01.html"/>
4673- <sub name="License" link="license.html"/>
4674- </chapters>
4675- <functions>
4676- <function name="EnumerateAdapters ()" link="UDisks.html#UDisks.EnumerateAdapters"/>
4677- <function name="EnumerateExpanders ()" link="UDisks.html#UDisks.EnumerateExpanders"/>
4678- <function name="EnumeratePorts ()" link="UDisks.html#UDisks.EnumeratePorts"/>
4679- <function name="EnumerateDevices ()" link="UDisks.html#UDisks.EnumerateDevices"/>
4680- <function name="EnumerateDeviceFiles ()" link="UDisks.html#UDisks.EnumerateDeviceFiles"/>
4681- <function name="FindDeviceByDeviceFile ()" link="UDisks.html#UDisks.FindDeviceByDeviceFile"/>
4682- <function name="FindDeviceByMajorMinor ()" link="UDisks.html#UDisks.FindDeviceByMajorMinor"/>
4683- <function name="DriveInhibitAllPolling ()" link="UDisks.html#UDisks.DriveInhibitAllPolling"/>
4684- <function name="DriveUninhibitAllPolling ()" link="UDisks.html#UDisks.DriveUninhibitAllPolling"/>
4685- <function name="DriveSetAllSpindownTimeouts ()" link="UDisks.html#UDisks.DriveSetAllSpindownTimeouts"/>
4686- <function name="DriveUnsetAllSpindownTimeouts ()" link="UDisks.html#UDisks.DriveUnsetAllSpindownTimeouts"/>
4687- <function name="LinuxLvm2VGStart ()" link="UDisks.html#UDisks.LinuxLvm2VGStart"/>
4688- <function name="LinuxLvm2VGStop ()" link="UDisks.html#UDisks.LinuxLvm2VGStop"/>
4689- <function name="LinuxLvm2VGSetName ()" link="UDisks.html#UDisks.LinuxLvm2VGSetName"/>
4690- <function name="LinuxLvm2VGAddPV ()" link="UDisks.html#UDisks.LinuxLvm2VGAddPV"/>
4691- <function name="LinuxLvm2VGRemovePV ()" link="UDisks.html#UDisks.LinuxLvm2VGRemovePV"/>
4692- <function name="LinuxLvm2LVSetName ()" link="UDisks.html#UDisks.LinuxLvm2LVSetName"/>
4693- <function name="LinuxLvm2LVStart ()" link="UDisks.html#UDisks.LinuxLvm2LVStart"/>
4694- <function name="LinuxLvm2LVRemove ()" link="UDisks.html#UDisks.LinuxLvm2LVRemove"/>
4695- <function name="LinuxLvm2LVCreate ()" link="UDisks.html#UDisks.LinuxLvm2LVCreate"/>
4696- <function name="LinuxMdStart ()" link="UDisks.html#UDisks.LinuxMdStart"/>
4697- <function name="LinuxMdCreate ()" link="UDisks.html#UDisks.LinuxMdCreate"/>
4698- <function name="Inhibit ()" link="UDisks.html#UDisks.Inhibit"/>
4699- <function name="Uninhibit ()" link="UDisks.html#UDisks.Uninhibit"/>
4700- <function name="The DeviceAdded signal" link="UDisks.html#UDisks::DeviceAdded"/>
4701- <function name="The DeviceRemoved signal" link="UDisks.html#UDisks::DeviceRemoved"/>
4702- <function name="The DeviceChanged signal" link="UDisks.html#UDisks::DeviceChanged"/>
4703- <function name="The DeviceJobChanged signal" link="UDisks.html#UDisks::DeviceJobChanged"/>
4704- <function name="The AdapterAdded signal" link="UDisks.html#UDisks::AdapterAdded"/>
4705- <function name="The AdapterRemoved signal" link="UDisks.html#UDisks::AdapterRemoved"/>
4706- <function name="The AdapterChanged signal" link="UDisks.html#UDisks::AdapterChanged"/>
4707- <function name="The ExpanderAdded signal" link="UDisks.html#UDisks::ExpanderAdded"/>
4708- <function name="The ExpanderRemoved signal" link="UDisks.html#UDisks::ExpanderRemoved"/>
4709- <function name="The ExpanderChanged signal" link="UDisks.html#UDisks::ExpanderChanged"/>
4710- <function name="The PortAdded signal" link="UDisks.html#UDisks::PortAdded"/>
4711- <function name="The PortRemoved signal" link="UDisks.html#UDisks::PortRemoved"/>
4712- <function name="The PortChanged signal" link="UDisks.html#UDisks::PortChanged"/>
4713- <function name="The &quot;DaemonVersion&quot; property" link="UDisks.html#UDisks:DaemonVersion"/>
4714- <function name="The &quot;DaemonIsInhibited&quot; property" link="UDisks.html#UDisks:DaemonIsInhibited"/>
4715- <function name="The &quot;SupportsLuksDevices&quot; property" link="UDisks.html#UDisks:SupportsLuksDevices"/>
4716- <function name="The &quot;KnownFilesystems&quot; property" link="UDisks.html#UDisks:KnownFilesystems"/>
4717- <function name="JobCancel ()" link="Device.html#Device.JobCancel"/>
4718- <function name="PartitionTableCreate ()" link="Device.html#Device.PartitionTableCreate"/>
4719- <function name="PartitionDelete ()" link="Device.html#Device.PartitionDelete"/>
4720- <function name="PartitionCreate ()" link="Device.html#Device.PartitionCreate"/>
4721- <function name="PartitionModify ()" link="Device.html#Device.PartitionModify"/>
4722- <function name="FilesystemCreate ()" link="Device.html#Device.FilesystemCreate"/>
4723- <function name="FilesystemSetLabel ()" link="Device.html#Device.FilesystemSetLabel"/>
4724- <function name="FilesystemMount ()" link="Device.html#Device.FilesystemMount"/>
4725- <function name="FilesystemUnmount ()" link="Device.html#Device.FilesystemUnmount"/>
4726- <function name="FilesystemCheck ()" link="Device.html#Device.FilesystemCheck"/>
4727- <function name="FilesystemListOpenFiles ()" link="Device.html#Device.FilesystemListOpenFiles"/>
4728- <function name="LuksUnlock ()" link="Device.html#Device.LuksUnlock"/>
4729- <function name="LuksLock ()" link="Device.html#Device.LuksLock"/>
4730- <function name="LuksChangePassphrase ()" link="Device.html#Device.LuksChangePassphrase"/>
4731- <function name="LinuxMdAddSpare ()" link="Device.html#Device.LinuxMdAddSpare"/>
4732- <function name="LinuxMdExpand ()" link="Device.html#Device.LinuxMdExpand"/>
4733- <function name="LinuxMdRemoveComponent ()" link="Device.html#Device.LinuxMdRemoveComponent"/>
4734- <function name="LinuxMdStop ()" link="Device.html#Device.LinuxMdStop"/>
4735- <function name="LinuxLvm2LVStop ()" link="Device.html#Device.LinuxLvm2LVStop"/>
4736- <function name="LinuxMdCheck ()" link="Device.html#Device.LinuxMdCheck"/>
4737- <function name="DriveInhibitPolling ()" link="Device.html#Device.DriveInhibitPolling"/>
4738- <function name="DriveUninhibitPolling ()" link="Device.html#Device.DriveUninhibitPolling"/>
4739- <function name="DrivePollMedia ()" link="Device.html#Device.DrivePollMedia"/>
4740- <function name="DriveEject ()" link="Device.html#Device.DriveEject"/>
4741- <function name="DriveDetach ()" link="Device.html#Device.DriveDetach"/>
4742- <function name="DriveSetSpindownTimeout ()" link="Device.html#Device.DriveSetSpindownTimeout"/>
4743- <function name="DriveUnsetSpindownTimeout ()" link="Device.html#Device.DriveUnsetSpindownTimeout"/>
4744- <function name="DriveAtaSmartRefreshData ()" link="Device.html#Device.DriveAtaSmartRefreshData"/>
4745- <function name="DriveAtaSmartInitiateSelftest ()" link="Device.html#Device.DriveAtaSmartInitiateSelftest"/>
4746- <function name="DriveBenchmark ()" link="Device.html#Device.DriveBenchmark"/>
4747- <function name="The Changed signal" link="Device.html#Device::Changed"/>
4748- <function name="The JobChanged signal" link="Device.html#Device::JobChanged"/>
4749- <function name="The &quot;NativePath&quot; property" link="Device.html#Device:NativePath"/>
4750- <function name="The &quot;DeviceDetectionTime&quot; property" link="Device.html#Device:DeviceDetectionTime"/>
4751- <function name="The &quot;DeviceMediaDetectionTime&quot; property" link="Device.html#Device:DeviceMediaDetectionTime"/>
4752- <function name="The &quot;DeviceMajor&quot; property" link="Device.html#Device:DeviceMajor"/>
4753- <function name="The &quot;DeviceMinor&quot; property" link="Device.html#Device:DeviceMinor"/>
4754- <function name="The &quot;DeviceFile&quot; property" link="Device.html#Device:DeviceFile"/>
4755- <function name="The &quot;DeviceFilePresentation&quot; property" link="Device.html#Device:DeviceFilePresentation"/>
4756- <function name="The &quot;DeviceFileById&quot; property" link="Device.html#Device:DeviceFileById"/>
4757- <function name="The &quot;DeviceFileByPath&quot; property" link="Device.html#Device:DeviceFileByPath"/>
4758- <function name="The &quot;DeviceIsSystemInternal&quot; property" link="Device.html#Device:DeviceIsSystemInternal"/>
4759- <function name="The &quot;DeviceIsPartition&quot; property" link="Device.html#Device:DeviceIsPartition"/>
4760- <function name="The &quot;DeviceIsPartitionTable&quot; property" link="Device.html#Device:DeviceIsPartitionTable"/>
4761- <function name="The &quot;DeviceIsRemovable&quot; property" link="Device.html#Device:DeviceIsRemovable"/>
4762- <function name="The &quot;DeviceIsMediaAvailable&quot; property" link="Device.html#Device:DeviceIsMediaAvailable"/>
4763- <function name="The &quot;DeviceIsMediaChangeDetected&quot; property" link="Device.html#Device:DeviceIsMediaChangeDetected"/>
4764- <function name="The &quot;DeviceIsMediaChangeDetectionPolling&quot; property" link="Device.html#Device:DeviceIsMediaChangeDetectionPolling"/>
4765- <function name="The &quot;DeviceIsMediaChangeDetectionInhibitable&quot; property" link="Device.html#Device:DeviceIsMediaChangeDetectionInhibitable"/>
4766- <function name="The &quot;DeviceIsMediaChangeDetectionInhibited&quot; property" link="Device.html#Device:DeviceIsMediaChangeDetectionInhibited"/>
4767- <function name="The &quot;DeviceIsReadOnly&quot; property" link="Device.html#Device:DeviceIsReadOnly"/>
4768- <function name="The &quot;DeviceIsDrive&quot; property" link="Device.html#Device:DeviceIsDrive"/>
4769- <function name="The &quot;DeviceIsOpticalDisc&quot; property" link="Device.html#Device:DeviceIsOpticalDisc"/>
4770- <function name="The &quot;DeviceIsMounted&quot; property" link="Device.html#Device:DeviceIsMounted"/>
4771- <function name="The &quot;DeviceMountPaths&quot; property" link="Device.html#Device:DeviceMountPaths"/>
4772- <function name="The &quot;DeviceMountedByUid&quot; property" link="Device.html#Device:DeviceMountedByUid"/>
4773- <function name="The &quot;DeviceIsLuks&quot; property" link="Device.html#Device:DeviceIsLuks"/>
4774- <function name="The &quot;DeviceIsLuksCleartext&quot; property" link="Device.html#Device:DeviceIsLuksCleartext"/>
4775- <function name="The &quot;DeviceIsLinuxMdComponent&quot; property" link="Device.html#Device:DeviceIsLinuxMdComponent"/>
4776- <function name="The &quot;DeviceIsLinuxMd&quot; property" link="Device.html#Device:DeviceIsLinuxMd"/>
4777- <function name="The &quot;DeviceIsLinuxLvm2LV&quot; property" link="Device.html#Device:DeviceIsLinuxLvm2LV"/>
4778- <function name="The &quot;DeviceIsLinuxLvm2PV&quot; property" link="Device.html#Device:DeviceIsLinuxLvm2PV"/>
4779- <function name="The &quot;DeviceIsLinuxDmmpComponent&quot; property" link="Device.html#Device:DeviceIsLinuxDmmpComponent"/>
4780- <function name="The &quot;DeviceIsLinuxDmmp&quot; property" link="Device.html#Device:DeviceIsLinuxDmmp"/>
4781- <function name="The &quot;DeviceIsLinuxLoop&quot; property" link="Device.html#Device:DeviceIsLinuxLoop"/>
4782- <function name="The &quot;DeviceSize&quot; property" link="Device.html#Device:DeviceSize"/>
4783- <function name="The &quot;DeviceBlockSize&quot; property" link="Device.html#Device:DeviceBlockSize"/>
4784- <function name="The &quot;DevicePresentationHide&quot; property" link="Device.html#Device:DevicePresentationHide"/>
4785- <function name="The &quot;DevicePresentationNopolicy&quot; property" link="Device.html#Device:DevicePresentationNopolicy"/>
4786- <function name="The &quot;DevicePresentationName&quot; property" link="Device.html#Device:DevicePresentationName"/>
4787- <function name="The &quot;DevicePresentationIconName&quot; property" link="Device.html#Device:DevicePresentationIconName"/>
4788- <function name="The &quot;DeviceAutomountHint&quot; property" link="Device.html#Device:DeviceAutomountHint"/>
4789- <function name="The &quot;JobInProgress&quot; property" link="Device.html#Device:JobInProgress"/>
4790- <function name="The &quot;JobId&quot; property" link="Device.html#Device:JobId"/>
4791- <function name="The &quot;JobInitiatedByUid&quot; property" link="Device.html#Device:JobInitiatedByUid"/>
4792- <function name="The &quot;JobIsCancellable&quot; property" link="Device.html#Device:JobIsCancellable"/>
4793- <function name="The &quot;JobPercentage&quot; property" link="Device.html#Device:JobPercentage"/>
4794- <function name="The &quot;IdUsage&quot; property" link="Device.html#Device:IdUsage"/>
4795- <function name="The &quot;IdType&quot; property" link="Device.html#Device:IdType"/>
4796- <function name="The &quot;IdVersion&quot; property" link="Device.html#Device:IdVersion"/>
4797- <function name="The &quot;IdUuid&quot; property" link="Device.html#Device:IdUuid"/>
4798- <function name="The &quot;IdLabel&quot; property" link="Device.html#Device:IdLabel"/>
4799- <function name="The &quot;LuksHolder&quot; property" link="Device.html#Device:LuksHolder"/>
4800- <function name="The &quot;LuksCleartextSlave&quot; property" link="Device.html#Device:LuksCleartextSlave"/>
4801- <function name="The &quot;LuksCleartextUnlockedByUid&quot; property" link="Device.html#Device:LuksCleartextUnlockedByUid"/>
4802- <function name="The &quot;PartitionSlave&quot; property" link="Device.html#Device:PartitionSlave"/>
4803- <function name="The &quot;PartitionScheme&quot; property" link="Device.html#Device:PartitionScheme"/>
4804- <function name="The &quot;PartitionType&quot; property" link="Device.html#Device:PartitionType"/>
4805- <function name="The &quot;PartitionLabel&quot; property" link="Device.html#Device:PartitionLabel"/>
4806- <function name="The &quot;PartitionUuid&quot; property" link="Device.html#Device:PartitionUuid"/>
4807- <function name="The &quot;PartitionFlags&quot; property" link="Device.html#Device:PartitionFlags"/>
4808- <function name="The &quot;PartitionNumber&quot; property" link="Device.html#Device:PartitionNumber"/>
4809- <function name="The &quot;PartitionOffset&quot; property" link="Device.html#Device:PartitionOffset"/>
4810- <function name="The &quot;PartitionSize&quot; property" link="Device.html#Device:PartitionSize"/>
4811- <function name="The &quot;PartitionAlignmentOffset&quot; property" link="Device.html#Device:PartitionAlignmentOffset"/>
4812- <function name="The &quot;PartitionTableScheme&quot; property" link="Device.html#Device:PartitionTableScheme"/>
4813- <function name="The &quot;PartitionTableCount&quot; property" link="Device.html#Device:PartitionTableCount"/>
4814- <function name="The &quot;DriveVendor&quot; property" link="Device.html#Device:DriveVendor"/>
4815- <function name="The &quot;DriveModel&quot; property" link="Device.html#Device:DriveModel"/>
4816- <function name="The &quot;DriveRevision&quot; property" link="Device.html#Device:DriveRevision"/>
4817- <function name="The &quot;DriveSerial&quot; property" link="Device.html#Device:DriveSerial"/>
4818- <function name="The &quot;DriveWwn&quot; property" link="Device.html#Device:DriveWwn"/>
4819- <function name="The &quot;DriveRotationRate&quot; property" link="Device.html#Device:DriveRotationRate"/>
4820- <function name="The &quot;DriveWriteCache&quot; property" link="Device.html#Device:DriveWriteCache"/>
4821- <function name="The &quot;DriveConnectionInterface&quot; property" link="Device.html#Device:DriveConnectionInterface"/>
4822- <function name="The &quot;DriveConnectionSpeed&quot; property" link="Device.html#Device:DriveConnectionSpeed"/>
4823- <function name="The &quot;DriveMediaCompatibility&quot; property" link="Device.html#Device:DriveMediaCompatibility"/>
4824- <function name="The &quot;DriveMedia&quot; property" link="Device.html#Device:DriveMedia"/>
4825- <function name="The &quot;DriveIsMediaEjectable&quot; property" link="Device.html#Device:DriveIsMediaEjectable"/>
4826- <function name="The &quot;DriveCanDetach&quot; property" link="Device.html#Device:DriveCanDetach"/>
4827- <function name="The &quot;DriveCanSpindown&quot; property" link="Device.html#Device:DriveCanSpindown"/>
4828- <function name="The &quot;DriveIsRotational&quot; property" link="Device.html#Device:DriveIsRotational"/>
4829- <function name="The &quot;DriveAdapter&quot; property" link="Device.html#Device:DriveAdapter"/>
4830- <function name="The &quot;DrivePorts&quot; property" link="Device.html#Device:DrivePorts"/>
4831- <function name="The &quot;DriveSimilarDevices&quot; property" link="Device.html#Device:DriveSimilarDevices"/>
4832- <function name="The &quot;OpticalDiscIsBlank&quot; property" link="Device.html#Device:OpticalDiscIsBlank"/>
4833- <function name="The &quot;OpticalDiscIsAppendable&quot; property" link="Device.html#Device:OpticalDiscIsAppendable"/>
4834- <function name="The &quot;OpticalDiscIsClosed&quot; property" link="Device.html#Device:OpticalDiscIsClosed"/>
4835- <function name="The &quot;OpticalDiscNumTracks&quot; property" link="Device.html#Device:OpticalDiscNumTracks"/>
4836- <function name="The &quot;OpticalDiscNumAudioTracks&quot; property" link="Device.html#Device:OpticalDiscNumAudioTracks"/>
4837- <function name="The &quot;OpticalDiscNumSessions&quot; property" link="Device.html#Device:OpticalDiscNumSessions"/>
4838- <function name="The &quot;DriveAtaSmartIsAvailable&quot; property" link="Device.html#Device:DriveAtaSmartIsAvailable"/>
4839- <function name="The &quot;DriveAtaSmartTimeCollected&quot; property" link="Device.html#Device:DriveAtaSmartTimeCollected"/>
4840- <function name="The &quot;DriveAtaSmartStatus&quot; property" link="Device.html#Device:DriveAtaSmartStatus"/>
4841- <function name="The &quot;DriveAtaSmartBlob&quot; property" link="Device.html#Device:DriveAtaSmartBlob"/>
4842- <function name="The &quot;LinuxMdComponentLevel&quot; property" link="Device.html#Device:LinuxMdComponentLevel"/>
4843- <function name="The &quot;LinuxMdComponentPosition&quot; property" link="Device.html#Device:LinuxMdComponentPosition"/>
4844- <function name="The &quot;LinuxMdComponentNumRaidDevices&quot; property" link="Device.html#Device:LinuxMdComponentNumRaidDevices"/>
4845- <function name="The &quot;LinuxMdComponentUuid&quot; property" link="Device.html#Device:LinuxMdComponentUuid"/>
4846- <function name="The &quot;LinuxMdComponentName&quot; property" link="Device.html#Device:LinuxMdComponentName"/>
4847- <function name="The &quot;LinuxMdComponentHomeHost&quot; property" link="Device.html#Device:LinuxMdComponentHomeHost"/>
4848- <function name="The &quot;LinuxMdComponentVersion&quot; property" link="Device.html#Device:LinuxMdComponentVersion"/>
4849- <function name="The &quot;LinuxMdComponentHolder&quot; property" link="Device.html#Device:LinuxMdComponentHolder"/>
4850- <function name="The &quot;LinuxMdComponentState&quot; property" link="Device.html#Device:LinuxMdComponentState"/>
4851- <function name="The &quot;LinuxMdState&quot; property" link="Device.html#Device:LinuxMdState"/>
4852- <function name="The &quot;LinuxMdLevel&quot; property" link="Device.html#Device:LinuxMdLevel"/>
4853- <function name="The &quot;LinuxMdUuid&quot; property" link="Device.html#Device:LinuxMdUuid"/>
4854- <function name="The &quot;LinuxMdHomeHost&quot; property" link="Device.html#Device:LinuxMdHomeHost"/>
4855- <function name="The &quot;LinuxMdName&quot; property" link="Device.html#Device:LinuxMdName"/>
4856- <function name="The &quot;LinuxMdNumRaidDevices&quot; property" link="Device.html#Device:LinuxMdNumRaidDevices"/>
4857- <function name="The &quot;LinuxMdVersion&quot; property" link="Device.html#Device:LinuxMdVersion"/>
4858- <function name="The &quot;LinuxMdSlaves&quot; property" link="Device.html#Device:LinuxMdSlaves"/>
4859- <function name="The &quot;LinuxMdIsDegraded&quot; property" link="Device.html#Device:LinuxMdIsDegraded"/>
4860- <function name="The &quot;LinuxMdSyncAction&quot; property" link="Device.html#Device:LinuxMdSyncAction"/>
4861- <function name="The &quot;LinuxMdSyncPercentage&quot; property" link="Device.html#Device:LinuxMdSyncPercentage"/>
4862- <function name="The &quot;LinuxMdSyncSpeed&quot; property" link="Device.html#Device:LinuxMdSyncSpeed"/>
4863- <function name="The &quot;LinuxLvm2PVUuid&quot; property" link="Device.html#Device:LinuxLvm2PVUuid"/>
4864- <function name="The &quot;LinuxLvm2PVNumMetadataAreas&quot; property" link="Device.html#Device:LinuxLvm2PVNumMetadataAreas"/>
4865- <function name="The &quot;LinuxLvm2PVGroupName&quot; property" link="Device.html#Device:LinuxLvm2PVGroupName"/>
4866- <function name="The &quot;LinuxLvm2PVGroupUuid&quot; property" link="Device.html#Device:LinuxLvm2PVGroupUuid"/>
4867- <function name="The &quot;LinuxLvm2PVGroupSize&quot; property" link="Device.html#Device:LinuxLvm2PVGroupSize"/>
4868- <function name="The &quot;LinuxLvm2PVGroupUnallocatedSize&quot; property" link="Device.html#Device:LinuxLvm2PVGroupUnallocatedSize"/>
4869- <function name="The &quot;LinuxLvm2PVGroupSequenceNumber&quot; property" link="Device.html#Device:LinuxLvm2PVGroupSequenceNumber"/>
4870- <function name="The &quot;LinuxLvm2PVGroupExtentSize&quot; property" link="Device.html#Device:LinuxLvm2PVGroupExtentSize"/>
4871- <function name="The &quot;LinuxLvm2PVGroupPhysicalVolumes&quot; property" link="Device.html#Device:LinuxLvm2PVGroupPhysicalVolumes"/>
4872- <function name="The &quot;LinuxLvm2PVGroupLogicalVolumes&quot; property" link="Device.html#Device:LinuxLvm2PVGroupLogicalVolumes"/>
4873- <function name="The &quot;LinuxLvm2LVName&quot; property" link="Device.html#Device:LinuxLvm2LVName"/>
4874- <function name="The &quot;LinuxLvm2LVUuid&quot; property" link="Device.html#Device:LinuxLvm2LVUuid"/>
4875- <function name="The &quot;LinuxLvm2LVGroupName&quot; property" link="Device.html#Device:LinuxLvm2LVGroupName"/>
4876- <function name="The &quot;LinuxLvm2LVGroupUuid&quot; property" link="Device.html#Device:LinuxLvm2LVGroupUuid"/>
4877- <function name="The &quot;LinuxDmmpComponentHolder&quot; property" link="Device.html#Device:LinuxDmmpComponentHolder"/>
4878- <function name="The &quot;LinuxDmmpName&quot; property" link="Device.html#Device:LinuxDmmpName"/>
4879- <function name="The &quot;LinuxDmmpSlaves&quot; property" link="Device.html#Device:LinuxDmmpSlaves"/>
4880- <function name="The &quot;LinuxDmmpParameters&quot; property" link="Device.html#Device:LinuxDmmpParameters"/>
4881- <function name="The &quot;LinuxLoopFilename&quot; property" link="Device.html#Device:LinuxLoopFilename"/>
4882- <function name="The Changed signal" link="Adapter.html#Adapter::Changed"/>
4883- <function name="The &quot;NativePath&quot; property" link="Adapter.html#Adapter:NativePath"/>
4884- <function name="The &quot;Vendor&quot; property" link="Adapter.html#Adapter:Vendor"/>
4885- <function name="The &quot;Model&quot; property" link="Adapter.html#Adapter:Model"/>
4886- <function name="The &quot;Driver&quot; property" link="Adapter.html#Adapter:Driver"/>
4887- <function name="The &quot;NumPorts&quot; property" link="Adapter.html#Adapter:NumPorts"/>
4888- <function name="The &quot;Fabric&quot; property" link="Adapter.html#Adapter:Fabric"/>
4889- <function name="The Changed signal" link="Expander.html#Expander::Changed"/>
4890- <function name="The &quot;NativePath&quot; property" link="Expander.html#Expander:NativePath"/>
4891- <function name="The &quot;Vendor&quot; property" link="Expander.html#Expander:Vendor"/>
4892- <function name="The &quot;Model&quot; property" link="Expander.html#Expander:Model"/>
4893- <function name="The &quot;Revision&quot; property" link="Expander.html#Expander:Revision"/>
4894- <function name="The &quot;NumPorts&quot; property" link="Expander.html#Expander:NumPorts"/>
4895- <function name="The &quot;UpstreamPorts&quot; property" link="Expander.html#Expander:UpstreamPorts"/>
4896- <function name="The &quot;Adapter&quot; property" link="Expander.html#Expander:Adapter"/>
4897- <function name="The Changed signal" link="Port.html#Port::Changed"/>
4898- <function name="The &quot;NativePath&quot; property" link="Port.html#Port:NativePath"/>
4899- <function name="The &quot;Adapter&quot; property" link="Port.html#Port:Adapter"/>
4900- <function name="The &quot;Parent&quot; property" link="Port.html#Port:Parent"/>
4901- <function name="The &quot;Number&quot; property" link="Port.html#Port:Number"/>
4902- <function name="The &quot;ConnectorType&quot; property" link="Port.html#Port:ConnectorType"/>
4903- </functions>
4904-</book>
4905
4906=== modified file 'doc/html/up.png'
4907Binary files doc/html/up.png 2010-02-12 15:37:33 +0000 and doc/html/up.png 2012-08-14 01:15:24 +0000 differ
4908=== modified file 'policy/org.freedesktop.udisks.policy'
4909--- policy/org.freedesktop.udisks.policy 2010-02-12 15:37:33 +0000
4910+++ policy/org.freedesktop.udisks.policy 2012-08-14 01:15:24 +0000
4911@@ -10,8 +10,12 @@
4912 <action id="org.freedesktop.udisks.filesystem-mount">
4913 <description>Mount a device</description>
4914 <description xml:lang="da">Montér en enhed</description>
4915+ <description xml:lang="de">Gerät einhängen</description>
4916+ <description xml:lang="pt_BR">Montar um dispositivo</description>
4917 <message>Authentication is required to mount the device</message>
4918 <message xml:lang="da">Autorisering er påkrævet for at montere et fil system</message>
4919+ <message xml:lang="de">Zugriffsrechte werden benötigt um das Gerät einzuhängen</message>
4920+ <message xml:lang="pt_BR">Autenticação é requerida para montar o dispositivo</message>
4921 <defaults>
4922 <allow_any>no</allow_any>
4923 <allow_inactive>no</allow_inactive>
4924@@ -22,8 +26,12 @@
4925 <action id="org.freedesktop.udisks.filesystem-mount-system-internal">
4926 <description>Mount a system-internal device</description>
4927 <description xml:lang="da">Montér en intern enhed</description>
4928+ <description xml:lang="de">Eingebautes Gerät einhängen</description>
4929+ <description xml:lang="pt_BR">Montar um dispositivo interno</description>
4930 <message>Authentication is required to mount the device</message>
4931 <message xml:lang="da">Autorisering er påkrævet for at montere et fil system</message>
4932+ <message xml:lang="de">Zugriffsrechte werden benötigt um das Gerät einzuhängen</message>
4933+ <message xml:lang="pt_BR">Autenticação é requerida para montar o dispositivo</message>
4934 <defaults>
4935 <allow_any>no</allow_any>
4936 <allow_inactive>no</allow_inactive>
4937@@ -34,8 +42,12 @@
4938 <action id="org.freedesktop.udisks.filesystem-check">
4939 <description>Check file system on a device</description>
4940 <description xml:lang="da">Check fil system for en enhed</description>
4941+ <description xml:lang="de">Dateisystem auf einem Gerät prüfen</description>
4942+ <description xml:lang="pt_BR">Verificar o sistema de arquivos de um dispositivo</description>
4943 <message>Authentication is required to check the file system on the device</message>
4944 <message xml:lang="da">Autorisering er påkrævet for at checke fil systemet på en enhed</message>
4945+ <message xml:lang="de">Zugriffsrechte werden benötigt um das Dateisystem auf dem Gerät zu prüfen</message>
4946+ <message xml:lang="pt_BR">Autenticação é requerida para verificar o sistema de arquivos no dispositivo</message>
4947 <defaults>
4948 <allow_any>no</allow_any>
4949 <allow_inactive>no</allow_inactive>
4950@@ -46,8 +58,12 @@
4951 <action id="org.freedesktop.udisks.filesystem-check-system-internal">
4952 <description>Check file system of a system-internal device</description>
4953 <description xml:lang="da">Check fil system for en intern enhed</description>
4954+ <description xml:lang="de">Dateisystem auf einem eingebauten Gerät prüfen</description>
4955+ <description xml:lang="pt_BR">Verificar o sistema de arquivos de um dispositivo interno</description>
4956 <message>Authentication is required to check the file system on the device</message>
4957 <message xml:lang="da">Autorisering er påkrævet for at checke fil systemet på en enhed</message>
4958+ <message xml:lang="de">Zugriffsrechte werden benötigt um das Dateisystem auf dem Gerät zu prüfen</message>
4959+ <message xml:lang="pt_BR">Autenticação é requerida para verificar o sistema de arquivos no dispositivo</message>
4960 <defaults>
4961 <allow_any>no</allow_any>
4962 <allow_inactive>no</allow_inactive>
4963@@ -58,8 +74,12 @@
4964 <action id="org.freedesktop.udisks.filesystem-unmount-others">
4965 <description>Unmount a device mounted by another user</description>
4966 <description xml:lang="da">Afmontér en enhed monteret af en anden bruger</description>
4967+ <description xml:lang="de">Gerät eines anderen Benutzers aushängen</description>
4968+ <description xml:lang="pt_BR">Desmontar um dispositivo montado por um outro usuaŕio</description>
4969 <message>Authentication is required to unmount devices mounted by another user</message>
4970 <message xml:lang="da">Autorisering er påkrævet for at afmontere enheder monteret af en anden bruger</message>
4971+ <message xml:lang="de">Zugriffsrechte werden benötigt um ein Gerät auszuhängen, das ein anderer Benutzer eingehängt hat</message>
4972+ <message xml:lang="pt_BR">Autenticação é requerida para desmontar dispositivos montados por um outro usuário</message>
4973 <defaults>
4974 <allow_any>no</allow_any>
4975 <allow_inactive>no</allow_inactive>
4976@@ -70,8 +90,12 @@
4977 <action id="org.freedesktop.udisks.filesystem-lsof">
4978 <description>List open files</description>
4979 <description xml:lang="da">Vis åbne filer</description>
4980+ <description xml:lang="de">Offene Dateien anzeigen</description>
4981+ <description xml:lang="pt_BR">Listar arquivos abertos</description>
4982 <message>Authentication is required to list open files on a mounted file system</message>
4983 <message xml:lang="da">Autorisering er påkrævet for at liste åbne filer</message>
4984+ <message xml:lang="de">Zugriffsrechte werden benötigt um offene Dateien auf einem eingehängen Dateisystem anzuzeigen</message>
4985+ <message xml:lang="pt_BR">Autenticação é requerida para listar arquivos abertos num sistema de arquivos montado</message>
4986 <defaults>
4987 <allow_any>no</allow_any>
4988 <allow_inactive>no</allow_inactive>
4989@@ -82,8 +106,12 @@
4990 <action id="org.freedesktop.udisks.filesystem-lsof-system-internal">
4991 <description>List open files on a system-internal device</description>
4992 <description xml:lang="da">Vis åbne filer på en intern enhed</description>
4993+ <description xml:lang="de">Offene Dateien auf einem eingebauten Gerät anzeigen</description>
4994+ <description xml:lang="pt_BR">Listar arquivos abertos num dispositivo interno</description>
4995 <message>Authentication is required to list open files on a mounted file system</message>
4996 <message xml:lang="da">Autorisering er påkrævet for at liste åbne filer</message>
4997+ <message xml:lang="de">Zugriffsrechte werden benötigt um offene Dateien auf einem eingehängen Dateisystem anzuzeigen</message>
4998+ <message xml:lang="pt_BR">Autenticação é requerida para listar arquivos abertos num sistema de arquivos montado</message>
4999 <defaults>
5000 <allow_any>no</allow_any>
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: