By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1545
Collapse All | Expand All

(-)trinity-tde-guidance-3.5.13.2/mountconfig/MicroHAL.py.ORI (-1 / +5 lines)
Lines 1-4 Link Here
1
#!/usr/bin/python
1
#! /usr/bin/python
2
###########################################################################
2
###########################################################################
3
# MicroHAL.py -                                                           #
3
# MicroHAL.py -                                                           #
4
# ------------------------------                                          #
4
# ------------------------------                                          #
Lines 669-674 Link Here
669
                                
669
                                
670
                                if u"volume.label" in parsed_hash:
670
                                if u"volume.label" in parsed_hash:
671
                                    new_device.label = self._parseString(parsed_hash[u"volume.label"][0])
671
                                    new_device.label = self._parseString(parsed_hash[u"volume.label"][0])
672
                                    # If HAL returns label beginning with '#', it usually means that the
673
                                    # actual label contains an Unix path. So we replace '#' with '/'.
674
                                    if len(new_device.label) and new_device.label[0]=='%':
675
                                        new_device.label = new_device.label.replace('%', '/')
672
                                
676
                                
673
                                if u"volume.size" in parsed_hash:
677
                                if u"volume.size" in parsed_hash:
674
                                    size = parsed_hash[u"volume.size"][0]
678
                                    size = parsed_hash[u"volume.size"][0]
(-)trinity-tde-guidance-3.5.13.2/mountconfig/mountconfig.py.ORI (+3 lines)
Lines 82-87 Link Here
82
nfs
82
nfs
83
ext2
83
ext2
84
ext3
84
ext3
85
ext4
85
reiserfs
86
reiserfs
86
vfat
87
vfat
87
ntfs
88
ntfs
Lines 1047-1052 Link Here
1047
1048
1048
        'ext2' : (MountEntryExtCommonUnixLocal,i18n("Ext2 - Second Extended FS")),
1049
        'ext2' : (MountEntryExtCommonUnixLocal,i18n("Ext2 - Second Extended FS")),
1049
        'ext3' : (MountEntryExtCommonUnixLocal,i18n("Ext3 - Third Extended FS")),
1050
        'ext3' : (MountEntryExtCommonUnixLocal,i18n("Ext3 - Third Extended FS")),
1051
        'ext4' : (MountEntryExtCommonUnixLocal,i18n("Ext4 - Fourth Extended FS")),
1050
        'reiserfs' : (MountEntryExtCommonUnixLocal,i18n("ReiserFS")),
1052
        'reiserfs' : (MountEntryExtCommonUnixLocal,i18n("ReiserFS")),
1051
        'reiser4' : (MountEntryExtCommonUnixLocal,i18n("Reiser4")),
1053
        'reiser4' : (MountEntryExtCommonUnixLocal,i18n("Reiser4")),
1052
        'xfs' : (MountEntryExtCommonUnixLocal,i18n("XFS - SGI's journaling filesystem")),
1054
        'xfs' : (MountEntryExtCommonUnixLocal,i18n("XFS - SGI's journaling filesystem")),
Lines 2389-2394 Link Here
2389
    MountTypeEditorsDisk = {
2391
    MountTypeEditorsDisk = {
2390
        'ext2' : MountEntryDialogOptionsCommonUnix,
2392
        'ext2' : MountEntryDialogOptionsCommonUnix,
2391
        'ext3' : MountEntryDialogOptionsCommonUnix,
2393
        'ext3' : MountEntryDialogOptionsCommonUnix,
2394
        'ext4' : MountEntryDialogOptionsCommonUnix,
2392
        'reiserfs' : MountEntryDialogOptionsCommonUnix,
2395
        'reiserfs' : MountEntryDialogOptionsCommonUnix,
2393
        'reiser4' : MountEntryDialogOptionsCommonUnix,
2396
        'reiser4' : MountEntryDialogOptionsCommonUnix,
2394
        'xfs' : MountEntryDialogOptionsCommonUnix,
2397
        'xfs' : MountEntryDialogOptionsCommonUnix,

Return to bug 1545