/[smeserver]/rpms/anaconda/sme9/0019-UpgradeText-whitespace.patch
ViewVC logotype

Diff of /rpms/anaconda/sme9/0019-UpgradeText-whitespace.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.1 by wellsi, Sat Mar 29 23:07:17 2014 UTC Revision 1.2 by wellsi, Sun Mar 30 04:29:52 2014 UTC
# Line 1  Line 1 
1  diff -ruN anaconda-13.21.215/textw/upgrade_text.py anaconda-13.21.215.old/textw/upgrade_text.py  diff -ruN anaconda-13.21.215.p18/textw/upgrade_text.py anaconda-13.21.215.p19/textw/upgrade_text.py
2  --- anaconda-13.21.215/textw/upgrade_text.py    2014-03-29 15:57:55.000000000 -0700  --- anaconda-13.21.215.p18/textw/upgrade_text.py        2014-03-29 21:20:52.000000000 -0700
3  +++ anaconda-13.21.215.old/textw/upgrade_text.py        2014-03-29 15:48:40.000000000 -0700  +++ anaconda-13.21.215.p19/textw/upgrade_text.py        2014-03-29 21:22:36.000000000 -0700
4  @@ -222,10 +222,10 @@  @@ -222,10 +222,10 @@
5    
6           parts = anaconda.id.rootParts           parts = anaconda.id.rootParts
7           cur_arch = os.uname()[4]           cur_arch = os.uname()[4]
8  -        if cur_arch == 'i686':  -       if cur_arch == 'i686':
9  -            cur_arch = '32'  -           cur_arch = '32'
10  -        else:  -       else:
11  -            cur_arch = '64'  -           cur_arch = '64'
12  +       if cur_arch == 'i686':  +        if cur_arch == 'i686':
13  +           cur_arch = '32'  +            cur_arch = '32'
14  +       else:  +        else:
15  +           cur_arch = '64'  +            cur_arch = '64'
16    
17           height = min(len(parts), 11) + 1           height = min(len(parts), 11) + 1
18           if height == 12:           if height == 12:
19  @@ -237,31 +237,33 @@  @@ -237,33 +237,31 @@
20    
21           default = 1           default = 1
22    
23  -        sys_is_not_upgradeable = 0  -       sys_is_not_upgradeable = 0
24  -  -      
25  -        upgradeable_partitions = len(parts)  -       upgradeable_partitions = len(parts)
26  -        if upgradeable_partitions != 1:  -       if upgradeable_partitions != 1:
27  -            sys_is_not_upgradeable = 1  -           sys_is_not_upgradeable = 1
28  -            header = _("System has problem")  -           header = _("System has problem")
29  -            reason = _("Your system is not upgradeable. There is more than one SME server partition.")  -           reason = _("Your system is not upgradeable. There is more than one SME server partition.")
30  +       sys_is_not_upgradeable = 0  +        sys_is_not_upgradeable = 0
31  +        +
32  +       upgradeable_partitions = len(parts)  +        upgradeable_partitions = len(parts)
33  +       if upgradeable_partitions != 1:  +        if upgradeable_partitions != 1:
34  +           sys_is_not_upgradeable = 1  +            sys_is_not_upgradeable = 1
35  +           header = _("System has problem")  +            header = _("System has problem")
36  +           reason = _("Your system is not upgradeable. There is more than one SME server partition.")  +            reason = _("Your system is not upgradeable. There is more than one SME server partition.")
37    
38           (drive, desc, arch) = parts[0]           (drive, desc, arch) = parts[0]
39  +        #for (device, desc) in parts:  -        #for (device, desc) in parts:
40  +        #    partList.append("%s (%s)" %(desc, device.path))  -        #    partList.append("%s (%s)" %(desc, device.path))
41    
42  -        if arch != cur_arch:  -       if arch != cur_arch:
43  -            sys_is_not_upgradeable = 1  -           sys_is_not_upgradeable = 1
44  -            header = _("Wrong SME server version")  -           header = _("Wrong SME server version")
45  -            reason = _("Your system is not upgradeable using this version of SME server. The currently installed system is a %s bit version, but this version of SME server is a %s bit version.") % (arch, cur_arch)  -           reason = _("Your system is not upgradeable using this version of SME server. The currently installed system is a %s bit version, but this version of SME server is a %s bit version.") % (arch, cur_arch)
46  -  -
47  -        if sys_is_not_upgradeable:  -            if sys_is_not_upgradeable:
48  -            partList.append(_("Reboot system"))  -                    partList.append(_("Reboot system"))
49  -            (button, choice) =  ListboxChoiceWindow(screen, header,  -                    (button, choice) =  ListboxChoiceWindow(screen, header,
50  -                            reason, partList,  -                                    reason, partList,
51  -                                                [ TEXT_OK_BUTTON,  -                                                        [ TEXT_OK_BUTTON,
52  -                                                TEXT_BACK_BUTTON ],  -                                                        TEXT_BACK_BUTTON ],
53  -                                                width = 55, scroll = scroll,  -                                                        width = 55, scroll = scroll,
54  -                                                height = height,  -                                                        height = height,
55  -                                                help = "upgraderoot",  -                                                        help = "upgraderoot",
56  -                                                default = 1)  -                                                        default = 1)
57  +       if arch != cur_arch:  +        if arch != cur_arch:
58  +           sys_is_not_upgradeable = 1  +            sys_is_not_upgradeable = 1
59  +           header = _("Wrong SME server version")  +            header = _("Wrong SME server version")
60  +           reason = _("Your system is not upgradeable using this version of SME server. The currently installed system is a %s bit version, but this version of SME server is a %s bit version.") % (arch, cur_arch)  +            reason = _("Your system is not upgradeable using this version of SME server. The currently installed system is a %s bit version, but this version of SME server is a %s bit version.") % (arch, cur_arch)
61  +  +
62  +            if sys_is_not_upgradeable:  +        if sys_is_not_upgradeable:
63  +                    partList.append(_("Reboot system"))  +            partList.append(_("Reboot system"))
64  +                    (button, choice) =  ListboxChoiceWindow(screen, header,  +            (button, choice) =  ListboxChoiceWindow(screen, header,
65  +                                    reason, partList,  +                            reason, partList,
66  +                                                        [ TEXT_OK_BUTTON,  +                                                [ TEXT_OK_BUTTON,
67  +                                                        TEXT_BACK_BUTTON ],  +                                                TEXT_BACK_BUTTON ],
68  +                                                        width = 55, scroll = scroll,  +                                                width = 55, scroll = scroll,
69  +                                                        height = height,  +                                                height = height,
70  +                                                        help = "upgraderoot",  +                                                help = "upgraderoot",
71  +                                                        default = 1)  +                                                default = 1)
72    
73               if button == TEXT_BACK_CHECK:               if button == TEXT_BACK_CHECK:
74                   return INSTALL_BACK                   return INSTALL_BACK


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed