File: CedarBackup2.writers.util.IsoImage-class.html

package info (click to toggle)
cedar-backup2 2.20.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 20,636 kB
  • ctags: 34,592
  • sloc: python: 63,703; xml: 9,041; makefile: 100; sh: 9
file content (1590 lines) | stat: -rw-r--r-- 71,990 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>CedarBackup2.writers.util.IsoImage</title>
  <link rel="stylesheet" href="epydoc.css" type="text/css" />
  <script type="text/javascript" src="epydoc.js"></script>
</head>

<body bgcolor="white" text="black" link="blue" vlink="#204080"
      alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="CedarBackup2-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://cedar-backup.sourceforge.net/">CedarBackup2</a></th>
          </tr></table></th>
  </tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
  <tr valign="top">
    <td width="100%">
      <span class="breadcrumbs">
        <a href="CedarBackup2-module.html">Package&nbsp;CedarBackup2</a> ::
        <a href="CedarBackup2.writers-module.html">Package&nbsp;writers</a> ::
        <a href="CedarBackup2.writers.util-module.html">Module&nbsp;util</a> ::
        Class&nbsp;IsoImage
      </span>
    </td>
    <td>
      <table cellpadding="0" cellspacing="0">
        <!-- hide/show private -->
        <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
    onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr>
        <tr><td align="right"><span class="options"
            >[<a href="frames.html" target="_top">frames</a
            >]&nbsp;|&nbsp;<a href="CedarBackup2.writers.util.IsoImage-class.html"
            target="_top">no&nbsp;frames</a>]</span></td></tr>
      </table>
    </td>
  </tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class IsoImage</h1><p class="nomargin-top"><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage">source&nbsp;code</a></span></p>
<pre class="base-tree">
object --+
         |
        <strong class="uidshort">IsoImage</strong>
</pre>

<hr />
<p>Represents an ISO filesystem image.</p>
  <h1 class="heading">Summary</h1>
    <p>This object represents an ISO 9660 filesystem image.  It is 
    implemented in terms of the <code>mkisofs</code> program, which has 
    been ported to many operating systems and platforms.  A &quot;sensible 
    subset&quot; of the <code>mkisofs</code> functionality is made 
    available through the public interface, allowing callers to set a 
    variety of basic options such as publisher id, application id, etc. as 
    well as specify exactly which files and directories they want included 
    in their image.</p>
    <p>By default, the image is created using the Rock Ridge protocol 
    (using the <code>-r</code> option to <code>mkisofs</code>) because Rock
    Ridge discs are generally more useful on UN*X filesystems than standard
    ISO 9660 images.  However, callers can fall back to the default 
    <code>mkisofs</code> functionality by setting the 
    <code>useRockRidge</code> instance variable to <code>False</code>.  
    Note, however, that this option is not well-tested.</p>
  <h1 class="heading">Where Files and Directories are Placed in the Image</h1>
    <p>Although this class is implemented in terms of the 
    <code>mkisofs</code> program, its standard &quot;image contents&quot; 
    semantics are slightly different than the original <code>mkisofs</code>
    semantics.  The difference is that files and directories are added to 
    the image with some additional information about their source directory
    kept intact.</p>
    <p>As an example, suppose you add the file <code>/etc/profile</code> to
    your image and you do not configure a graft point.  The file 
    <code>/profile</code> will be created in the image.  The behavior for 
    directories is similar.  For instance, suppose that you add 
    <code>/etc/X11</code> to the image and do not configure a graft point.
    In this case, the directory <code>/X11</code> will be created in the 
    image, even if the original <code>/etc/X11</code> directory is empty.  
    <i>This behavior differs from the standard <code>mkisofs</code> 
    behavior!</i></p>
    <p>If a graft point is configured, it will be used to modify the point 
    at which a file or directory is added into an image.  Using the 
    examples from above, let's assume you set a graft point of 
    <code>base</code> when adding <code>/etc/profile</code> and 
    <code>/etc/X11</code> to your image.  In this case, the file 
    <code>/base/profile</code> and the directory <code>/base/X11</code> 
    would be added to the image.</p>
    <p>I feel that this behavior is more consistent than the original 
    <code>mkisofs</code> behavior.  However, to be fair, it is not quite as
    flexible, and some users might not like it.  For this reason, the 
    <code>contentsOnly</code> parameter to the <a 
    href="CedarBackup2.writers.util.IsoImage-class.html#addEntry" 
    class="link">addEntry</a> method can be used to revert to the original 
    behavior if desired.</p>

