aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-string.c
diff options
context:
space:
mode:
authorChristian Persch <chpe+gnomebugz@stud.uni-saarland.de>2003-05-17 18:50:15 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-05-17 18:50:15 +0800
commit452a329409d547296f6d79fa902ddba45a8286c8 (patch)
tree4ada5d9304748262d1dfc89e71548652fd78e5ab /lib/ephy-string.c
parent83cfb6db38febe9509e98e12f1f5ff396fd2d75f (diff)
downloadgsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.tar
gsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.tar.gz
gsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.tar.bz2
gsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.tar.lz
gsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.tar.xz
gsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.tar.zst
gsoc2013-epiphany-452a329409d547296f6d79fa902ddba45a8286c8.zip
Make it utf-8 safe. Fixes bug 113114.
2003-05-16 Christian Persch <chpe+gnomebugz@stud.uni-saarland.de> * lib/ephy-string.h: (ephy_string_shorten): Make it utf-8 safe. Fixes bug 113114.
Diffstat (limited to 'lib/ephy-string.c')
-rw-r--r--lib/ephy-string.c37
1 files changed, 18 insertions, 19 deletions
diff --git a/lib/ephy-string.c b/lib/ephy-string.c
index 46ea0194f..cf0272f61 100644
--- a/lib/ephy-string.c
+++ b/lib/ephy-string.c
@@ -25,40 +25,39 @@
#include <libgnomevfs/gnome-vfs-mime.h>
#include <libxml/parser.h>
+#define ELLIPSIS "\xe2\x80\xa6"
+
/**
* ephy_string_shorten: returns a newly allocated shortened version of str.
- * the new string will be no longer than target_length characters, and will
- * be of the form "http://blahblah...blahblah.html".
+ * The input must be valid utf-8.
+ * @str: the string to shorten
+ * @target_length: the length of the shortened string (in characters)
+ *
+ * FIXME: this function is a big mess. While it is utf-8 safe now,
+ * it can still split a sequence of combining characters
*/
gchar *
ephy_string_shorten (const gchar *str, gint target_length)
{
gchar *new_str;
- gint actual_length, first_length, second_length;
+ glong actual_length;
+ gulong bytes;
if (!str) return NULL;
- actual_length = strlen (str);
+ actual_length = g_utf8_strlen (str, -1);
/* if the string is already short enough, or if it's too short for
* us to shorten it, return a new copy */
- if (actual_length <= target_length ||
- actual_length <= 3)
- return g_strdup (str);
-
- /* allocate new string */
- new_str = g_new (gchar, target_length + 1);
-
- /* calc lengths to take from beginning and ending of str */
- second_length = (target_length - 3) / 2;
- first_length = target_length - 3 - second_length;
+ if (actual_length <= target_length) return g_strdup (str);
/* create string */
- strncpy (new_str, str, first_length);
- strncpy (new_str + first_length, "...", 3);
- strncpy (new_str + first_length + 3,
- str + actual_length - second_length, second_length);
- new_str[target_length] = '\0';
+ bytes = GPOINTER_TO_UINT (g_utf8_offset_to_pointer (str, target_length - 1) - str);
+
+ new_str = g_new0 (gchar, bytes + strlen(ELLIPSIS) + 1);
+
+ strncpy (new_str, str, bytes);
+ strncpy (new_str + bytes, ELLIPSIS, strlen (ELLIPSIS));
return new_str;
}