diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-03-13 14:01:04 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-03-13 14:01:04 +0800 |
commit | b431c0abd8361e7410a6875ffd14bbac4f850cdf (patch) | |
tree | fa4e41a4d4426cff373eace8f511b7d872a22c2e /deskutils/logjam/files | |
parent | 8cd9909f391159c0779c4e73b0556c03ee3305a8 (diff) | |
download | marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.tar marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.tar.gz marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.tar.bz2 marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.tar.lz marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.tar.xz marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.tar.zst marcuscom-ports-b431c0abd8361e7410a6875ffd14bbac4f850cdf.zip |
Chase the gtkhtml3 internal version change.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8544 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils/logjam/files')
-rw-r--r-- | deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c | 15 | ||||
-rw-r--r-- | deskutils/logjam/files/patch-src-get_cmd_out.c | 10 | ||||
-rw-r--r-- | deskutils/logjam/files/patch-src-menu.c | 10 |
3 files changed, 35 insertions, 0 deletions
diff --git a/deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c b/deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c new file mode 100644 index 000000000..c81d0ed04 --- /dev/null +++ b/deskutils/logjam/files/patch-protocol-liblivejournal-livejournal-entry.c @@ -0,0 +1,15 @@ +--- protocol/liblivejournal/livejournal/entry.c.orig Thu Aug 17 01:40:10 2006 ++++ protocol/liblivejournal/livejournal/entry.c Thu Aug 17 01:45:24 2006 +@@ -610,6 +610,12 @@ + else if (g_ascii_strcasecmp(key, "time") == 0) { + if (entry) lj_ljdate_to_tm(val, &entry->time); + } ++ else if (g_ascii_strcasecmp(key, "backdated") == 0) { ++ if (entry && val[0]) { ++ if (g_ascii_strcasecmp(val, "yes") == 0) ++ entry->backdated = TRUE; ++ } ++ } + else return FALSE; + + return TRUE; diff --git a/deskutils/logjam/files/patch-src-get_cmd_out.c b/deskutils/logjam/files/patch-src-get_cmd_out.c new file mode 100644 index 000000000..161746150 --- /dev/null +++ b/deskutils/logjam/files/patch-src-get_cmd_out.c @@ -0,0 +1,10 @@ +--- src/get_cmd_out.c.orig Sun Jun 5 22:09:21 2005 ++++ src/get_cmd_out.c Sun Jun 5 22:09:38 2005 +@@ -11,6 +11,7 @@ + #include <stdio.h> + #include <unistd.h> + #include <errno.h> ++#include <signal.h> + #include <sys/types.h> + #include <sys/wait.h> + #include "util.h" diff --git a/deskutils/logjam/files/patch-src-menu.c b/deskutils/logjam/files/patch-src-menu.c new file mode 100644 index 000000000..14f2e328f --- /dev/null +++ b/deskutils/logjam/files/patch-src-menu.c @@ -0,0 +1,10 @@ +--- src/menu.c.orig Mon Oct 24 00:11:08 2005 ++++ src/menu.c Thu Aug 17 02:01:02 2006 +@@ -408,7 +408,7 @@ + 0, NULL }, + { "/Insert/---", NULL, NULL, 0, "<Separator>" }, + { N_("/Insert/_Link..."), "<ctl>L", menu_make_link }, +-{ N_("/Insert/_Image..."), NULL, menu_insert_image }, ++{ N_("/Insert/_Image..."), "<ctl><alt>P", menu_insert_image }, + { N_("/Insert/_Journal Link..."), "<ctl><alt>L", menu_make_journal_link }, + { N_("/Insert/lj-_cut..."), "<ctl><alt>X", menu_ljcut, 0, NULL }, |