<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
  <td colspan="2" class="table-header">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr valign="top">
        <td align="left"><span class="table-header">Instance Methods</span></td>
        <td align="right" valign="top"
         ><span class="options">[<a href="#section-InstanceMethods"
         class="privatelink" onclick="toggle_private();"
         >hide private</a>]</span></td>
      </tr>
    </table>
  </td>
</tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">device</span>=<span class="summary-sig-default">None</span>,
        <span class="summary-sig-arg">boundaries</span>=<span class="summary-sig-default">None</span>,
        <span class="summary-sig-arg">graftPoint</span>=<span class="summary-sig-default">None</span>)</span><br />
      Initializes an empty ISO image object.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.__init__">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#addEntry" class="summary-sig-name">addEntry</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">path</span>,
        <span class="summary-sig-arg">graftPoint</span>=<span class="summary-sig-default">None</span>,
        <span class="summary-sig-arg">override</span>=<span class="summary-sig-default">False</span>,
        <span class="summary-sig-arg">contentsOnly</span>=<span class="summary-sig-default">False</span>)</span><br />
      Adds an individual file or directory into the ISO image.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.addEntry">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#getEstimatedSize" class="summary-sig-name">getEstimatedSize</a>(<span class="summary-sig-arg">self</span>)</span><br />
      Returns the estimated size (in bytes) of the ISO image.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.getEstimatedSize">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getEstimatedSize" class="summary-sig-name" onclick="show_private();">_getEstimatedSize</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">entries</span>)</span><br />
      Returns the estimated size (in bytes) for the passed-in entries 
      dictionary.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getEstimatedSize">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#writeImage" class="summary-sig-name">writeImage</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">imagePath</span>)</span><br />
      Writes this image to disk using the image path.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.writeImage">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_buildGeneralArgs" class="summary-sig-name" onclick="show_private();">_buildGeneralArgs</a>(<span class="summary-sig-arg">self</span>)</span><br />
      Builds a list of general arguments to be passed to a 
      <code>mkisofs</code> command.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildGeneralArgs">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_buildSizeArgs" class="summary-sig-name" onclick="show_private();">_buildSizeArgs</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">entries</span>)</span><br />
      Builds a list of arguments to be passed to a <code>mkisofs</code> 
      command.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildSizeArgs">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_buildWriteArgs" class="summary-sig-name" onclick="show_private();">_buildWriteArgs</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">entries</span>,
        <span class="summary-sig-arg">imagePath</span>)</span><br />
      Builds a list of arguments to be passed to a <code>mkisofs</code> 
      command.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildWriteArgs">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setDevice" class="summary-sig-name" onclick="show_private();">_setDevice</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the device value.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setDevice">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getDevice"></a><span class="summary-sig-name">_getDevice</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the device value.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getDevice">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setBoundaries" class="summary-sig-name" onclick="show_private();">_setBoundaries</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the boundaries tuple.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setBoundaries">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getBoundaries"></a><span class="summary-sig-name">_getBoundaries</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the boundaries value.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getBoundaries">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setGraftPoint" class="summary-sig-name" onclick="show_private();">_setGraftPoint</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the graft point.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setGraftPoint">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getGraftPoint"></a><span class="summary-sig-name">_getGraftPoint</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the graft point.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getGraftPoint">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setUseRockRidge" class="summary-sig-name" onclick="show_private();">_setUseRockRidge</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the use RockRidge flag.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setUseRockRidge">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getUseRockRidge"></a><span class="summary-sig-name">_getUseRockRidge</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the use RockRidge flag.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getUseRockRidge">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setApplicationId" class="summary-sig-name" onclick="show_private();">_setApplicationId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the application id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setApplicationId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getApplicationId"></a><span class="summary-sig-name">_getApplicationId</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the application id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getApplicationId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setBiblioFile" class="summary-sig-name" onclick="show_private();">_setBiblioFile</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the biblio file.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setBiblioFile">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getBiblioFile"></a><span class="summary-sig-name">_getBiblioFile</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the biblio file.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getBiblioFile">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setPublisherId" class="summary-sig-name" onclick="show_private();">_setPublisherId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the publisher id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setPublisherId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getPublisherId"></a><span class="summary-sig-name">_getPublisherId</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the publisher id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getPublisherId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setPreparerId" class="summary-sig-name" onclick="show_private();">_setPreparerId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the preparer id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setPreparerId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getPreparerId"></a><span class="summary-sig-name">_getPreparerId</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the preparer id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getPreparerId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setVolumeId" class="summary-sig-name" onclick="show_private();">_setVolumeId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span><br />
      Property target used to set the volume id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setVolumeId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a name="_getVolumeId"></a><span class="summary-sig-name">_getVolumeId</span>(<span class="summary-sig-arg">self</span>)</span><br />
      Property target used to get the volume id.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getVolumeId">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
  <tr>
    <td colspan="2" class="summary">
    <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
      <code>__delattr__</code>,
      <code>__getattribute__</code>,
      <code>__hash__</code>,
      <code>__new__</code>,
      <code>__reduce__</code>,
      <code>__reduce_ex__</code>,
      <code>__repr__</code>,
      <code>__setattr__</code>,
      <code>__str__</code>
      </p>
    </td>
  </tr>
