[Python-checkins] python/nondist/sandbox/msi README.txt, 1.1.1.1, 1.2 msi.py, 1.2, 1.3 exclamic.bin, 1.1.1.1, NONE info.bin, 1.1.1.1, NONE

loewis at users.sourceforge.net loewis at users.sourceforge.net
Thu Jan 1 10:41:09 EST 2004


Update of /cvsroot/python/python/nondist/sandbox/msi
In directory sc8-pr-cvs1:/tmp/cvs-serv18046

Modified Files:
	README.txt msi.py 
Removed Files:
	exclamic.bin info.bin 
Log Message:
Replace Microsoft icons with py.ico.

Index: README.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/msi/README.txt,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** README.txt	29 Dec 2003 14:04:36 -0000	1.1.1.1
--- README.txt	1 Jan 2004 15:41:06 -0000	1.2
***************
*** 30,35 ****
  platform SDK. In particular, the files
  
- exclamic.bin
- info.bin
  New.bin
  Up.bin
--- 30,33 ----

Index: msi.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/msi/msi.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** msi.py	30 Dec 2003 15:02:42 -0000	1.2
--- msi.py	1 Jan 2004 15:41:06 -0000	1.3
***************
*** 133,138 ****
                ("Up",msilib.Binary("Up.bin")),
                ("New",msilib.Binary("New.bin")),
!               ("InfoIcon",msilib.Binary("info.bin")),
!               ("ExclamationIcon",msilib.Binary("exclamic.bin")),
               ])
  
--- 133,137 ----
                ("Up",msilib.Binary("Up.bin")),
                ("New",msilib.Binary("New.bin")),
!               ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
               ])
  
***************
*** 229,233 ****
                     "ErrorText", None, None)
      error.text("ErrorText", 50,9,280,48,3, "")
!     error.control("ErrorIcon", "Icon", 15, 9, 24, 24, 5242881, None, "InfoIcon", None, None)
      error.pushbutton("N",120,72,81,21,3,"No",None).event("EndDialog","ErrorNo")
      error.pushbutton("Y",240,72,81,21,3,"Yes",None).event("EndDialog","ErrorYes")
--- 228,232 ----
                     "ErrorText", None, None)
      error.text("ErrorText", 50,9,280,48,3, "")
!     error.control("ErrorIcon", "Icon", 15, 9, 24, 24, 5242881, None, "py.ico", None, None)
      error.pushbutton("N",120,72,81,21,3,"No",None).event("EndDialog","ErrorNo")
      error.pushbutton("Y",240,72,81,21,3,"Yes",None).event("EndDialog","ErrorYes")
***************
*** 244,248 ****
                  "Are you sure you want to cancel [ProductName] installation?")
      cancel.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
!                    "InfoIcon", None, None)
      c=cancel.pushbutton("Yes", 72, 57, 56, 17, 3, "Yes", "No")
      c.event("EndDialog", "Exit")
--- 243,247 ----
                  "Are you sure you want to cancel [ProductName] installation?")
      cancel.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
!                    "py.ico", None, None)
      c=cancel.pushbutton("Yes", 72, 57, 56, 17, 3, "Yes", "No")
      c.event("EndDialog", "Exit")
***************
*** 257,261 ****
                   "Please wait while the installer finishes determining your disk space requirements.")
      costing.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
!                     "ExclamationIcon", None, None)
      c = costing.pushbutton("Return", 102, 57, 56, 17, 3, "Return", None)
      c.event("EndDialog", "Exit")
--- 256,260 ----
                   "Please wait while the installer finishes determining your disk space requirements.")
      costing.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
!                     "py.ico", None, None)
      c = costing.pushbutton("Return", 102, 57, 56, 17, 3, "Return", None)
      c.event("EndDialog", "Exit")

--- exclamic.bin DELETED ---

--- info.bin DELETED ---





More information about the Python-checkins mailing list