dabo Commit
Revision 6073
Date: 2010-10-05 10:30:42 -0700 (Tue, 05 Oct 2010)
Author: Paul
Trac: http://trac.dabodev.com/changeset/6073

Changed:
U   trunk/ide/wizards/AppWizard/AppWizard.py
U   trunk/ide/wizards/AppWizard/spec-main.exe.manifest

Log:
Added the newer manifest for setup.py.


Diff:
Modified: trunk/ide/wizards/AppWizard/AppWizard.py
===================================================================
--- trunk/ide/wizards/AppWizard/AppWizard.py    2010-10-04 13:44:07 UTC (rev 
6072)
+++ trunk/ide/wizards/AppWizard/AppWizard.py    2010-10-05 17:30:42 UTC (rev 
6073)
@@ -662,8 +662,9 @@
                        os.chmod('go.sh',stat.S_IRWXU )  ## rwx for user, 
nothing else.
 
                        ## Create the manifest file (for xp theme support):
+                       enc = dabo.getEncoding()
                        pth = os.path.join(self.wizDir, 
"spec-main.exe.manifest")
-                       txt = open(pth).read() % dabo.getEncoding()
+                       txt = open(pth).read() % locals()
                        open("./%s.exe.manifest" % appName, "w").write(txt)
 
                        ## Create App.py:

Modified: trunk/ide/wizards/AppWizard/spec-main.exe.manifest
===================================================================
--- trunk/ide/wizards/AppWizard/spec-main.exe.manifest  2010-10-04 13:44:07 UTC 
(rev 6072)
+++ trunk/ide/wizards/AppWizard/spec-main.exe.manifest  2010-10-05 17:30:42 UTC 
(rev 6073)
@@ -1,11 +1,43 @@
-<?xml version="1.0" encoding="%s" standalone="yes"?>
+<?xml version="1.0" encoding="%(enc)s" standalone="yes"?>
 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
-<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="*.*.*" 
type="win32" />
-<description>*</description>
-<dependency>
-<dependentAssembly>
-<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls"
- version="6.0.0.0" processorArchitecture="X86" 
publicKeyToken="6595b64144ccf1df" language="*" />
-</dependentAssembly>
-</dependency>
+  <assemblyIdentity
+    version="5.0.0.0"
+    processorArchitecture="x86"
+    name="%(appName)s"
+    type="win32"
+  />
+  <description>%(appName)s</description>
+  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
+    <security>
+      <requestedPrivileges>
+        <requestedExecutionLevel
+            level="asInvoker"
+            uiAccess="false">
+        </requestedExecutionLevel>
+      </requestedPrivileges>
+    </security>
+  </trustInfo>
+  <dependency>
+    <dependentAssembly>
+      <assemblyIdentity
+            type="win32"
+            name="Microsoft.VC90.CRT"
+            version="9.0.21022.8"
+            processorArchitecture="x86"
+            publicKeyToken="1fc8b3b9a1e18e3b">
+      </assemblyIdentity>
+    </dependentAssembly>
+  </dependency>
+  <dependency>
+    <dependentAssembly>
+        <assemblyIdentity
+            type="win32"
+            name="Microsoft.Windows.Common-Controls"
+            version="6.0.0.0"
+            processorArchitecture="X86"
+            publicKeyToken="6595b64144ccf1df"
+            language="*"
+        />
+    </dependentAssembly>
+  </dependency>
 </assembly>



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: 
http://leafe.com/archives/byMID/[email protected]

Reply via email to