aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-10-29 18:40:03 +0800
committerChris Lahey <clahey@src.gnome.org>2001-10-29 18:40:03 +0800
commitdb58727d1351912fbd6b0406d5f40cdc8333b5b0 (patch)
tree46cb779c6b262bf3ff9b8c7780cd8daeac6c175a /e-util
parent93127a6dafa30b88d5639e145400b6b91bcc79ee (diff)
downloadgsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.tar
gsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.tar.gz
gsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.tar.bz2
gsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.tar.lz
gsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.tar.xz
gsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.tar.zst
gsoc2013-evolution-db58727d1351912fbd6b0406d5f40cdc8333b5b0.zip
Check for compound first names here (X & Y).
2001-10-29 Christopher James Lahey <clahey@ximian.com> * ename/e-name-western.c (e_name_western_fixup): Check for compound first names here (X & Y). svn path=/trunk/; revision=14329
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/ename/e-name-western.c86
2 files changed, 89 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 74d2423750..5cd7646e77 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-29 Christopher James Lahey <clahey@ximian.com>
+
+ * ename/e-name-western.c (e_name_western_fixup): Check for
+ compound first names here (X & Y).
+
2001-10-28 JP Rosevear <jpr@ximian.com>
* e-pilot-map.c (e_pilot_map_remove_by_pid): make sure to free the
diff --git a/e-util/ename/e-name-western.c b/e-util/ename/e-name-western.c
index f3fe719023..2628d742b8 100644
--- a/e-util/ename/e-name-western.c
+++ b/e-util/ename/e-name-western.c
@@ -1,11 +1,12 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* A simple Western name parser.
*
* <Nat> Jamie, do you know anything about name parsing?
* <jwz> Are you going down that rat hole? Bring a flashlight.
*
- * Author:
- * Nat Friedman (nat@ximian.com)
+ * Authors:
+ * Nat Friedman <nat@ximian.com>
*
* Copyright 1999, Ximian, Inc.
*/
@@ -707,6 +708,54 @@ e_name_western_zap_nil (char **str, int *idx)
*str = NULL;
}
+#define FINISH_CHECK_MIDDLE_NAME_FOR_CONJUNCTION \
+ char *last_start = NULL; \
+ if (name->last) \
+ last_start = strchr (name->last, ' '); \
+ if (last_start) { \
+ char *new_last, *new_first; \
+ \
+ new_last = g_strdup (last_start + 1); \
+ *last_start = 0; \
+ \
+ new_first = g_strdup_printf ("%s %s %s", name->first, name->middle, name->last); \
+ \
+ g_free (name->first); \
+ g_free (name->middle); \
+ g_free (name->last); \
+ \
+ name->first = new_first; \
+ name->middle = NULL; \
+ name->last = new_last; \
+ \
+ idxs->middle_idx = -1; \
+ idxs->last_idx = idxs->first_idx + strlen (name->first) + 1; \
+ } else { \
+ char *new_first; \
+ \
+ new_first = g_strdup_printf ("%s %s %s", name->first, name->middle, name->last); \
+ \
+ g_free (name->first); \
+ g_free (name->middle); \
+ g_free (name->last); \
+ \
+ name->first = new_first; \
+ name->middle = NULL; \
+ name->last = NULL; \
+ idxs->middle_idx = -1; \
+ idxs->last_idx = -1; \
+ }
+
+#define CHECK_MIDDLE_NAME_FOR_CONJUNCTION(conj) \
+ if (idxs->middle_idx != -1 && !strcmp (name->middle, conj)) { \
+ FINISH_CHECK_MIDDLE_NAME_FOR_CONJUNCTION \
+ }
+
+#define CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE(conj) \
+ if (idxs->middle_idx != -1 && !strcasecmp (name->middle, conj)) { \
+ FINISH_CHECK_MIDDLE_NAME_FOR_CONJUNCTION \
+ }
+
static void
e_name_western_fixup (ENameWestern *name, ENameWesternIdxs *idxs)
{
@@ -768,6 +817,39 @@ e_name_western_fixup (ENameWestern *name, ENameWesternIdxs *idxs)
name->first = NULL;
}
+ if (idxs->middle_idx != -1) {
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("&");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("*");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("|");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("^");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("&&");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("||");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("+");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("-");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("and");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("or");
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("plus");
+
+ /* Spanish */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("y");
+
+ /* German */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("und");
+
+ /* Italian */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("e");
+
+ /* Czech */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("a");
+
+ /* Finnish */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION_CASE ("ja");
+
+ /* Russian */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("\xd0\x98"); /* u+0418 */
+ CHECK_MIDDLE_NAME_FOR_CONJUNCTION ("\xd0\xb8"); /* u+0438 */
+ }
+
/*
* Remove stray spaces and commas (although there don't seem
* to be any in the test cases, they might show up later).