aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-01-08 23:34:14 +0100
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-01-09 20:05:49 +0100
commit09d1171d8d0b16f945df32ff4543c0a8baf4bb22 (patch)
tree9c1b06a9aa1f7c0206e598d7ee02f652564f0e03 /src
parent767c6c142de52a8b110c9c8fbc4110fcb6c3865f (diff)
Update references to website and repository
The website is now at https://dillo-browser.github.io/ and the repository at https://github.com/dillo-browser/dillo.
Diffstat (limited to 'src')
-rw-r--r--src/IO/about.c22
-rw-r--r--src/menu.cc2
-rw-r--r--src/prefs.c2
-rw-r--r--src/ui.cc4
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>&nbsp;&nbsp;\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>&nbsp;&nbsp;\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>&nbsp;&nbsp;\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>&nbsp;&nbsp;\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>&nbsp;&nbsp;\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>&nbsp;&nbsp;\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"
diff --git a/src/ui.cc b/src/ui.cc
index 4239b4e6..0ab23308 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -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();