</table>
<!-- ==================== STATIC METHODS ==================== -->
<a name="section-StaticMethods"></a>
<table class="summary" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
  <td colspan="2" class="table-header">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr valign="top">
        <td align="left"><span class="table-header">Static Methods</span></td>
        <td align="right" valign="top"
         ><span class="options">[<a href="#section-StaticMethods"
         class="privatelink" onclick="toggle_private();"
         >hide private</a>]</span></td>
      </tr>
    </table>
  </td>
</tr>
<tr class="private">
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
      <table width="100%" cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_buildDirEntries" class="summary-sig-name" onclick="show_private();">_buildDirEntries</a>(<span class="summary-sig-arg">entries</span>)</span><br />
      Uses an entries dictionary to build a list of directory locations for
      use by <code>mkisofs</code>.</td>
          <td align="right" valign="top">
            <span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildDirEntries">source&nbsp;code</a></span>
            
          </td>
        </tr>
      </table>
      
    </td>
  </tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
  <td colspan="2" class="table-header">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr valign="top">
        <td align="left"><span class="table-header">Properties</span></td>
        <td align="right" valign="top"
         ><span class="options">[<a href="#section-Properties"
         class="privatelink" onclick="toggle_private();"
         >hide private</a>]</span></td>
      </tr>
    </table>
  </td>
</tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#device" class="summary-name">device</a><br />
      Device that image will be written to (device path or SCSI id).
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#boundaries" class="summary-name">boundaries</a><br />
      Session boundaries as required by <code>mkisofs</code>.
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#graftPoint" class="summary-name">graftPoint</a><br />
      Default image-wide graft point (see <a 
      href="CedarBackup2.writers.util.IsoImage-class.html#addEntry" 
      class="link">addEntry</a> for details).
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#useRockRidge" class="summary-name">useRockRidge</a><br />
      Indicates whether to use RockRidge (default is <code>True</code>).
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#applicationId" class="summary-name">applicationId</a><br />
      Optionally specifies the ISO header application id value.
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#biblioFile" class="summary-name">biblioFile</a><br />
      Optionally specifies the ISO bibliographic file name.
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#publisherId" class="summary-name">publisherId</a><br />
      Optionally specifies the ISO header publisher id value.
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#preparerId" class="summary-name">preparerId</a><br />
      Optionally specifies the ISO header preparer id value.
    </td>
  </tr>
