diff options
author | NotZed <NotZed@HelixCode.com> | 2000-02-29 02:25:38 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-02-29 02:25:38 +0800 |
commit | afd0dcbd68a9ca7af0e127074d293ebe139fb5a7 (patch) | |
tree | 50bf734f6182b8f34957ee796f6e85c5ed3168f6 | |
parent | 58161159e4b9dd2ae7abd19d28606a56cadb9a36 (diff) | |
download | gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.tar gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.tar.gz gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.tar.bz2 gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.tar.lz gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.tar.xz gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.tar.zst gsoc2013-evolution-afd0dcbd68a9ca7af0e127074d293ebe139fb5a7.zip |
Fixed a typo.
2000-02-28 NotZed <NotZed@HelixCode.com>
* camel-stream-b64.c (my_read_encode): Fixed a typo.
* providers/mbox/camel-mbox-search.c: Changed to use e-sexp,
rather than filter-sexp.
svn path=/trunk/; revision=1979
-rw-r--r-- | camel/ChangeLog | 7 | ||||
-rw-r--r-- | camel/camel-stream-b64.c | 4 | ||||
-rw-r--r-- | camel/providers/mbox/Makefile.am | 6 | ||||
-rw-r--r-- | camel/providers/mbox/camel-mbox-search.c | 76 |
4 files changed, 50 insertions, 43 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index c7ef60b391..5bf9ce3ea2 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,10 @@ +2000-02-28 NotZed <NotZed@HelixCode.com> + + * camel-stream-b64.c (my_read_encode): Fixed a typo. + + * providers/mbox/camel-mbox-search.c: Changed to use e-sexp, + rather than filter-sexp. + 2000-02-28 bertrand <bertrand@helixcode.com> * camel-stream-b64.c (my_read_encode): encoding diff --git a/camel/camel-stream-b64.c b/camel/camel-stream-b64.c index 000557ae82..40427caca2 100644 --- a/camel/camel-stream-b64.c +++ b/camel/camel-stream-b64.c @@ -423,8 +423,8 @@ my_read_encode (CamelStream *stream, status->end_state = 6; buffer [j++] = '\n'; - stream->eos = TRUE; -; + stream_b64->eos = TRUE; + } else { switch (status->state) { diff --git a/camel/providers/mbox/Makefile.am b/camel/providers/mbox/Makefile.am index 13f09b9d7b..431ad054fa 100644 --- a/camel/providers/mbox/Makefile.am +++ b/camel/providers/mbox/Makefile.am @@ -13,7 +13,7 @@ INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \ -I$(top_srcdir)/intl \ $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel \ -I$(top_srcdir)/libibex \ - -I$(top_srcdir)/filter + -I$(top_srcdir)/e-util libcamelmbox_la_SOURCES = \ camel-mbox-folder.c \ @@ -35,7 +35,7 @@ libcamelmboxinclude_HEADERS = \ libcamelmbox_la_LDFLAGS = -version-info 0:0:0 -rpath $(libdir) -#libcamelmbox_la_LIBADD = $(top_builddir)/filter/libfilter.la $(top_builddir)/libibex/libibex.la $(UNICODE_LIBS) -libcamelmbox_la_LIBADD = $(top_builddir)/libibex/libibex.la $(UNICODE_LIBS) +libcamelmbox_la_LIBADD = $(top_builddir)/e-util/libeutil.la $(top_builddir)/libibex/libibex.la $(UNICODE_LIBS) +#libcamelmbox_la_LIBADD = $(top_builddir)/libibex/libibex.la $(UNICODE_LIBS) EXTRA_DIST = diff --git a/camel/providers/mbox/camel-mbox-search.c b/camel/providers/mbox/camel-mbox-search.c index 70dac7741a..3e19adcd1a 100644 --- a/camel/providers/mbox/camel-mbox-search.c +++ b/camel/providers/mbox/camel-mbox-search.c @@ -37,9 +37,9 @@ #include "camel-mbox-folder.h" #include "camel-mbox-search.h" -/* #define HAVE_FILTER */ +#define HAVE_FILTER #ifdef HAVE_FILTER -#include "filter-sexp.h" +#include "e-sexp.h" #define HAVE_IBEX #ifdef HAVE_IBEX @@ -101,20 +101,20 @@ g_lib_sux_htor(char *key, int value, struct _glib_sux_donkeys *fuckup) g_ptr_array_add(fuckup->uids, key); } -static FilterSEXPResult * -func_body_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **argv, void *data) +static ESExpResult * +func_body_contains(struct _ESExp *f, int argc, struct _ESExpResult **argv, void *data) { - FilterSEXPResult *r; + ESExpResult *r; int i, j; struct _searchcontext *ctx = data; if (ctx->message_current) { int truth = FALSE; - r = filter_sexp_result_new(FSEXP_RES_BOOL); + r = e_sexp_result_new(ESEXP_RES_BOOL); if (ctx->index) { for (i=0;i<argc && !truth;i++) { - if (argv[i]->type == FSEXP_RES_STRING) { + if (argv[i]->type == ESEXP_RES_STRING) { truth = ibex_find_name(ctx->index, ctx->message_current->uid, argv[i]->value.string); } else { g_warning("Invalid type passed to body-contains match function"); @@ -125,7 +125,7 @@ func_body_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **a } r->value.bool = truth; } else { - r = filter_sexp_result_new(FSEXP_RES_ARRAY_PTR); + r = e_sexp_result_new(ESEXP_RES_ARRAY_PTR); if (ctx->index) { if (argc==1) { @@ -138,7 +138,7 @@ func_body_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **a /* this sux, perform an or operation on the result(s) of each word */ for (i=0;i<argc;i++) { - if (argv[i]->type == FSEXP_RES_STRING) { + if (argv[i]->type == ESEXP_RES_STRING) { pa = ibex_find(ctx->index, argv[i]->value.string); for (j=0;j<pa->len;j++) { g_hash_table_insert(ht, g_ptr_array_index(pa, j), (void *)1); @@ -158,13 +158,13 @@ func_body_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **a return r; } -static FilterSEXPResult * -func_date_sent(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **argv, void *data) +static ESExpResult * +func_date_sent(struct _ESExp *f, int argc, struct _ESExpResult **argv, void *data) { - FilterSEXPResult *r; + ESExpResult *r; struct _searchcontext *ctx = data; - r = filter_sexp_result_new(FSEXP_RES_INT); + r = e_sexp_result_new(ESEXP_RES_INT); if (ctx->message_current) { g_warning("FIXME: implement date parsing ..."); @@ -176,30 +176,30 @@ func_date_sent(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **argv, } -static FilterSEXPResult * -func_match_all(struct _FilterSEXP *f, int argc, struct _FilterSEXPTerm **argv, void *data) +static ESExpResult * +func_match_all(struct _ESExp *f, int argc, struct _ESExpTerm **argv, void *data) { int i; - FilterSEXPResult *r, *r1; + ESExpResult *r, *r1; struct _searchcontext *ctx = data; if (argc>1) { g_warning("match-all only takes a single argument, other arguments ignored"); } - r = filter_sexp_result_new(FSEXP_RES_ARRAY_PTR); + r = e_sexp_result_new(ESEXP_RES_ARRAY_PTR); r->value.ptrarray = g_ptr_array_new(); for (i=0;i<ctx->message_info->len;i++) { if (argc>0) { ctx->message_current = &g_array_index(ctx->message_info, CamelMessageInfo, i); - r1 = filter_sexp_term_eval(f, argv[0]); - if (r1->type == FSEXP_RES_BOOL) { + r1 = e_sexp_term_eval(f, argv[0]); + if (r1->type == ESEXP_RES_BOOL) { if (r1->value.bool) g_ptr_array_add(r->value.ptrarray, ctx->message_current->uid); } else { g_warning("invalid syntax, matches require a single bool result"); } - filter_sexp_result_free(r1); + e_sexp_result_free(r1); } else { g_ptr_array_add(r->value.ptrarray, ctx->message_current->uid); } @@ -209,10 +209,10 @@ func_match_all(struct _FilterSEXP *f, int argc, struct _FilterSEXPTerm **argv, v return r; } -static FilterSEXPResult * -func_header_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult **argv, void *data) +static ESExpResult * +func_header_contains(struct _ESExp *f, int argc, struct _ESExpResult **argv, void *data) { - FilterSEXPResult *r; + ESExpResult *r; struct _searchcontext *ctx = data; int truth = FALSE; @@ -220,7 +220,7 @@ func_header_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult * /* are we inside a match-all? */ if (ctx->message_current && argc>1 - && argv[0]->type == FSEXP_RES_STRING) { + && argv[0]->type == ESEXP_RES_STRING) { char *headername, *header; int i; @@ -239,7 +239,7 @@ func_header_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult * if (header) { for (i=1;i<argc && !truth;i++) { - if (argv[i]->type == FSEXP_RES_STRING + if (argv[i]->type == ESEXP_RES_STRING && strstr(header, argv[i]->value.string)) { printf("%s got a match with %s of %s\n", ctx->message_current->uid, header, argv[i]->value.string); truth = TRUE; @@ -248,7 +248,7 @@ func_header_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult * } } } - r = filter_sexp_result_new(FSEXP_RES_BOOL); + r = e_sexp_result_new(ESEXP_RES_BOOL); r->value.bool = truth; return r; @@ -258,13 +258,13 @@ func_header_contains(struct _FilterSEXP *f, int argc, struct _FilterSEXPResult * /* 'builtin' functions */ static struct { char *name; - FilterSEXPFunc *func; + ESExpFunc *func; int type; /* set to 1 if a function can perform shortcut evaluation, or doesn't execute everything, 0 otherwise */ } symbols[] = { { "body-contains", func_body_contains, 0 }, { "date-sent", func_date_sent, 0 }, - { "match-all", (FilterSEXPFunc *)func_match_all, 1 }, + { "match-all", (ESExpFunc *)func_match_all, 1 }, { "header-contains", func_header_contains, 0 }, }; @@ -274,11 +274,11 @@ camel_mbox_folder_search_by_expression(CamelFolder *folder, const char *expressi int i; struct _searchcontext ctx; GList *matches = NULL; - FilterSEXP *f; - FilterSEXPResult *r; + ESExp *f; + ESExpResult *r; /* setup our expression evaluator */ - f = filter_sexp_new(); + f = e_sexp_new(); /* setup out context */ ctx.folder = folder; @@ -292,25 +292,25 @@ camel_mbox_folder_search_by_expression(CamelFolder *folder, const char *expressi for(i=0;i<sizeof(symbols)/sizeof(symbols[0]);i++) { if (symbols[i].type == 1) { - filter_sexp_add_ifunction(f, 0, symbols[i].name, (FilterSEXPIFunc *)symbols[i].func, &ctx); + e_sexp_add_ifunction(f, 0, symbols[i].name, (ESExpIFunc *)symbols[i].func, &ctx); } else { - filter_sexp_add_function(f, 0, symbols[i].name, symbols[i].func, &ctx); + e_sexp_add_function(f, 0, symbols[i].name, symbols[i].func, &ctx); } } - filter_sexp_input_text(f, expression, strlen(expression)); - filter_sexp_parse(f); - r = filter_sexp_eval(f); + e_sexp_input_text(f, expression, strlen(expression)); + e_sexp_parse(f); + r = e_sexp_eval(f); /* now create a folder summary to return?? */ if (r - && r->type == FSEXP_RES_ARRAY_PTR) { + && r->type == ESEXP_RES_ARRAY_PTR) { d(printf("got result ...\n")); for (i=0;i<r->value.ptrarray->len;i++) { d(printf("adding match: %s\n", (char *)g_ptr_array_index(r->value.ptrarray, i))); matches = g_list_prepend(matches, g_strdup(g_ptr_array_index(r->value.ptrarray, i))); } - filter_sexp_result_free(r); + e_sexp_result_free(r); } else { printf("no result!\n"); } |