Re: source checkout, svn checkout not working
Pat Thoyts <[email protected]> Thu, 17 Sep 2009 09:09:29 +0100
| Newsgroups | gmane.comp.lang.tcl.starkit |
|---|---|
| Message-ID | <[email protected]> |
2009/9/16 Patrick <[email protected]>: > > The source page, checkout tag has the following instructions ... > > # Non-members may check out a read-only working copy anonymously over > HTTP. > svn checkout http://tclkit.googlecode.com/svn/trunk/ tclkit-read-only > > I am attempting to hit it with tortoise svn but getting the following > error... From your post to the newsgroup I suspect you have connectivity issues unrelated to this svn server. However, an alternative is to take a clone or download a snapshot from my git mirror which is following the subversion repository using git svn. See http://www.patthoyts.tk/gitweb.cgi/kitgen/ Gitweb provides downloadable snapshots using the .zip or .tgz links on the end of the line for each commit. Grab the most recent I suggest. > As a side note, the reason I need the source is because I have > exhausted all other options with trying to replace the icon and update > the resource version info. Every avenue, including the stuff on the > wiki have deadended so i figure I'll create my own tclkit exe with the > setup I need. The simplest method if just modifying a tclkit.ico file doesn't work for you is to open a copy of the tclkit.exe using Visual Studio and replace the icon resource. NOTE: you may well need to decompress the binary first. The tclkit executables are nearly all compressed using upx. To manipulate one of these you can split off the database, decompress then rejoin the database using: sdx mksplit tclkit.exe --- this gives you tclkit.head and tclkit.tail. the head is the exe, tail is the database upx -d tclkit.head -- might need to rename it to .exe modify the tclkit.head resources upx --best tclkit.head --- recompress the exe part copy /b tclkit.head + tclkit.tail tclkit-modified.exe