Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/55592d5a8d25a8cb92310...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/55592d5a8d25a8cb92310bb...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/55592d5a8d25a8cb92310bb49...
The branch, master has been updated
via 55592d5a8d25a8cb92310bb49913c63336f7a0ae (commit)
via d6d9378e9b1cc082a51725cfc9901549e4b84727 (commit)
from 8d3a89b62db7ee14df788f1ea06a8beb1b283471 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=55592d5a8d25a8cb923...
commit 55592d5a8d25a8cb92310bb49913c63336f7a0ae
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Move hotlist_visted from browser.h to hotlist.h
diff --git a/desktop/browser.h b/desktop/browser.h
index 8ffb40b..ee55e72 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -344,10 +344,6 @@ char * browser_window_get_selection(struct browser_window *bw);
*/
void browser_window_debug_dump(struct browser_window *bw, FILE *f);
-
-/* In platform specific hotlist.c. */
-void hotlist_visited(struct hlcache_handle *c);
-
/* In platform specific theme_install.c. */
#ifdef WITH_THEME_INSTALL
void theme_install_start(struct hlcache_handle *c);
diff --git a/desktop/hotlist.h b/desktop/hotlist.h
index 6092291..fa7fee2 100644
--- a/desktop/hotlist.h
+++ b/desktop/hotlist.h
@@ -42,6 +42,8 @@ bool hotlist_initialise(struct tree *tree, const char *hotlist_path,
const char*
unsigned int hotlist_get_tree_flags(void);
void hotlist_cleanup(const char *hotlist_path);
+void hotlist_visited(struct hlcache_handle *c);
+
bool hotlist_export(const char *path);
void hotlist_edit_selected(void);
void hotlist_delete_selected(void);
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=d6d9378e9b1cc082a51...
commit d6d9378e9b1cc082a51725cfc9901549e4b84727
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Move global_history_add out of browser.h into global_history_core.h
diff --git a/desktop/browser.c b/desktop/browser.c
index aa7da1f..949dca0 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -45,10 +45,11 @@
#include "desktop/browser_private.h"
#include "desktop/download.h"
#include "desktop/frames.h"
-#include "desktop/local_history.h"
-#include "desktop/hotlist.h"
#include "desktop/gui.h"
+#include "desktop/history_global_core.h"
+#include "desktop/hotlist.h"
#include "desktop/knockout.h"
+#include "desktop/local_history.h"
#include "utils/nsoption.h"
#include "desktop/scrollbar.h"
#include "desktop/selection.h"
diff --git a/desktop/browser.h b/desktop/browser.h
index 44eac99..8ffb40b 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -348,9 +348,6 @@ void browser_window_debug_dump(struct browser_window *bw, FILE *f);
/* In platform specific hotlist.c. */
void hotlist_visited(struct hlcache_handle *c);
-/* In platform specific global_history.c. */
-void global_history_add(nsurl *url);
-
/* In platform specific theme_install.c. */
#ifdef WITH_THEME_INSTALL
void theme_install_start(struct hlcache_handle *c);
diff --git a/desktop/history_global_core.h b/desktop/history_global_core.h
index 7b8e682..c55a23c 100644
--- a/desktop/history_global_core.h
+++ b/desktop/history_global_core.h
@@ -28,6 +28,8 @@ bool history_global_initialise(struct tree *tree, const char*
folder_icon_name);
unsigned int history_global_get_tree_flags(void);
void history_global_cleanup(void);
+void global_history_add(nsurl *url);
+
bool history_global_export(const char *path);
void history_global_delete_selected(void);
void history_global_delete_all(void);
-----------------------------------------------------------------------
Summary of changes:
desktop/browser.c | 5 +++--
desktop/browser.h | 7 -------
desktop/history_global_core.h | 2 ++
desktop/hotlist.h | 2 ++
4 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/desktop/browser.c b/desktop/browser.c
index aa7da1f..949dca0 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -45,10 +45,11 @@
#include "desktop/browser_private.h"
#include "desktop/download.h"
#include "desktop/frames.h"
-#include "desktop/local_history.h"
-#include "desktop/hotlist.h"
#include "desktop/gui.h"
+#include "desktop/history_global_core.h"
+#include "desktop/hotlist.h"
#include "desktop/knockout.h"
+#include "desktop/local_history.h"
#include "utils/nsoption.h"
#include "desktop/scrollbar.h"
#include "desktop/selection.h"
diff --git a/desktop/browser.h b/desktop/browser.h
index 44eac99..ee55e72 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -344,13 +344,6 @@ char * browser_window_get_selection(struct browser_window *bw);
*/
void browser_window_debug_dump(struct browser_window *bw, FILE *f);
-
-/* In platform specific hotlist.c. */
-void hotlist_visited(struct hlcache_handle *c);
-
-/* In platform specific global_history.c. */
-void global_history_add(nsurl *url);
-
/* In platform specific theme_install.c. */
#ifdef WITH_THEME_INSTALL
void theme_install_start(struct hlcache_handle *c);
diff --git a/desktop/history_global_core.h b/desktop/history_global_core.h
index 7b8e682..c55a23c 100644
--- a/desktop/history_global_core.h
+++ b/desktop/history_global_core.h
@@ -28,6 +28,8 @@ bool history_global_initialise(struct tree *tree, const char*
folder_icon_name);
unsigned int history_global_get_tree_flags(void);
void history_global_cleanup(void);
+void global_history_add(nsurl *url);
+
bool history_global_export(const char *path);
void history_global_delete_selected(void);
void history_global_delete_all(void);
diff --git a/desktop/hotlist.h b/desktop/hotlist.h
index 6092291..fa7fee2 100644
--- a/desktop/hotlist.h
+++ b/desktop/hotlist.h
@@ -42,6 +42,8 @@ bool hotlist_initialise(struct tree *tree, const char *hotlist_path,
const char*
unsigned int hotlist_get_tree_flags(void);
void hotlist_cleanup(const char *hotlist_path);
+void hotlist_visited(struct hlcache_handle *c);
+
bool hotlist_export(const char *path);
void hotlist_edit_selected(void);
void hotlist_delete_selected(void);
--
NetSurf Browser