[Gtkradiant] [Bug 736] New: need scripted OpenURL

gtkradiant@zerowing.idsoftware.com gtkradiant@zerowing.idsoftware.com
Wed, 15 Jan 2003 10:59:44 -0600


http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=736

           Summary: need scripted OpenURL
           Product: GtkRadiant
           Version: 1.3
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: editor
        AssignedTo: ttimo@idsoftware.com
        ReportedBy: ttimo@idsoftware.com


see OpenURL implementation for *nix
need to use a shell script like I do for RTCW/ET:

$ cat /usr/local/games/wolfenstein/openurl.sh
#!/bin/sh
# use this script to customize the way the engine should open URLs
 
netscape -remote "openURL($1,new-window)" || netscape "$1"
 
# other possibilities .. not exhaustive of course ..
# opera "$1"
# xterm -e lynx "$1"