Re: [viewvc-users] Problems with Initial Setup
"C. Michael Pilato" <[email protected]>
| Newsgroups | gmane.comp.version-control.cvs.viewcvs.user |
|---|---|
| Organization | CollabNet, Inc. |
| Message-ID | <[email protected]> |
Eric McCarty wrote:
> Sure, here it is in its entirety. Install paths are
> E:\cvsntrespository
> E:\rcs
> E:\viewvc
Your configuration looks okay to me at first glance.
Can you try this patch on your system's ViewVC instance, and see if it helps
diagnose the problem?
Index: lib/win32popen.py
===================================================================
--- lib/win32popen.py (revision 2258)
+++ lib/win32popen.py (working copy)
@@ -72,17 +72,20 @@
si.hStdError = hStdError
# create the process
- phandle, pid, thandle, tid = win32process.CreateProcess \
- ( None, # appName
- cmd, # commandLine
- None, # processAttributes
- None, # threadAttributes
- 1, # bInheritHandles
- win32con.NORMAL_PRIORITY_CLASS, # dwCreationFlags
- None, # newEnvironment
- None, # currentDirectory
- si # startupinfo
- )
+ try:
+ phandle, pid, thandle, tid = win32process.CreateProcess \
+ ( None, # appName
+ cmd, # commandLine
+ None, # processAttributes
+ None, # threadAttributes
+ 1, # bInheritHandles
+ win32con.NORMAL_PRIORITY_CLASS, # dwCreationFlags
+ None, # newEnvironment
+ None, # currentDirectory
+ si # startupinfo
+ )
+ except:
+ raise IOError("Died on commandline: %s" % (cmd))
--
C. Michael Pilato <[email protected]>
CollabNet <> www.collab.net <> Distributed Development On Demand
------------------------------------------------------
http://viewvc.tigris.org/ds/viewMessage.do?dsForumId=4255&dsMessageId=2392964
To unsubscribe from this discussion, e-mail: [[email protected]].
signature.asc
(application/pgp-signature, 197 B)
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkqnyDoACgkQokEGqRcG/W7J3QCgpGzu1HR2NbPWiGSCKdHRCEZX KgwAn3isuGtCfbIshypeneqitsKgGASn =JNC9 -----END PGP SIGNATURE-----