Sibylle Koczian wrote: > Am Montag, 18. August 2008 19:48:06 schrieb Paul McNett: >> Paul McNett wrote: >> >> I didn't fix whatever something is setting lst.Value to 0, but I did >> clean up listbox behavior when its Value gets set to a non-existent key. >> Now, nothing is selected in that case. >> >> Please try out the latest subversion trunk. >> >> Paul >> > > I never used subversion before, so I'd better ask before damaging my existing > dabo installation: > > with "svn checkout http://svn.dabodev.com/dabo/trunk/dabo" I get a directory > called "dabo" which seems to contain the same files as the > directory "/usr/lib/python2.5/site-packages/Dabo-0.8.4-py2.5.egg/dabo" > created by the Dabo installation via setuptools. Can I simply replace the > files, or would I create inconsistencies with the EGG-INFO directory? > > Thank you, > Sibylle >
Because you are posting with Kmail i guess you are using Linux. On Unix like systems the simplest way to use subversion is: - create a src directory in your home - mkdir ~/src; cd ~/src - check out dabo svn checkout http://svn.dabodev.com/dabo/trunk/dabo create a symbolic link in your python site-package: sudo ln -s ~/src/dabo yourpathtopython/site-packages/dabo Now try: python -c "import dabo" If you don't get an error, you are done. For windows the simplest method is to use a dabo.pth file as described here: http://dabodev.com/wiki/InstallationOnWindows Uwe _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
