Code

git-gui: Use mixed path for docs on Cygwin.
authorShawn O. Pearce <spearce@spearce.org>
Mon, 19 Feb 2007 00:06:09 +0000 (19:06 -0500)
committerShawn O. Pearce <spearce@spearce.org>
Wed, 21 Feb 2007 05:11:01 +0000 (00:11 -0500)
The Firefox browser requires that a URL use / to delimit directories.
This is instead of \, as \ gets escaped by the browser into its hex
escape code and then relative URLs are incorrectly resolved, Firefox
no longer sees the directories for what they are.  Since we are
handing the browser a true URL, we better use the standard / for
directories.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh

index 551c11c9f5bd5c613aadb9297ddd4e301b0f9587..63848dc705f969182dccd70f9ea287034d4902d0 100755 (executable)
@@ -5336,7 +5336,7 @@ set doc_path [file dirname [gitexec]]
 set doc_path [file join $doc_path Documentation index.html]
 
 if {[is_Cygwin]} {
-       set doc_path [exec cygpath --windows $doc_path]
+       set doc_path [exec cygpath --mixed $doc_path]
 }
 
 if {$browser eq {}} {