<tr>
    <td width="15%" align="right" valign="top" class="summary">
      <span class="summary-type">&nbsp;</span>
    </td><td class="summary">
        <a href="CedarBackup2.writers.util.IsoImage-class.html#volumeId" class="summary-name">volumeId</a><br />
      Optionally specifies the ISO header volume id value.
    </td>
  </tr>
  <tr>
    <td colspan="2" class="summary">
    <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
      <code>__class__</code>
      </p>
    </td>
  </tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
  <td colspan="2" class="table-header">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr valign="top">
        <td align="left"><span class="table-header">Method Details</span></td>
        <td align="right" valign="top"
         ><span class="options">[<a href="#section-MethodDetails"
         class="privatelink" onclick="toggle_private();"
         >hide private</a>]</span></td>
      </tr>
    </table>
  </td>
</tr>
</table>
<a name="__init__"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">device</span>=<span class="sig-default">None</span>,
        <span class="sig-arg">boundaries</span>=<span class="sig-default">None</span>,
        <span class="sig-arg">graftPoint</span>=<span class="sig-default">None</span>)</span>
    <br /><em class="fname">(Constructor)</em>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.__init__">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Initializes an empty ISO image object.</p>
  <p>Only the most commonly-used configuration items can be set using this 
  constructor.  If you have a need to change the others, do so immediately 
  after creating your object.</p>
  <p>The device and boundaries values are both required in order to write 
  multisession discs.  If either is missing or <code>None</code>, a 
  multisession disc will not be written.  The boundaries tuple is in terms 
  of ISO sectors, as built by an image writer class and returned in a <a 
  href="CedarBackup2.writers.cdwriter.MediaCapacity-class.html" 
  class="link">writer.MediaCapacity</a> object.</p>
  <dl class="fields">
    <dt>Parameters:</dt>
    <dd><ul class="nomargin-top">
        <li><strong class="pname"><code>device</code></strong> (Either be a filesystem path or a SCSI address) - Name of the device that the image will be written to</li>
        <li><strong class="pname"><code>boundaries</code></strong> (Tuple <code>(last_sess_start,next_sess_start)</code> as returned 
          from <code>cdrecord -msinfo</code>, or <code>None</code>) - Session boundaries as required by <code>mkisofs</code></li>
        <li><strong class="pname"><code>graftPoint</code></strong> (String representing a graft point path (see <a 
          href="CedarBackup2.writers.util.IsoImage-class.html#addEntry" 
          class="link">addEntry</a>).) - Default graft point for this page.</li>
    </ul></dd>
    <dt>Overrides:
        object.__init__
    </dt>
  </dl>
