WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH][ACM EZPOLICY TOOL] [CORRECTED]Make xensec_ezpolicy r

To: xen-devel@xxxxxxxxxxxxxxxxxxx, sailer@xxxxxxxxxx
Subject: [Xen-devel] [PATCH][ACM EZPOLICY TOOL] [CORRECTED]Make xensec_ezpolicy ready for wx/Python 2.5
From: Reiner Sailer <sailer@xxxxxxxxxx>
Date: Mon, 12 Feb 2007 21:15:07 -0500
Delivery-date: Mon, 12 Feb 2007 18:17:05 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Thunderbird 1.5.0.9 (Windows/20061207)
This patch updates the xensec_ezpolicy ACM policy generation tool so that it works with wxPython under Python 2.5 as well. This patch includes one more fix than the last submission and is tested both on Python 2.4 and 2.5.

Thanks
Reiner

Signed-off by: Reiner Sailer <sailer@xxxxxxxxxx>
---
 tools/security/xensec_ezpolicy |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

Index: xen-unstable.hg-shype/tools/security/xensec_ezpolicy
===================================================================
--- xen-unstable.hg-shype.orig/tools/security/xensec_ezpolicy
+++ xen-unstable.hg-shype/tools/security/xensec_ezpolicy
@@ -45,9 +45,6 @@ class orgTreeCtrl(wx.TreeCtrl):
                              validator, name)
         self.parent = parent
         orgs_root = self.AddRoot(text="Organization / Department")
-        rootfont = wx.Font(pointSize=12, family=wx.FONTFAMILY_DEFAULT,
-                          style=wx.FONTSTYLE_NORMAL, 
weight=wx.FONTWEIGHT_LIGHT)
-        self.SetItemFont(orgs_root, rootfont)
         self.SetItemBackgroundColour(orgs_root, wx.LIGHT_GREY)
 
 
@@ -276,6 +273,7 @@ class ConsPanel(wx.Panel):
     def RefreshMe(self):
         size=self.parent.GetSize()
         self.parent.Fit()
+        self.parent.SetSize(size + (1,1))
         self.parent.SetSize(size)
 
 
@@ -880,7 +878,7 @@ class ezFrame(wx.Frame):
 
     def _OpenSpec(self, event):
         filediag = wx.FileDialog(self, defaultFile="myspec.wld",
-                                wildcard="*.wld", style=wx.OPEN | 
wx.OVERWRITE_PROMPT,
+                                wildcard="*.wld", style=wx.OPEN,
                                 message="Select Workload Definition file name")
         ret = filediag.ShowModal()
         name = filediag.GetPath()
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH][ACM EZPOLICY TOOL] [CORRECTED]Make xensec_ezpolicy ready for wx/Python 2.5, Reiner Sailer <=