View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

PowerBuilder and CVS

Home   How To   Code Pool   Public Library   Theory   Events
Power Builder will check for updates, easily download just those files, check diffs, and commit.

It works easily with :pserver: copies (anonymous ones), but you can't commit anything back to the repository from
a :pserver: copy.

To get PowerBuilder to work with SSH :ext: developer cvs

Get this

http://www.codefab.com/unsupported/SSHPassKey.app.sit

Ian


p.s.

this is all explained if you run the app itself, but all you have to do to get it working is something like this:

mkdir ~/.MacOSX
echo "{" > ~/.MacOSX/environment.plist
echo "CVS_RSH=ssh;" >> !$
echo "DISPLAY=localhost;" >> !$
echo "SSH_ASKPASS="/Applications/SSHPassKey.app/Contents/MacOS/SSHPassKey";">> !$
echo "} " >> !$

then make sure to put SSHPassKey in /Applications ;)

then run it and do "Configure PB to use SSHPassKey" and exit.

SSHAskKey.app will be launched when PB tries to access stuff via CVS and prompt you for password in the GUI


Link to this Page