</td></tr></table>
</div>
<a name="addEntry"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">addEntry</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">path</span>,
        <span class="sig-arg">graftPoint</span>=<span class="sig-default">None</span>,
        <span class="sig-arg">override</span>=<span class="sig-default">False</span>,
        <span class="sig-arg">contentsOnly</span>=<span class="sig-default">False</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.addEntry">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Adds an individual file or directory into the ISO image.</p>
  <p>The path must exist and must be a file or a directory.  By default, 
  the entry will be placed into the image at the root directory, but this 
  behavior can be overridden using the <code>graftPoint</code> parameter or
  instance variable.</p>
  <p>You can use the <code>contentsOnly</code> behavior to revert to the 
  &quot;original&quot; <code>mkisofs</code> behavior for adding 
  directories, which is to add only the items within the directory, and not
  the directory itself.</p>
  <dl class="fields">
    <dt>Parameters:</dt>
    <dd><ul class="nomargin-top">
        <li><strong class="pname"><code>path</code></strong> (String representing a path on disk) - File or directory to be added to the image</li>
        <li><strong class="pname"><code>graftPoint</code></strong> (String representing a graft point path, as described above) - Graft point to be used when adding this entry</li>
        <li><strong class="pname"><code>override</code></strong> (Boolean true/false) - Override an existing entry with the same path.</li>
        <li><strong class="pname"><code>contentsOnly</code></strong> (Boolean true/false) - Add directory contents only (standard <code>mkisofs</code> 
          behavior).</li>
    </ul></dd>
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If path is not a file or directory, or does not exist.</li>
        <li><code><strong class='fraise'>ValueError</strong></code> - If the path has already been added, and override is not set.</li>
        <li><code><strong class='fraise'>ValueError</strong></code> - If a path cannot be encoded properly.</li>
    </ul></dd>
  </dl>
<div class="fields">      <strong>Notes:</strong>
      <ul class="nomargin-top">
        <li>
        Things get <i>odd</i> if you try to add a directory to an image 
        that will be written to a multisession disc, and the same directory
        already exists in an earlier session on that disc.  Not all of the 
        data gets written.  You really wouldn't want to do this anyway, I 
        guess.
        </li>
        <li>
        An exception will be thrown if the path has already been added to 
        the image, unless the <code>override</code> parameter is set to 
        <code>True</code>.
        </li>
        <li>
        The method <code>graftPoints</code> parameter overrides the 
        object-wide instance variable.  If neither the method parameter or 
        object-wide value is set, the path will be written at the image 
        root.  The graft point behavior is determined by the value which is
        in effect <i>at the time this method is called</i>, so you 
        <i>must</i> set the object-wide value before calling this method 
        for the first time, or your image may not be consistent.
        </li>
        <li>
        You <i>cannot</i> use the local <code>graftPoint</code> parameter 
        to &quot;turn off&quot; an object-wide instance variable by setting
        it to <code>None</code>.  Python's default argument functionality 
        buys us a lot, but it can't make this method psychic. :)
        </li>
      </ul>
</div></td></tr></table>
</div>
<a name="getEstimatedSize"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">getEstimatedSize</span>(<span class="sig-arg">self</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.getEstimatedSize">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Returns the estimated size (in bytes) of the ISO image.</p>
  <p>This is implemented via the <code>-print-size</code> option to 
  <code>mkisofs</code>, so it might take a bit of time to execute.  
  However, the result is as accurate as we can get, since it takes into 
  account all of the ISO overhead, the true cost of directories in the 
  structure, etc, etc.</p>
  <dl class="fields">
    <dt>Returns:</dt>
        <dd>Estimated size of the image, in bytes.</dd>
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>IOError</strong></code> - If there is a problem calling <code>mkisofs</code>.</li>
        <li><code><strong class='fraise'>ValueError</strong></code> - If there are no filesystem entries in the image</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_getEstimatedSize"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_getEstimatedSize</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">entries</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._getEstimatedSize">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Returns the estimated size (in bytes) for the passed-in entries 
  dictionary.</p>
  <dl class="fields">
    <dt>Returns:</dt>
        <dd>Estimated size of the image, in bytes.</dd>
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>IOError</strong></code> - If there is a problem calling <code>mkisofs</code>.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="writeImage"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">writeImage</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">imagePath</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage.writeImage">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Writes this image to disk using the image path.</p>
  <dl class="fields">
    <dt>Parameters:</dt>
    <dd><ul class="nomargin-top">
        <li><strong class="pname"><code>imagePath</code></strong> (String representing a path on disk) - Path to write image out as</li>
    </ul></dd>
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>IOError</strong></code> - If there is an error writing the image to disk.</li>
        <li><code><strong class='fraise'>ValueError</strong></code> - If there are no filesystem entries in the image</li>
        <li><code><strong class='fraise'>ValueError</strong></code> - If a path cannot be encoded properly.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_buildDirEntries"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_buildDirEntries</span>(<span class="sig-arg">entries</span>)</span>
    <br /><em class="fname">Static Method</em>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildDirEntries">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Uses an entries dictionary to build a list of directory locations for 
  use by <code>mkisofs</code>.</p>
  <p>We build a list of entries that can be passed to <code>mkisofs</code>.
  Each entry is either raw (if no graft point was configured) or in 
  graft-point form as described above (if a graft point was configured).  
  The dictionary keys are the path names, and the values are the graft 
  points, if any.</p>
  <dl class="fields">
    <dt>Parameters:</dt>
    <dd><ul class="nomargin-top">
        <li><strong class="pname"><code>entries</code></strong> - Dictionary of image entries (i.e. self.entries)</li>
    </ul></dd>
    <dt>Returns:</dt>
        <dd>List of directory locations for use by <code>mkisofs</code></dd>
  </dl>
