diff options
author | jcid <devnull@localhost> | 2008-11-21 18:11:24 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-11-21 18:11:24 +0100 |
commit | c1ca0106410d2d902a3f0fb4b8504c5b23ac7cea (patch) | |
tree | 492b4014db56f413a020a13641eefd69d338a871 | |
parent | 41fcd4d8148404ebcad1ed19f11858a4b502148e (diff) |
- dillorc comment change.
-rw-r--r-- | dillorc | 5 | ||||
-rw-r--r-- | src/uicmd.cc | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -98,8 +98,9 @@ #search_url="http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" # Set the proxy information for http. -# WARNING: dillo uses wget for ftp and https. To use a proxy for those -# protocols, you will need to configure wget. +# WARNING: - HTTPS does not currently use the proxy settings. +# - FTP and downloads plugins use wget. To use a proxy with them, +# you will need to configure wget accordingly. # http_proxy="http://localhost:8080/" #(by default, no proxy is used) diff --git a/src/uicmd.cc b/src/uicmd.cc index 9534a7fb..4484f059 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -180,7 +180,8 @@ BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, const void *vbw) win->add(DilloTabs); // Create and set the UI - UI *new_ui = new UI(0, 0, ww, wh, DEFAULT_TAB_LABEL, old_bw ? BW2UI(old_bw) : NULL); + UI *new_ui = new UI(0, 0, ww, wh, DEFAULT_TAB_LABEL, + old_bw ? BW2UI(old_bw) : NULL); new_ui->set_status("http://www.dillo.org/"); new_ui->tabs(DilloTabs); |