aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/webbrowser.c
AgeCommit message (Collapse)AuthorFilesLines
2005-01-20add some more online help functionality and help buttons at various dialog ↵Ulf Lamping1-0/+2
boxes, if a help page *is* available. However, the new help system needs a lot more work before completed. svn path=/trunk/; revision=13152
2004-12-29Make the tone of the error messages a bit less formal, by usingGuy Harris1-1/+1
contractions. (Safari does, at least when you're trying to open a file to which you don't have read access.) svn path=/trunk/; revision=12852
2004-12-23show a simple_dialog, if we use glib 1.x and trying to open a webbrowser ↵Ulf Lamping1-0/+6
(not implemented). This will prevent another compiler warning. svn path=/trunk/; revision=12821
2004-09-30Add an RCS ID.Guy Harris1-0/+2
svn path=/trunk/; revision=12154
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-07-27Note that, when we add the ability to build a GNOMEified Ethereal asGuy Harris1-0/+6
well as a GTK+-only Ethereal, we could use "gnome_url_show()" in GNOMEified Ethereal. svn path=/trunk/; revision=11546
2004-07-07With GLib 1.2[.x], undefine MUST_LAUNCH_BROWSER_OURSELVES, so that weGuy Harris1-2/+11
say that we don't need a preference for the command to launch a browser (that preference won't make any difference). svn path=/trunk/; revision=11330
2004-07-05from Gisle Vanem: if WIN32_LEAN_AND_MEAN is defined,Ulf Lamping1-0/+2
include shellapi.h too svn path=/trunk/; revision=11315
2004-07-01Trivial warning fixes: () -> (void) and comma at end of enumJörg Mayer1-1/+1
svn path=/trunk/; revision=11296
2004-06-29add a preference setting for the web browser commandUlf Lamping1-10/+29
svn path=/trunk/; revision=11269
2004-06-24As current implementation won't compile with GLib 1.x,Ulf Lamping1-1/+8
as a temporary solution, simply do nothing in this case. Has to be improved later svn path=/trunk/; revision=11228
2004-06-23Add "gtk/webbrowser.h" to declare functions from "gtk/webbrowser.c".Guy Harris1-4/+28
Rename "browser_open_program_file()" to "browser_open_data_file()", and make it open files relative to the application's data directory, as that's where data files such as HTMLized man pages would be put. (That happens to be the program directory on Windows, but it's a different directory on UN*X - and you aren't guaranteed to be able to find the program directory on UN*X by looking at argv[0] in any case.) Move it to "gtk/webbrowser.c". Fix "filename2url()" to put "file://", not just "file:", in front of pathnames on UN*X. svn path=/trunk/; revision=11216
2004-06-22add functionality, to show html files from the local installationUlf Lamping1-0/+49
svn path=/trunk/; revision=11213
2004-06-22Style tweaks, and finish an unfinished comment.Guy Harris1-1/+3
svn path=/trunk/; revision=11209
2004-06-22On Mac OS X, use Launch Services to start a Web browser with a given URL.Guy Harris1-7/+37
svn path=/trunk/; revision=11208
2004-06-21Add experimental feature of opening a webbrowser, to show some of theUlf Lamping1-0/+139
webpages from http://www.ethereal.com. This functionality is copied from the Gimp. Win32 will use ShellExecute to use the system registered webbrowser. On unix builds, currently the mozilla browser is hardcoded, we still need a preference setting for this (I will add this later). svn path=/trunk/; revision=11206