diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/IO/about.c | 22 | ||||
-rw-r--r-- | src/menu.cc | 2 | ||||
-rw-r--r-- | src/prefs.c | 2 | ||||
-rw-r--r-- | src/ui.cc | 4 |
4 files changed, 15 insertions, 15 deletions
diff --git a/src/IO/about.c b/src/IO/about.c index 07dbbb01..68da3c3d 100644 --- a/src/IO/about.c +++ b/src/IO/about.c @@ -61,36 +61,36 @@ const char *const AboutSplash= " <table border='0' cellspacing='0' cellpadding='2'><tr>\n" " <td>\n" " <td>\n" -" <a href='http://www.dillo.org/dillo3-help.html'>\n" +" <a href='https://dillo-browser.github.io/old/dillo3-help.html'>\n" " Help</a>\n" " <tr>\n" " <td> \n" " <td>\n" -" <a href='http://www.dillo.org/'>Home</a>\n" +" <a href='https://dillo-browser.github.io/'>Home</a>\n" " <tr>\n" " <td> \n" " <td>\n" -" <a href='http://www.dillo.org/funding/objectives.html'>\n" +" <a href='https://dillo-browser.github.io/old/funding/objectives.html'>\n" " Objectives</a>\n" " <tr>\n" " <td> \n" " <td>\n" -" <a href='http://hg.dillo.org/dillo/raw-file/tip/ChangeLog'>\n" +" <a href='https://raw.githubusercontent.com/dillo-browser/dillo/master/ChangeLog'>\n" " ChangeLog</a>\n" " <tr>\n" " <td> \n" " <td>\n" -" <a href='http://www.dillo.org/interview.html'>\n" +" <a href='https://dillo-browser.github.io/old/interview.html'>\n" " Interview</a>\n" " <tr>\n" " <td> \n" " <td>\n" -" <a href='http://www.dillo.org/D_authors.html'>\n" +" <a href='https://dillo-browser.github.io/old/D_authors.html'>\n" " Authors</a>\n" " <tr>\n" " <td> \n" " <td>\n" -" <a href='http://www.dillo.org/donations.html'>\n" +" <a href='https://dillo-browser.github.io/old/donations.html'>\n" " Donate</a>\n" " </table>\n" " </table>\n" @@ -236,10 +236,10 @@ const char *const AboutSplash= " <tr>\n" " <td>\n" "<ul>\n" -" <li> Read the <a href='http://www.dillo.org/dillo3-help.html'>help</a>,\n" +" <li> Read the <a href='https://dillo-browser.github.io/old/dillo3-help.html'>help</a>,\n" " it's short.\n" " <li> There's a\n" -" <a href='http://www.dillo.org/dillorc'>dillorc</a>\n" +" <a href='https://raw.githubusercontent.com/dillo-browser/dillo/master/dillorc'>dillorc</a>\n" " (readable config) file inside the tarball. It is well-commented\n" " and has plenty of options to customize dillo, so <STRONG>copy\n" " it</STRONG> to your <STRONG>~/.dillo/</STRONG> directory, and\n" @@ -248,10 +248,10 @@ const char *const AboutSplash= " (available on pages, links, images, forms, the Back and Forward buttons,\n" " and the bug meter).\n" " <li> Cookies are disabled by default for privacy. To log into certain\n" -" sites, you may need to <a href='http://www.dillo.org/Cookies.txt'>enable\n" +" sites, you may need to <a href='https://dillo-browser.github.io/old/Cookies.txt'>enable\n" " cookies selectively</a>.\n" " <li> To stop third-party ads and tracking, you can use a\n" -" ~/.dillo/<a href='http://www.dillo.org/domainrc'>domainrc</a>/ file.\n" +" ~/.dillo/<a href='https://raw.githubusercontent.com/dillo-browser/dillo/master/src/domainrc'>domainrc</a>/ file.\n" " <li> Frames, Java and Javascript are not supported.\n" " <li> This release is mainly intended for <strong>developers</strong>\n" " and <strong>advanced users</strong>.\n" diff --git a/src/menu.cc b/src/menu.cc index e86c3a06..fdf4fc60 100644 --- a/src/menu.cc +++ b/src/menu.cc @@ -273,7 +273,7 @@ static void Menu_bugmeter_validate_wdg_cb(Fl_Widget*, void*) */ static void Menu_bugmeter_about_cb(Fl_Widget*, void*) { - a_UIcmd_open_urlstr(popup_bw, "http://www.dillo.org/help/bug_meter.html"); + a_UIcmd_open_urlstr(popup_bw, "https://dillo-browser.github.io/old/help/bug_meter.html"); } /* diff --git a/src/prefs.c b/src/prefs.c index 065feb70..0114d912 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -12,7 +12,7 @@ #include "prefs.h" #define PREFS_START_PAGE "about:splash" -#define PREFS_HOME "http://www.dillo.org/" +#define PREFS_HOME "https://dillo-browser.github.io/" #define PREFS_FONT_SERIF "DejaVu Serif" #define PREFS_FONT_SANS_SERIF "DejaVu Sans" #define PREFS_FONT_CURSIVE "URW Chancery L" @@ -246,7 +246,7 @@ static void help_cb(Fl_Widget *w, void *) } else { MSG("Can't read local help file at \"%s\"." " Getting remote help...\n", path); - a_UIcmd_open_urlstr(bw, "http://www.dillo.org/dillo3-help.html"); + a_UIcmd_open_urlstr(bw, "https://dillo-browser.github.io/old/dillo3-help.html"); } dFree(path); } @@ -623,7 +623,7 @@ void UI::make_status_bar(int ww, int wh) // Status box StatusOutput = new Fl_Output(0, wh-sh, ww-bm_w, sh); - StatusOutput->value("http://www.dillo.org"); + StatusOutput->value("https://dillo-browser.github.io/"); StatusOutput->labelsize(8); StatusOutput->box(FL_THIN_DOWN_BOX); StatusOutput->clear_visible_focus(); |