Hello!

I'm testing the latest Eric4 snapshot on Windows. The documentation browser has issues with the Windows path. I'm getting the error message "File /C:/Program Files/Python25/lib/site-packages/eric4/Documentation/Source/index-eric4.html not found". Notice the / in front of C:/!

After some debugging I changed Utilities.normjoinpath(a, *p) from

    return os.path.normpath(os.path.join(a, *p))

to

    return '/'.join((a,)+p)

the help browser displayed the first page but all links were broken. The help browser itself has issues with file:///C:/Program Files/

I wasn't able to figure out the second issue.

HTH

Christian

_______________________________________________
Eric mailing list
[email protected]
http://www.riverbankcomputing.com/mailman/listinfo/eric

Reply via email to