netsurf: branch master updated. release/3.0-17-g32eaf61
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/32eaf611b49ce60012d3a...
...commit http://git.netsurf-browser.org/netsurf.git/commit/32eaf611b49ce60012d3af9...
...tree http://git.netsurf-browser.org/netsurf.git/tree/32eaf611b49ce60012d3af9a7...
The branch, master has been updated
via 32eaf611b49ce60012d3af9a75a51e111bed7966 (commit)
from ef363460f165c26cc9f18c85c13f911999dc91cb (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=32eaf611b49ce60012d...
commit 32eaf611b49ce60012d3af9a75a51e111bed7966
Author: Vincent Sanders <vince(a)netsurf-browser.org>
Commit: Vincent Sanders <vince(a)netsurf-browser.org>
fix theme adding dialog
diff --git a/gtk/dialogs/preferences.c b/gtk/dialogs/preferences.c
index 2d787e6..2784eb7 100644
--- a/gtk/dialogs/preferences.c
+++ b/gtk/dialogs/preferences.c
@@ -669,54 +669,66 @@ nsgtk_preferences_buttonAddTheme_clicked(GtkButton *button, struct ppref *priv)
{
char *filename, *directory;
size_t len;
- GtkWidget *fc = gtk_file_chooser_dialog_new(
- messages_get("gtkAddThemeTitle"),
- GTK_WINDOW(priv->dialog),
- GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
- GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
- GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
+ GtkWidget *fc;
+ char *themesfolder;
+ gint res;
+
+ fc = gtk_file_chooser_dialog_new(messages_get("gtkAddThemeTitle"),
+ GTK_WINDOW(priv->dialog),
+ GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
+ GTK_STOCK_OK,
+ GTK_RESPONSE_ACCEPT,
+ GTK_STOCK_CANCEL,
+ GTK_RESPONSE_CANCEL,
+ NULL);
len = SLEN("themes") + strlen(res_dir_location) + 1;
- char themesfolder[len];
+
+ themesfolder = malloc(len);
+
snprintf(themesfolder, len, "%sthemes", res_dir_location);
- gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
- themesfolder);
- gint res = gtk_dialog_run(GTK_DIALOG(fc));
+
+ gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc), themesfolder);
+
+ res = gtk_dialog_run(GTK_DIALOG(fc));
if (res == GTK_RESPONSE_ACCEPT) {
- filename = gtk_file_chooser_get_current_folder(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) != 0) {
- directory = strrchr(filename, '/');
- *directory = '\0';
+ filename = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(fc));
+ if (filename != NULL) {
if (strcmp(filename, themesfolder) != 0) {
- warn_user(messages_get(
- "gtkThemeFolderInstructions"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
- if (filename != NULL)
- g_free(filename);
- return;
+ directory = strrchr(filename, '/');
+ *directory = '\0';
+ if (strcmp(filename, themesfolder) != 0) {
+ warn_user(messages_get(
+ "gtkThemeFolderInstructions"),
+ 0);
+
+ if (filename != NULL)
+ g_free(filename);
+
+ } else {
+ directory++;
+ nsgtk_theme_add(directory);
+ }
} else {
- directory++;
- }
- } else {
- if (filename != NULL)
- g_free(filename);
- filename = gtk_file_chooser_get_filename(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) == 0) {
- warn_user(messages_get("gtkThemeFolderSub"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
g_free(filename);
- return;
+
+ filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(fc));
+
+ if (strcmp(filename, themesfolder) == 0) {
+ warn_user(messages_get("gtkThemeFolderSub"),
+ 0);
+ } else {
+ directory = strrchr(filename, '/') + 1;
+ nsgtk_theme_add(directory);
+ }
}
- directory = strrchr(filename, '/') + 1;
- }
- gtk_widget_destroy(GTK_WIDGET(fc));
- nsgtk_theme_add(directory);
- if (filename != NULL)
+
g_free(filename);
+ }
}
+
+ free(themesfolder);
+
+ gtk_widget_destroy(fc);
}
/* Tabs */
-----------------------------------------------------------------------
Summary of changes:
gtk/dialogs/preferences.c | 90 +++++++++++++++++++++++++-------------------
1 files changed, 51 insertions(+), 39 deletions(-)
diff --git a/gtk/dialogs/preferences.c b/gtk/dialogs/preferences.c
index 2d787e6..2784eb7 100644
--- a/gtk/dialogs/preferences.c
+++ b/gtk/dialogs/preferences.c
@@ -669,54 +669,66 @@ nsgtk_preferences_buttonAddTheme_clicked(GtkButton *button, struct ppref *priv)
{
char *filename, *directory;
size_t len;
- GtkWidget *fc = gtk_file_chooser_dialog_new(
- messages_get("gtkAddThemeTitle"),
- GTK_WINDOW(priv->dialog),
- GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
- GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
- GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
+ GtkWidget *fc;
+ char *themesfolder;
+ gint res;
+
+ fc = gtk_file_chooser_dialog_new(messages_get("gtkAddThemeTitle"),
+ GTK_WINDOW(priv->dialog),
+ GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
+ GTK_STOCK_OK,
+ GTK_RESPONSE_ACCEPT,
+ GTK_STOCK_CANCEL,
+ GTK_RESPONSE_CANCEL,
+ NULL);
len = SLEN("themes") + strlen(res_dir_location) + 1;
- char themesfolder[len];
+
+ themesfolder = malloc(len);
+
snprintf(themesfolder, len, "%sthemes", res_dir_location);
- gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
- themesfolder);
- gint res = gtk_dialog_run(GTK_DIALOG(fc));
+
+ gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc), themesfolder);
+
+ res = gtk_dialog_run(GTK_DIALOG(fc));
if (res == GTK_RESPONSE_ACCEPT) {
- filename = gtk_file_chooser_get_current_folder(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) != 0) {
- directory = strrchr(filename, '/');
- *directory = '\0';
+ filename = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(fc));
+ if (filename != NULL) {
if (strcmp(filename, themesfolder) != 0) {
- warn_user(messages_get(
- "gtkThemeFolderInstructions"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
- if (filename != NULL)
- g_free(filename);
- return;
+ directory = strrchr(filename, '/');
+ *directory = '\0';
+ if (strcmp(filename, themesfolder) != 0) {
+ warn_user(messages_get(
+ "gtkThemeFolderInstructions"),
+ 0);
+
+ if (filename != NULL)
+ g_free(filename);
+
+ } else {
+ directory++;
+ nsgtk_theme_add(directory);
+ }
} else {
- directory++;
- }
- } else {
- if (filename != NULL)
- g_free(filename);
- filename = gtk_file_chooser_get_filename(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) == 0) {
- warn_user(messages_get("gtkThemeFolderSub"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
g_free(filename);
- return;
+
+ filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(fc));
+
+ if (strcmp(filename, themesfolder) == 0) {
+ warn_user(messages_get("gtkThemeFolderSub"),
+ 0);
+ } else {
+ directory = strrchr(filename, '/') + 1;
+ nsgtk_theme_add(directory);
+ }
}
- directory = strrchr(filename, '/') + 1;
- }
- gtk_widget_destroy(GTK_WIDGET(fc));
- nsgtk_theme_add(directory);
- if (filename != NULL)
+
g_free(filename);
+ }
}
+
+ free(themesfolder);
+
+ gtk_widget_destroy(fc);
}
/* Tabs */
--
NetSurf Browser
10 years, 4 months
netsurf: branch vince/release/3.0 updated. release/3.0-1-g5c16937
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/5c16937c2cc4daf979373...
...commit http://git.netsurf-browser.org/netsurf.git/commit/5c16937c2cc4daf9793738e...
...tree http://git.netsurf-browser.org/netsurf.git/tree/5c16937c2cc4daf9793738e19...
The branch, vince/release/3.0 has been updated
via 5c16937c2cc4daf9793738e19273364fc5c3df98 (commit)
from 3234d06ded5dc97e2866b42e5eb96b4c76c98cf2 (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=5c16937c2cc4daf9793...
commit 5c16937c2cc4daf9793738e19273364fc5c3df98
Author: Vincent Sanders <vince(a)netsurf-browser.org>
Commit: Vincent Sanders <vince(a)netsurf-browser.org>
fix theme adding dialog
diff --git a/gtk/dialogs/preferences.c b/gtk/dialogs/preferences.c
index 2d787e6..2784eb7 100644
--- a/gtk/dialogs/preferences.c
+++ b/gtk/dialogs/preferences.c
@@ -669,54 +669,66 @@ nsgtk_preferences_buttonAddTheme_clicked(GtkButton *button, struct ppref *priv)
{
char *filename, *directory;
size_t len;
- GtkWidget *fc = gtk_file_chooser_dialog_new(
- messages_get("gtkAddThemeTitle"),
- GTK_WINDOW(priv->dialog),
- GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
- GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
- GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
+ GtkWidget *fc;
+ char *themesfolder;
+ gint res;
+
+ fc = gtk_file_chooser_dialog_new(messages_get("gtkAddThemeTitle"),
+ GTK_WINDOW(priv->dialog),
+ GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
+ GTK_STOCK_OK,
+ GTK_RESPONSE_ACCEPT,
+ GTK_STOCK_CANCEL,
+ GTK_RESPONSE_CANCEL,
+ NULL);
len = SLEN("themes") + strlen(res_dir_location) + 1;
- char themesfolder[len];
+
+ themesfolder = malloc(len);
+
snprintf(themesfolder, len, "%sthemes", res_dir_location);
- gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
- themesfolder);
- gint res = gtk_dialog_run(GTK_DIALOG(fc));
+
+ gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc), themesfolder);
+
+ res = gtk_dialog_run(GTK_DIALOG(fc));
if (res == GTK_RESPONSE_ACCEPT) {
- filename = gtk_file_chooser_get_current_folder(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) != 0) {
- directory = strrchr(filename, '/');
- *directory = '\0';
+ filename = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(fc));
+ if (filename != NULL) {
if (strcmp(filename, themesfolder) != 0) {
- warn_user(messages_get(
- "gtkThemeFolderInstructions"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
- if (filename != NULL)
- g_free(filename);
- return;
+ directory = strrchr(filename, '/');
+ *directory = '\0';
+ if (strcmp(filename, themesfolder) != 0) {
+ warn_user(messages_get(
+ "gtkThemeFolderInstructions"),
+ 0);
+
+ if (filename != NULL)
+ g_free(filename);
+
+ } else {
+ directory++;
+ nsgtk_theme_add(directory);
+ }
} else {
- directory++;
- }
- } else {
- if (filename != NULL)
- g_free(filename);
- filename = gtk_file_chooser_get_filename(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) == 0) {
- warn_user(messages_get("gtkThemeFolderSub"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
g_free(filename);
- return;
+
+ filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(fc));
+
+ if (strcmp(filename, themesfolder) == 0) {
+ warn_user(messages_get("gtkThemeFolderSub"),
+ 0);
+ } else {
+ directory = strrchr(filename, '/') + 1;
+ nsgtk_theme_add(directory);
+ }
}
- directory = strrchr(filename, '/') + 1;
- }
- gtk_widget_destroy(GTK_WIDGET(fc));
- nsgtk_theme_add(directory);
- if (filename != NULL)
+
g_free(filename);
+ }
}
+
+ free(themesfolder);
+
+ gtk_widget_destroy(fc);
}
/* Tabs */
-----------------------------------------------------------------------
Summary of changes:
gtk/dialogs/preferences.c | 90 +++++++++++++++++++++++++-------------------
1 files changed, 51 insertions(+), 39 deletions(-)
diff --git a/gtk/dialogs/preferences.c b/gtk/dialogs/preferences.c
index 2d787e6..2784eb7 100644
--- a/gtk/dialogs/preferences.c
+++ b/gtk/dialogs/preferences.c
@@ -669,54 +669,66 @@ nsgtk_preferences_buttonAddTheme_clicked(GtkButton *button, struct ppref *priv)
{
char *filename, *directory;
size_t len;
- GtkWidget *fc = gtk_file_chooser_dialog_new(
- messages_get("gtkAddThemeTitle"),
- GTK_WINDOW(priv->dialog),
- GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
- GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
- GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
+ GtkWidget *fc;
+ char *themesfolder;
+ gint res;
+
+ fc = gtk_file_chooser_dialog_new(messages_get("gtkAddThemeTitle"),
+ GTK_WINDOW(priv->dialog),
+ GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
+ GTK_STOCK_OK,
+ GTK_RESPONSE_ACCEPT,
+ GTK_STOCK_CANCEL,
+ GTK_RESPONSE_CANCEL,
+ NULL);
len = SLEN("themes") + strlen(res_dir_location) + 1;
- char themesfolder[len];
+
+ themesfolder = malloc(len);
+
snprintf(themesfolder, len, "%sthemes", res_dir_location);
- gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
- themesfolder);
- gint res = gtk_dialog_run(GTK_DIALOG(fc));
+
+ gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc), themesfolder);
+
+ res = gtk_dialog_run(GTK_DIALOG(fc));
if (res == GTK_RESPONSE_ACCEPT) {
- filename = gtk_file_chooser_get_current_folder(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) != 0) {
- directory = strrchr(filename, '/');
- *directory = '\0';
+ filename = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(fc));
+ if (filename != NULL) {
if (strcmp(filename, themesfolder) != 0) {
- warn_user(messages_get(
- "gtkThemeFolderInstructions"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
- if (filename != NULL)
- g_free(filename);
- return;
+ directory = strrchr(filename, '/');
+ *directory = '\0';
+ if (strcmp(filename, themesfolder) != 0) {
+ warn_user(messages_get(
+ "gtkThemeFolderInstructions"),
+ 0);
+
+ if (filename != NULL)
+ g_free(filename);
+
+ } else {
+ directory++;
+ nsgtk_theme_add(directory);
+ }
} else {
- directory++;
- }
- } else {
- if (filename != NULL)
- g_free(filename);
- filename = gtk_file_chooser_get_filename(
- GTK_FILE_CHOOSER(fc));
- if (strcmp(filename, themesfolder) == 0) {
- warn_user(messages_get("gtkThemeFolderSub"),
- 0);
- gtk_widget_destroy(GTK_WIDGET(fc));
g_free(filename);
- return;
+
+ filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(fc));
+
+ if (strcmp(filename, themesfolder) == 0) {
+ warn_user(messages_get("gtkThemeFolderSub"),
+ 0);
+ } else {
+ directory = strrchr(filename, '/') + 1;
+ nsgtk_theme_add(directory);
+ }
}
- directory = strrchr(filename, '/') + 1;
- }
- gtk_widget_destroy(GTK_WIDGET(fc));
- nsgtk_theme_add(directory);
- if (filename != NULL)
+
g_free(filename);
+ }
}
+
+ free(themesfolder);
+
+ gtk_widget_destroy(fc);
}
/* Tabs */
--
NetSurf Browser
10 years, 4 months
netsurf: branch master updated. release/3.0-16-gef36346
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/ef363460f165c26cc9f18...
...commit http://git.netsurf-browser.org/netsurf.git/commit/ef363460f165c26cc9f18c8...
...tree http://git.netsurf-browser.org/netsurf.git/tree/ef363460f165c26cc9f18c85c...
The branch, master has been updated
via ef363460f165c26cc9f18c85c13f911999dc91cb (commit)
from 2cb4a11d1d6b5bf561000742312f493a5edb9aa4 (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=ef363460f165c26cc9f...
commit ef363460f165c26cc9f18c85c13f911999dc91cb
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Remove another unused inuclude of render/textplain.h.
diff --git a/gtk/dialogs/source.c b/gtk/dialogs/source.c
index 9f9fa22..c506790 100644
--- a/gtk/dialogs/source.c
+++ b/gtk/dialogs/source.c
@@ -42,7 +42,6 @@
#include "render/font.h"
#include "content/content.h"
#include "content/content_type.h"
-#include "render/textplain.h"
#include "utils/log.h"
-----------------------------------------------------------------------
Summary of changes:
gtk/dialogs/source.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/gtk/dialogs/source.c b/gtk/dialogs/source.c
index 9f9fa22..c506790 100644
--- a/gtk/dialogs/source.c
+++ b/gtk/dialogs/source.c
@@ -42,7 +42,6 @@
#include "render/font.h"
#include "content/content.h"
#include "content/content_type.h"
-#include "render/textplain.h"
#include "utils/log.h"
--
NetSurf Browser
10 years, 4 months
netsurf: branch master updated. release/3.0-15-g2cb4a11
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/2cb4a11d1d6b5bf561000...
...commit http://git.netsurf-browser.org/netsurf.git/commit/2cb4a11d1d6b5bf56100074...
...tree http://git.netsurf-browser.org/netsurf.git/tree/2cb4a11d1d6b5bf5610007423...
The branch, master has been updated
via 2cb4a11d1d6b5bf561000742312f493a5edb9aa4 (commit)
from 6784e90a3a0260caddebf7988aa6c0c9169b6894 (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=2cb4a11d1d6b5bf5610...
commit 2cb4a11d1d6b5bf561000742312f493a5edb9aa4
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Remove unused #includes.
diff --git a/desktop/browser.c b/desktop/browser.c
index 48c32b8..9e12e8c 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -52,13 +52,11 @@
#include "desktop/options.h"
#include "desktop/scrollbar.h"
#include "desktop/selection.h"
-#include "desktop/textinput.h"
#include "desktop/plotters.h"
#include "javascript/js.h"
#include "render/form.h"
-#include "render/textplain.h"
#include "render/html.h"
#include "render/box.h"
#include "utils/log.h"
-----------------------------------------------------------------------
Summary of changes:
desktop/browser.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/desktop/browser.c b/desktop/browser.c
index 48c32b8..9e12e8c 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -52,13 +52,11 @@
#include "desktop/options.h"
#include "desktop/scrollbar.h"
#include "desktop/selection.h"
-#include "desktop/textinput.h"
#include "desktop/plotters.h"
#include "javascript/js.h"
#include "render/form.h"
-#include "render/textplain.h"
#include "render/html.h"
#include "render/box.h"
#include "utils/log.h"
--
NetSurf Browser
10 years, 4 months
netsurf: branch master updated. release/3.0-14-g6784e90
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/6784e90a3a0260caddebf...
...commit http://git.netsurf-browser.org/netsurf.git/commit/6784e90a3a0260caddebf79...
...tree http://git.netsurf-browser.org/netsurf.git/tree/6784e90a3a0260caddebf7988...
The branch, master has been updated
via 6784e90a3a0260caddebf7988aa6c0c9169b6894 (commit)
via a4a3bcd97925943f158a01b69020fe6636a0f82d (commit)
via a467363d5edc7998b1d837e204a0f5a550b2133c (commit)
from 1dd8601e3f23b079912111e66e07d89378c30c5a (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=6784e90a3a0260cadde...
commit 6784e90a3a0260caddebf7988aa6c0c9169b6894
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Remove unused selection_get_{start|end} APIs and their helper function.
diff --git a/desktop/selection.c b/desktop/selection.c
index 90ce333..6a93c61 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -83,7 +83,6 @@ static bool traverse_tree(struct box *box, unsigned start_idx, unsigned end_idx,
seln_traverse_handler handler,
void *handle, save_text_whitespace *before, bool *first,
bool do_marker);
-static struct box *get_box(struct box *b, unsigned offset, size_t *pidx);
/**
@@ -964,73 +963,6 @@ void selection_set_end(struct selection *s, unsigned offset)
/**
- * Get the box and index of the specified byte offset within the
- * textual representation.
- *
- * \param b root node of search
- * \param offset byte offset within textual representation
- * \param pidx receives byte index of selection start point within box
- * \return ptr to box, or NULL if no selection defined
- */
-
-struct box *get_box(struct box *b, unsigned offset, size_t *pidx)
-{
- struct box *child = b->children;
-
- if (b->text) {
-
- if (offset >= b->byte_offset &&
- offset <= b->byte_offset + b->length + SPACE_LEN(b)) {
-
- /* it's in this box */
- *pidx = offset - b->byte_offset;
- return b;
- }
- }
-
- /* find the first child that could contain this offset */
- if (child) {
- struct box *next = child->next;
- while (next && next->byte_offset < offset) {
- child = next;
- next = child->next;
- }
- return get_box(child, offset, pidx);
- }
-
- return NULL;
-}
-
-
-/**
- * Get the box and index of the selection start, if defined.
- *
- * \param s selection object
- * \param pidx receives byte index of selection start point within box
- * \return ptr to box, or NULL if no selection defined
- */
-
-struct box *selection_get_start(struct selection *s, size_t *pidx)
-{
- return (s->defined ? get_box(s->root, s->start_idx, pidx) : NULL);
-}
-
-
-/**
- * Get the box and index of the selection end, if defined.
- *
- * \param s selection object
- * \param pidx receives byte index of selection end point within box
- * \return ptr to box, or NULL if no selection defined.
- */
-
-struct box *selection_get_end(struct selection *s, size_t *pidx)
-{
- return (s->defined ? get_box(s->root, s->end_idx, pidx) : NULL);
-}
-
-
-/**
* Tests whether a text range lies partially within the selection, if there is
* a selection defined, returning the start and end indexes of the bytes
* that should be selected.
diff --git a/desktop/selection.h b/desktop/selection.h
index aebb169..68f60b9 100644
--- a/desktop/selection.h
+++ b/desktop/selection.h
@@ -83,9 +83,6 @@ void selection_select_all(struct selection *s);
void selection_set_start(struct selection *s, unsigned idx);
void selection_set_end(struct selection *s, unsigned idx);
-struct box *selection_get_start(struct selection *s, size_t *pidx);
-struct box *selection_get_end(struct selection *s, size_t *pidx);
-
bool selection_click(struct selection *s, browser_mouse_state mouse,
unsigned idx);
void selection_track(struct selection *s, browser_mouse_state mouse,
commitdiff http://git.netsurf-browser.org/netsurf.git/commit/?id=a4a3bcd97925943f158...
commit a4a3bcd97925943f158a01b69020fe6636a0f82d
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Update comments.
diff --git a/desktop/selection.c b/desktop/selection.c
index b2a73f8..90ce333 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -160,7 +160,7 @@ void selection_destroy(struct selection *s)
* resized causing the layout to change.
*
* \param s selection object
- * \param root the box (page/textarea) to be used as the root node for this selection
+ * \param root the root box for html document or NULL for text/plain
*/
void selection_reinit(struct selection *s, struct box *root)
@@ -194,7 +194,7 @@ void selection_reinit(struct selection *s, struct box *root)
* ie. selections are confined to that subtree.
*
* \param s selection object
- * \param root the box (page/textarea) to be used as the root node for this selection
+ * \param root the root box for html document or NULL for text/plain
*/
void selection_init(struct selection *s, struct box *root)
commitdiff http://git.netsurf-browser.org/netsurf.git/commit/?id=a467363d5edc7998b1d...
commit a467363d5edc7998b1d837e204a0f5a550b2133c
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Remove block of code that have been commented out for years.
diff --git a/desktop/selection.c b/desktop/selection.c
index 216462c..b2a73f8 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -171,16 +171,6 @@ void selection_reinit(struct selection *s, struct box *root)
root_idx = 0;
-// if (s->root == root) {
-// /* keep the same number space as before, because we want
-// to keep the selection too */
-// root_idx = (s->max_idx & 0xF0000000U);
-// }
-// else {
-// static int next_idx = 0;
-// root_idx = (next_idx++) << 28;
-// }
-
s->root = root;
if (root) {
s->max_idx = selection_label_subtree(root, root_idx);
@@ -337,13 +327,6 @@ bool selection_click(struct selection *s, browser_mouse_state mouse,
gui_start_selection(top->window);
}
- /* Selection should be cleared when button is released but in
- * the RO interface click is the same as press */
-// else if (!pos && (mouse & BROWSER_MOUSE_CLICK_1)) {
-// /* clear selection */
-// selection_clear(s, true);
-// s->drag_state = DRAG_NONE;
-// }
else if (mouse & BROWSER_MOUSE_CLICK_2) {
/* ignore Adjust clicks when there's no selection */
@@ -1074,11 +1057,6 @@ bool selection_highlighted(const struct selection *s,
*end_idx = min(end, s->end_idx) - start;
return true;
-
-// assert(box);
-// assert(IS_TEXT(box));
-
-// return selected_part(box, s->start_idx, s->end_idx, start_idx, end_idx);
}
-----------------------------------------------------------------------
Summary of changes:
desktop/selection.c | 94 +-------------------------------------------------
desktop/selection.h | 3 --
2 files changed, 2 insertions(+), 95 deletions(-)
diff --git a/desktop/selection.c b/desktop/selection.c
index 216462c..6a93c61 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -83,7 +83,6 @@ static bool traverse_tree(struct box *box, unsigned start_idx, unsigned end_idx,
seln_traverse_handler handler,
void *handle, save_text_whitespace *before, bool *first,
bool do_marker);
-static struct box *get_box(struct box *b, unsigned offset, size_t *pidx);
/**
@@ -160,7 +159,7 @@ void selection_destroy(struct selection *s)
* resized causing the layout to change.
*
* \param s selection object
- * \param root the box (page/textarea) to be used as the root node for this selection
+ * \param root the root box for html document or NULL for text/plain
*/
void selection_reinit(struct selection *s, struct box *root)
@@ -171,16 +170,6 @@ void selection_reinit(struct selection *s, struct box *root)
root_idx = 0;
-// if (s->root == root) {
-// /* keep the same number space as before, because we want
-// to keep the selection too */
-// root_idx = (s->max_idx & 0xF0000000U);
-// }
-// else {
-// static int next_idx = 0;
-// root_idx = (next_idx++) << 28;
-// }
-
s->root = root;
if (root) {
s->max_idx = selection_label_subtree(root, root_idx);
@@ -204,7 +193,7 @@ void selection_reinit(struct selection *s, struct box *root)
* ie. selections are confined to that subtree.
*
* \param s selection object
- * \param root the box (page/textarea) to be used as the root node for this selection
+ * \param root the root box for html document or NULL for text/plain
*/
void selection_init(struct selection *s, struct box *root)
@@ -337,13 +326,6 @@ bool selection_click(struct selection *s, browser_mouse_state mouse,
gui_start_selection(top->window);
}
- /* Selection should be cleared when button is released but in
- * the RO interface click is the same as press */
-// else if (!pos && (mouse & BROWSER_MOUSE_CLICK_1)) {
-// /* clear selection */
-// selection_clear(s, true);
-// s->drag_state = DRAG_NONE;
-// }
else if (mouse & BROWSER_MOUSE_CLICK_2) {
/* ignore Adjust clicks when there's no selection */
@@ -981,73 +963,6 @@ void selection_set_end(struct selection *s, unsigned offset)
/**
- * Get the box and index of the specified byte offset within the
- * textual representation.
- *
- * \param b root node of search
- * \param offset byte offset within textual representation
- * \param pidx receives byte index of selection start point within box
- * \return ptr to box, or NULL if no selection defined
- */
-
-struct box *get_box(struct box *b, unsigned offset, size_t *pidx)
-{
- struct box *child = b->children;
-
- if (b->text) {
-
- if (offset >= b->byte_offset &&
- offset <= b->byte_offset + b->length + SPACE_LEN(b)) {
-
- /* it's in this box */
- *pidx = offset - b->byte_offset;
- return b;
- }
- }
-
- /* find the first child that could contain this offset */
- if (child) {
- struct box *next = child->next;
- while (next && next->byte_offset < offset) {
- child = next;
- next = child->next;
- }
- return get_box(child, offset, pidx);
- }
-
- return NULL;
-}
-
-
-/**
- * Get the box and index of the selection start, if defined.
- *
- * \param s selection object
- * \param pidx receives byte index of selection start point within box
- * \return ptr to box, or NULL if no selection defined
- */
-
-struct box *selection_get_start(struct selection *s, size_t *pidx)
-{
- return (s->defined ? get_box(s->root, s->start_idx, pidx) : NULL);
-}
-
-
-/**
- * Get the box and index of the selection end, if defined.
- *
- * \param s selection object
- * \param pidx receives byte index of selection end point within box
- * \return ptr to box, or NULL if no selection defined.
- */
-
-struct box *selection_get_end(struct selection *s, size_t *pidx)
-{
- return (s->defined ? get_box(s->root, s->end_idx, pidx) : NULL);
-}
-
-
-/**
* Tests whether a text range lies partially within the selection, if there is
* a selection defined, returning the start and end indexes of the bytes
* that should be selected.
@@ -1074,11 +989,6 @@ bool selection_highlighted(const struct selection *s,
*end_idx = min(end, s->end_idx) - start;
return true;
-
-// assert(box);
-// assert(IS_TEXT(box));
-
-// return selected_part(box, s->start_idx, s->end_idx, start_idx, end_idx);
}
diff --git a/desktop/selection.h b/desktop/selection.h
index aebb169..68f60b9 100644
--- a/desktop/selection.h
+++ b/desktop/selection.h
@@ -83,9 +83,6 @@ void selection_select_all(struct selection *s);
void selection_set_start(struct selection *s, unsigned idx);
void selection_set_end(struct selection *s, unsigned idx);
-struct box *selection_get_start(struct selection *s, size_t *pidx);
-struct box *selection_get_end(struct selection *s, size_t *pidx);
-
bool selection_click(struct selection *s, browser_mouse_state mouse,
unsigned idx);
void selection_track(struct selection *s, browser_mouse_state mouse,
--
NetSurf Browser
10 years, 4 months
libcss: branch master updated. release/0.2.0-3-gd9c59c9
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/libcss.git/shortlog/d9c59c9cbbd38937610bda...
...commit http://git.netsurf-browser.org/libcss.git/commit/d9c59c9cbbd38937610bdad4...
...tree http://git.netsurf-browser.org/libcss.git/tree/d9c59c9cbbd38937610bdad4bf...
The branch, master has been updated
via d9c59c9cbbd38937610bdad4bfa63888e5d80828 (commit)
from 652ef30ea4e99e7ae38277304a53ee82e458eb28 (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/libcss.git/commit/?id=d9c59c9cbbd38937610b...
commit d9c59c9cbbd38937610bdad4bfa63888e5d80828
Author: John-Mark Bell <jmb(a)netsurf-browser.org>
Commit: John-Mark Bell <jmb(a)netsurf-browser.org>
Early return after processing @namespace.
diff --git a/src/parse/language.c b/src/parse/language.c
index 6b1542c..522c763 100644
--- a/src/parse/language.c
+++ b/src/parse/language.c
@@ -525,6 +525,9 @@ css_error handleStartAtRule(css_language *c, const parserutils_vector *vector)
return error;
c->state = NAMESPACE_PERMITTED;
+
+ /* Namespaces are special, and do not generate rules */
+ return CSS_OK;
} else {
return CSS_INVALID;
}
-----------------------------------------------------------------------
Summary of changes:
src/parse/language.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/parse/language.c b/src/parse/language.c
index 6b1542c..522c763 100644
--- a/src/parse/language.c
+++ b/src/parse/language.c
@@ -525,6 +525,9 @@ css_error handleStartAtRule(css_language *c, const parserutils_vector *vector)
return error;
c->state = NAMESPACE_PERMITTED;
+
+ /* Namespaces are special, and do not generate rules */
+ return CSS_OK;
} else {
return CSS_INVALID;
}
--
Cascading Style Sheets library
10 years, 4 months
buildsystem: branch master updated. release/1.0-1-g0d03c5f
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/buildsystem.git/shortlog/0d03c5fbf0b1cc00f...
...commit http://git.netsurf-browser.org/buildsystem.git/commit/0d03c5fbf0b1cc00fb1...
...tree http://git.netsurf-browser.org/buildsystem.git/tree/0d03c5fbf0b1cc00fb176...
The branch, master has been updated
via 0d03c5fbf0b1cc00fb176c9e5ed8e745869018ac (commit)
from 526b03ad2ba260269f3741bfd59448a8b0f6de2f (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/buildsystem.git/commit/?id=0d03c5fbf0b1cc0...
commit 0d03c5fbf0b1cc00fb176c9e5ed8e745869018ac
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
add dummy clean targets
ensure targets declared phony
bump version number ready for next release
diff --git a/Makefile b/Makefile
index 5c1ee82..07873ba 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,9 @@
# Component settings
COMPONENT := buildsystem
-COMPONENT_VERSION := 1.0
+COMPONENT_VERSION := 1.1
+
+.PHONY:all usage install dist clean distclean
all: usage
@@ -47,3 +49,9 @@ dist:
$(if $(subst $(GIT_VER),,$(COMPONENT_VERSION)), $(error Component Version "$(COMPONENT_VERSION)" and GIT tag version "$(GIT_VER)" do not match))
$(eval DIST_FILE := $(COMPONENT)-${GIT_VER})
$(Q)git archive --format=tar.gz --prefix=$(DIST_FILE)/ -o $(DIST_FILE).tar.gz $(GIT_TAG)
+
+# dummy clean target
+clean:
+
+# dummy distribution clean target
+distclean:
-----------------------------------------------------------------------
Summary of changes:
Makefile | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 5c1ee82..07873ba 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,9 @@
# Component settings
COMPONENT := buildsystem
-COMPONENT_VERSION := 1.0
+COMPONENT_VERSION := 1.1
+
+.PHONY:all usage install dist clean distclean
all: usage
@@ -47,3 +49,9 @@ dist:
$(if $(subst $(GIT_VER),,$(COMPONENT_VERSION)), $(error Component Version "$(COMPONENT_VERSION)" and GIT tag version "$(GIT_VER)" do not match))
$(eval DIST_FILE := $(COMPONENT)-${GIT_VER})
$(Q)git archive --format=tar.gz --prefix=$(DIST_FILE)/ -o $(DIST_FILE).tar.gz $(GIT_TAG)
+
+# dummy clean target
+clean:
+
+# dummy distribution clean target
+distclean:
--
NetSurf Project build system
10 years, 4 months
netsurf: branch master updated. release/3.0-11-g1dd8601
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/1dd8601e3f23b07991211...
...commit http://git.netsurf-browser.org/netsurf.git/commit/1dd8601e3f23b079912111e...
...tree http://git.netsurf-browser.org/netsurf.git/tree/1dd8601e3f23b079912111e66...
The branch, master has been updated
via 1dd8601e3f23b079912111e66e07d89378c30c5a (commit)
via 8df67ca8010a6e321fa3447dc4e306bbe460a2e3 (commit)
from d2ffd402b32ccc6c7ac8a4fab0821dcaee9f3f6b (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=1dd8601e3f23b079912...
commit 1dd8601e3f23b079912111e66e07d89378c30c5a
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
Ensure split messages are cleaned up
diff --git a/Makefile b/Makefile
index 2044cd9..0ae5b4a 100644
--- a/Makefile
+++ b/Makefile
@@ -593,6 +593,7 @@ endif
clean-target:
$(VQ)echo " CLEAN: $(EXETARGET)"
$(Q)$(RM) $(EXETARGET)
+ $(call clean_install_messages, !NetSurf/Resources)
clean-testament:
$(VQ)echo " CLEAN: utils/testament.h"
@@ -747,6 +748,16 @@ define split_install_messages
)
endef
+# Clean Message target
+# 1 = Destination directory (where resources being installed, creates en/Messages etc)
+# 2 = suffix after language name
+define clean_install_messages
+ $(foreach LANG, $(FAT_LANGUAGES), @echo MSGCLEAN: $(LANG) in $(1)
+ $(Q)$(RM) -f $(1)$(2)/$(LANG)/Messages
+ )
+endef
+
+
# Target installs executable on the host system
install: all-program install-$(TARGET)
commitdiff http://git.netsurf-browser.org/netsurf.git/commit/?id=8df67ca8010a6e321fa...
commit 8df67ca8010a6e321fa3447dc4e306bbe460a2e3
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
Ensure default C language is installed
diff --git a/gtk/Makefile.target b/gtk/Makefile.target
index b84b131..16b9325 100644
--- a/gtk/Makefile.target
+++ b/gtk/Makefile.target
@@ -136,7 +136,7 @@ GTK_RESOURCES_LIST := $(addprefix gtk/res/, $(GTK_RESOURCES_LIST)) \
$(wildcard gtk/res/*.gtk*.ui)
# translations with more than just Messages files
-GTK_TRANSLATIONS_HTML := de en it ja
+GTK_TRANSLATIONS_HTML := de en fr it ja nl
install-gtk:
$(Q)mkdir -p $(DESTDIR)$(NETSURF_GTK_RESOURCES)throbber
@@ -147,7 +147,7 @@ install-gtk:
$(Q)install -m 0644 gtk/res/icons/*.png $(DESTDIR)$(NETSURF_GTK_RESOURCES)/icons
$(Q)install -m 0644 gtk/res/throbber/*.png $(DESTDIR)$(NETSURF_GTK_RESOURCES)/throbber
$(Q)tar -c -h -C gtk/res -f - themes | tar -xv -C $(DESTDIR)$(NETSURF_GTK_RESOURCES) -f -
- $(Q)tar -c -h -C gtk/res -f - $(GTK_TRANSLATIONS_HTML) | tar -xv -C $(DESTDIR)$(NETSURF_GTK_RESOURCES) -f -
+ $(Q)tar -c -h -C gtk/res -f - C $(GTK_TRANSLATIONS_HTML) | tar -xv -C $(DESTDIR)$(NETSURF_GTK_RESOURCES) -f -
$(call split_install_messages, gtk, $(DESTDIR)$(NETSURF_GTK_RESOURCES))
# ----------------------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
Makefile | 11 +++++++++++
gtk/Makefile.target | 4 ++--
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 2044cd9..0ae5b4a 100644
--- a/Makefile
+++ b/Makefile
@@ -593,6 +593,7 @@ endif
clean-target:
$(VQ)echo " CLEAN: $(EXETARGET)"
$(Q)$(RM) $(EXETARGET)
+ $(call clean_install_messages, !NetSurf/Resources)
clean-testament:
$(VQ)echo " CLEAN: utils/testament.h"
@@ -747,6 +748,16 @@ define split_install_messages
)
endef
+# Clean Message target
+# 1 = Destination directory (where resources being installed, creates en/Messages etc)
+# 2 = suffix after language name
+define clean_install_messages
+ $(foreach LANG, $(FAT_LANGUAGES), @echo MSGCLEAN: $(LANG) in $(1)
+ $(Q)$(RM) -f $(1)$(2)/$(LANG)/Messages
+ )
+endef
+
+
# Target installs executable on the host system
install: all-program install-$(TARGET)
diff --git a/gtk/Makefile.target b/gtk/Makefile.target
index b84b131..16b9325 100644
--- a/gtk/Makefile.target
+++ b/gtk/Makefile.target
@@ -136,7 +136,7 @@ GTK_RESOURCES_LIST := $(addprefix gtk/res/, $(GTK_RESOURCES_LIST)) \
$(wildcard gtk/res/*.gtk*.ui)
# translations with more than just Messages files
-GTK_TRANSLATIONS_HTML := de en it ja
+GTK_TRANSLATIONS_HTML := de en fr it ja nl
install-gtk:
$(Q)mkdir -p $(DESTDIR)$(NETSURF_GTK_RESOURCES)throbber
@@ -147,7 +147,7 @@ install-gtk:
$(Q)install -m 0644 gtk/res/icons/*.png $(DESTDIR)$(NETSURF_GTK_RESOURCES)/icons
$(Q)install -m 0644 gtk/res/throbber/*.png $(DESTDIR)$(NETSURF_GTK_RESOURCES)/throbber
$(Q)tar -c -h -C gtk/res -f - themes | tar -xv -C $(DESTDIR)$(NETSURF_GTK_RESOURCES) -f -
- $(Q)tar -c -h -C gtk/res -f - $(GTK_TRANSLATIONS_HTML) | tar -xv -C $(DESTDIR)$(NETSURF_GTK_RESOURCES) -f -
+ $(Q)tar -c -h -C gtk/res -f - C $(GTK_TRANSLATIONS_HTML) | tar -xv -C $(DESTDIR)$(NETSURF_GTK_RESOURCES) -f -
$(call split_install_messages, gtk, $(DESTDIR)$(NETSURF_GTK_RESOURCES))
# ----------------------------------------------------------------------------
--
NetSurf Browser
10 years, 4 months
netsurf: branch master updated. release/3.0-9-gd2ffd40
by NetSurf Browser Project
Gitweb links:
...log http://git.netsurf-browser.org/netsurf.git/shortlog/d2ffd402b32ccc6c7ac8a...
...commit http://git.netsurf-browser.org/netsurf.git/commit/d2ffd402b32ccc6c7ac8a4f...
...tree http://git.netsurf-browser.org/netsurf.git/tree/d2ffd402b32ccc6c7ac8a4fab...
The branch, master has been updated
via d2ffd402b32ccc6c7ac8a4fab0821dcaee9f3f6b (commit)
from 8c7eea4b620701b105b4206da9b2c2dbf89fb717 (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=d2ffd402b32ccc6c7ac...
commit d2ffd402b32ccc6c7ac8a4fab0821dcaee9f3f6b
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
add fallback language
diff --git a/gtk/res/C/Messages b/gtk/res/C/Messages
new file mode 120000
index 0000000..72c9eff
--- /dev/null
+++ b/gtk/res/C/Messages
@@ -0,0 +1 @@
+../../../!NetSurf/Resources/en/Messages
\ No newline at end of file
diff --git a/gtk/res/C/credits.html b/gtk/res/C/credits.html
new file mode 120000
index 0000000..1ba1739
--- /dev/null
+++ b/gtk/res/C/credits.html
@@ -0,0 +1 @@
+../../../!NetSurf/Resources/en/credits.html,faf
\ No newline at end of file
diff --git a/gtk/res/C/licence.html b/gtk/res/C/licence.html
new file mode 120000
index 0000000..147dd6d
--- /dev/null
+++ b/gtk/res/C/licence.html
@@ -0,0 +1 @@
+../../../!NetSurf/Resources/en/licence.html,faf
\ No newline at end of file
diff --git a/gtk/res/C/welcome.html b/gtk/res/C/welcome.html
new file mode 120000
index 0000000..2836213
--- /dev/null
+++ b/gtk/res/C/welcome.html
@@ -0,0 +1 @@
+../../../!NetSurf/Resources/en/welcome.html,faf
\ No newline at end of file
-----------------------------------------------------------------------
Summary of changes:
{cocoa/res/en.lproj => gtk/res/C}/Messages | 0
gtk/res/{en => C}/credits.html | 0
gtk/res/{en => C}/licence.html | 0
gtk/res/{en => C}/welcome.html | 0
4 files changed, 0 insertions(+), 0 deletions(-)
copy {cocoa/res/en.lproj => gtk/res/C}/Messages (100%)
copy gtk/res/{en => C}/credits.html (100%)
copy gtk/res/{en => C}/licence.html (100%)
copy gtk/res/{en => C}/welcome.html (100%)
diff --git a/cocoa/res/en.lproj/Messages b/gtk/res/C/Messages
similarity index 100%
copy from cocoa/res/en.lproj/Messages
copy to gtk/res/C/Messages
diff --git a/gtk/res/en/credits.html b/gtk/res/C/credits.html
similarity index 100%
copy from gtk/res/en/credits.html
copy to gtk/res/C/credits.html
diff --git a/gtk/res/en/licence.html b/gtk/res/C/licence.html
similarity index 100%
copy from gtk/res/en/licence.html
copy to gtk/res/C/licence.html
diff --git a/gtk/res/en/welcome.html b/gtk/res/C/welcome.html
similarity index 100%
copy from gtk/res/en/welcome.html
copy to gtk/res/C/welcome.html
--
NetSurf Browser
10 years, 4 months