</td></tr></table>
</div>
<a name="_buildGeneralArgs"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_buildGeneralArgs</span>(<span class="sig-arg">self</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildGeneralArgs">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Builds a list of general arguments to be passed to a 
  <code>mkisofs</code> command.</p>
  <p>The various instance variables (<code>applicationId</code>, etc.) are 
  filled into the list of arguments if they are set. By default, we will 
  build a RockRidge disc.  If you decide to change this, think hard about 
  whether you know what you're doing.  This option is not well-tested.</p>
  <dl class="fields">
    <dt>Returns:</dt>
        <dd>List suitable for passing to <a 
          href="CedarBackup2.util-module.html#executeCommand" 
          class="link">util.executeCommand</a> as <code>args</code>.</dd>
  </dl>
</td></tr></table>
</div>
<a name="_buildSizeArgs"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_buildSizeArgs</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">entries</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildSizeArgs">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Builds a list of arguments to be passed to a <code>mkisofs</code> 
  command.</p>
  <p>The various instance variables (<code>applicationId</code>, etc.) are 
  filled into the list of arguments if they are set.  The command will be 
  built to just return size output (a simple count of sectors via the 
  <code>-print-size</code> option), rather than an image file on disk.</p>
  <p>By default, we will build a RockRidge disc.  If you decide to change 
  this, think hard about whether you know what you're doing.  This option 
  is not well-tested.</p>
  <dl class="fields">
    <dt>Parameters:</dt>
    <dd><ul class="nomargin-top">
        <li><strong class="pname"><code>entries</code></strong> - Dictionary of image entries (i.e. self.entries)</li>
    </ul></dd>
    <dt>Returns:</dt>
        <dd>List suitable for passing to <a 
          href="CedarBackup2.util-module.html#executeCommand" 
          class="link">util.executeCommand</a> as <code>args</code>.</dd>
  </dl>
</td></tr></table>
</div>
<a name="_buildWriteArgs"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_buildWriteArgs</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">entries</span>,
        <span class="sig-arg">imagePath</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._buildWriteArgs">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Builds a list of arguments to be passed to a <code>mkisofs</code> 
  command.</p>
  <p>The various instance variables (<code>applicationId</code>, etc.) are 
  filled into the list of arguments if they are set.  The command will be 
  built to write an image to disk.</p>
  <p>By default, we will build a RockRidge disc.  If you decide to change 
  this, think hard about whether you know what you're doing.  This option 
  is not well-tested.</p>
  <dl class="fields">
    <dt>Parameters:</dt>
    <dd><ul class="nomargin-top">
        <li><strong class="pname"><code>entries</code></strong> - Dictionary of image entries (i.e. self.entries)</li>
        <li><strong class="pname"><code>imagePath</code></strong> (String representing a path on disk) - Path to write image out as</li>
    </ul></dd>
    <dt>Returns:</dt>
        <dd>List suitable for passing to <a 
          href="CedarBackup2.util-module.html#executeCommand" 
          class="link">util.executeCommand</a> as <code>args</code>.</dd>
  </dl>
</td></tr></table>
</div>
<a name="_setDevice"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setDevice</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setDevice">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the device value. If not 
  <code>None</code>, the value can be either an absolute path or a SCSI 
  id.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is not valid</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setBoundaries"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setBoundaries</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setBoundaries">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the boundaries tuple. If not 
  <code>None</code>, the value must be a tuple of two integers.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the tuple values are not integers.</li>
        <li><code><strong class='fraise'>IndexError</strong></code> - If the tuple does not contain enough elements.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setGraftPoint"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setGraftPoint</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setGraftPoint">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the graft point. The value must be a 
  non-empty string if it is not <code>None</code>.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is an empty string.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setUseRockRidge"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setUseRockRidge</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setUseRockRidge">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the use RockRidge flag. No validations, 
  but we normalize the value to <code>True</code> or 
  <code>False</code>.</p>
  <dl class="fields">
  </dl>
</td></tr></table>
</div>
<a name="_setApplicationId"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setApplicationId</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setApplicationId">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the application id. The value must be a 
  non-empty string if it is not <code>None</code>.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is an empty string.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setBiblioFile"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setBiblioFile</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setBiblioFile">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the biblio file. The value must be a 
  non-empty string if it is not <code>None</code>.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is an empty string.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setPublisherId"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setPublisherId</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setPublisherId">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the publisher id. The value must be a 
  non-empty string if it is not <code>None</code>.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is an empty string.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setPreparerId"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setPreparerId</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setPreparerId">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the preparer id. The value must be a 
  non-empty string if it is not <code>None</code>.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is an empty string.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<a name="_setVolumeId"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr valign="top"><td>
  <h3 class="epydoc"><span class="sig"><span class="sig-name">_setVolumeId</span>(<span class="sig-arg">self</span>,
        <span class="sig-arg">value</span>)</span>
  </h3>
  </td><td align="right" valign="top"
    ><span class="codelink"><a href="CedarBackup2.writers.util-pysrc.html#IsoImage._setVolumeId">source&nbsp;code</a></span>&nbsp;
    </td>
  </tr></table>
  
  <p>Property target used to set the volume id. The value must be a 
  non-empty string if it is not <code>None</code>.</p>
  <dl class="fields">
    <dt>Raises:</dt>
    <dd><ul class="nomargin-top">
        <li><code><strong class='fraise'>ValueError</strong></code> - If the value is an empty string.</li>
    </ul></dd>
  </dl>
</td></tr></table>
</div>
<br />
<!-- ==================== PROPERTY DETAILS ==================== -->
<a name="section-PropertyDetails"></a>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
  <td colspan="2" class="table-header">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr valign="top">
        <td align="left"><span class="table-header">Property Details</span></td>
        <td align="right" valign="top"
         ><span class="options">[<a href="#section-PropertyDetails"
         class="privatelink" onclick="toggle_private();"
         >hide private</a>]</span></td>
      </tr>
    </table>
  </td>
</tr>
</table>
<a name="device"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">device</h3>
  <p>Device that image will be written to (device path or SCSI id).</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getDevice" class="summary-sig-name" onclick="show_private();">_getDevice</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the device value.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setDevice" class="summary-sig-name" onclick="show_private();">_setDevice</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the device value.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="boundaries"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">boundaries</h3>
  <p>Session boundaries as required by <code>mkisofs</code>.</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getBoundaries" class="summary-sig-name" onclick="show_private();">_getBoundaries</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the boundaries value.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setBoundaries" class="summary-sig-name" onclick="show_private();">_setBoundaries</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the boundaries tuple.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="graftPoint"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">graftPoint</h3>
  <p>Default image-wide graft point (see <a 
  href="CedarBackup2.writers.util.IsoImage-class.html#addEntry" 
  class="link">addEntry</a> for details).</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getGraftPoint" class="summary-sig-name" onclick="show_private();">_getGraftPoint</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the graft point.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setGraftPoint" class="summary-sig-name" onclick="show_private();">_setGraftPoint</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the graft point.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="useRockRidge"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">useRockRidge</h3>
  <p>Indicates whether to use RockRidge (default is <code>True</code>).</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getUseRockRidge" class="summary-sig-name" onclick="show_private();">_getUseRockRidge</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the use RockRidge flag.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setUseRockRidge" class="summary-sig-name" onclick="show_private();">_setUseRockRidge</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the use RockRidge flag.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="applicationId"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">applicationId</h3>
  <p>Optionally specifies the ISO header application id value.</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getApplicationId" class="summary-sig-name" onclick="show_private();">_getApplicationId</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the application id.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setApplicationId" class="summary-sig-name" onclick="show_private();">_setApplicationId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the application id.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="biblioFile"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">biblioFile</h3>
  <p>Optionally specifies the ISO bibliographic file name.</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getBiblioFile" class="summary-sig-name" onclick="show_private();">_getBiblioFile</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the biblio file.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setBiblioFile" class="summary-sig-name" onclick="show_private();">_setBiblioFile</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the biblio file.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="publisherId"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">publisherId</h3>
  <p>Optionally specifies the ISO header publisher id value.</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getPublisherId" class="summary-sig-name" onclick="show_private();">_getPublisherId</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the publisher id.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setPublisherId" class="summary-sig-name" onclick="show_private();">_setPublisherId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the publisher id.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="preparerId"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">preparerId</h3>
  <p>Optionally specifies the ISO header preparer id value.</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getPreparerId" class="summary-sig-name" onclick="show_private();">_getPreparerId</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the preparer id.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setPreparerId" class="summary-sig-name" onclick="show_private();">_setPreparerId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the preparer id.
    </dd>
  </dl>
</td></tr></table>
</div>
<a name="volumeId"></a>
<div>
<table class="details" border="1" cellpadding="3"
       cellspacing="0" width="100%" bgcolor="white">
<tr><td>
  <h3 class="epydoc">volumeId</h3>
  <p>Optionally specifies the ISO header volume id value.</p>
  <dl class="fields">
    <dt>Get Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_getVolumeId" class="summary-sig-name" onclick="show_private();">_getVolumeId</a>(<span class="summary-sig-arg">self</span>)</span>
        - Property target used to get the volume id.
    </dd>
    <dt>Set Method:</dt>
    <dd class="value"><span class="summary-sig"><a href="CedarBackup2.writers.util.IsoImage-class.html#_setVolumeId" class="summary-sig-name" onclick="show_private();">_setVolumeId</a>(<span class="summary-sig-arg">self</span>,
        <span class="summary-sig-arg">value</span>)</span>
        - Property target used to set the volume id.
    </dd>
  </dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="CedarBackup2-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://cedar-backup.sourceforge.net/">CedarBackup2</a></th>
          </tr></table></th>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
  <tr>
    <td align="left" class="footer">
    Generated by Epydoc 3.0.1 on Tue Oct 19 20:56:44 2010
    </td>
    <td align="right" class="footer">
      <a target="mainFrame" href="http://epydoc.sourceforge.net"
        >http://epydoc.sourceforge.net</a>
    </td>
  </tr>
</table>

<script type="text/javascript">
  <!--
  // Private objects are initially displayed (because if
  // javascript is turned off then we want them to be
  // visible); but by default, we want to hide them.  So hide
  // them unless we have a cookie that says to show them.
  checkCookie();
  // -->
</script>
</body>
</html>