--- dillo-0.7.1/src/commands.c Mon Dec 9 16:50:52 2002 +++ dillo-0.7.1-mine/src/commands.c Sun Mar 30 19:14:02 2003 @@ -26,6 +26,7 @@ #include "menu.h" #include "capi.h" + /* * Local data */ @@ -342,8 +343,7 @@ void a_Commands_viewbm_callback(GtkWidge /* HELP MENU */ /* - * This one was intended as a link to help-info on the web site, but - * currently points to the home page --Jcid + * Causes browser to navigate to the Dillo web site. */ void a_Commands_helphome_callback(GtkWidget *widget, gpointer client_data) { @@ -355,14 +355,15 @@ void a_Commands_helphome_callback(GtkWid } /* - * ? + * Causes browser to navigate to the help page on the Dillo web site. */ void a_Commands_manual_callback(GtkWidget *widget, gpointer client_data) { - /* CP: Uncomment this when the feature is implemented. :) - * BrowserWindow *bw = (BrowserWindow *)client_data; - * a_Nav_push (bw, "file:/usr/local/man/man1/dillo.man | groff -man"); - */ + BrowserWindow *bw = (BrowserWindow *)client_data; + DilloUrl *url = a_Url_new(HELP_PAGE, NULL, 0, 0); + + a_Nav_push (bw, url); + a_Url_free(url); }