Hi, -----Original Message----- From: Johannes Schindelin [mailto:Johannes.Schindelin@xxxxxx] > Hi, > On Thu, 22 Jan 2009, Junio C Hamano wrote: >> Björn Steinbrink <B.Steinbrink@xxxxxx> writes: >> >> > OK, I don't really know if this is the right way to do it. Maybe when >> > the browser was built for cygwin this breaks? I have no clue,... >> >> It might be simple enough to check if all it takes is to install a >> prepackaged browser from Cygwin suite and try to run it. Doesn't Cygwin >> have small ones such as lynx (or links)? > Was it not the case that Cygwin programs could grok Windows paths, too? > IIRC w3m is available, dunno about lynx. > Ciao, > Dscho The intention of this patch was to hand over the url to a windows application. In cygwin you can use lynx, links and others, but they are not as smart to use as a browser with a real gui. Cygwin can't handle windows paths, and this patch will break cygwin based browsers like links... My first idea was to patch the git-web--browse.sh script in the section where the browser is called. -------- diff --git a/git-web--browse.sh b/git-web--browse.sh index 78d236b..f726f8f 100755 --- a/git-web--browse.sh +++ b/git-web--browse.sh @@ -143,7 +143,7 @@ case "$browser" in vers=$(expr "$($browser_path -version)" : '.* \([0-9][0-9]*\)\..*') NEWTAB='-new-tab' test "$vers" -lt 2 && NEWTAB='' - "$browser_path" $NEWTAB "$@" & + "$browser_path" $NEWTAB "`cygpath -w $@`" & ;; konqueror) case "$(basename "$browser_path")" in -------- This solution works for cygwin internal browsers where the posix path is required and it works for windows apps called out of the cygwin environment as well. This is certainely not a proper solution but I've got no other idea how to solve the problem. Best regards, steffen -- Steffen Jaeckel Steinbeis-Transferzentrum/Steinbeis-Innovationszentrum Embedded Design und Networking an der Berufsakademie Lörrach Poststraße 35, 79423 Heitersheim Leiter: Prof. Dr.-Ing. Axel Sikora Phone: +49 7634 6949341 Mob : +49 170 2328968 Fax : +49 7634 5049886 www.stzedn.de HINWEIS Das Steinbeis Transferzentrum Embedded Design und Networking (stzedn) an der Dualen Hochschule Baden-Württemberg/Berufsakademie Lörrach wird vom 3.-5.3.2009 auf der Embedded World 2009 in Nürnberg mit einem Stand vertreten sein. Bitte besuchen Sie uns in Halle 12 Stand 322h. Zentrale: Steinbeis GmbH & Co. KG für Technologietransfer Willi-Bleicher-Straße 19, 70174 Stuttgart Registergericht Stuttgart HRA 12 480 Komplementär: Steinbeis-Verwaltung-GmbH, Registergericht Stuttgart HRB 18715 Geschäftsführer: Prof. Dr. Heinz Trasch, Prof. Dr. Michael Auer Der Inhalt dieser E-Mail einschließlich aller Anhänge ist vertraulich und ausschließlich für den bezeichneten Adressaten bestimmt. Wenn Sie nicht der vorgesehene Adressat dieser E-Mail oder dessen Vertreter sein sollten, so beachten Sie bitte, dass jede Form der Kenntnisnahme, Veröffentlichung, Vervielfältigung oder Weitergabe des Inhalts dieser E-Mail unzulässig ist. Wir bitten Sie, sich in diesem Fall mit dem Absender der E-Mail in Verbindung zu setzen, sowie die Originalnachricht zu löschen und alle Kopien hiervon zu vernichten. This e-mail message including any attachments is for the sole use of the intended recipient(s) and may contain privileged or confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately contact the sender by reply e-mail and delete the original message and destroy all copies thereof. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html