aboutsummaryrefslogtreecommitdiffstats
path: root/mail/importers/mail-importer.c
blob: 7bd2fffcc39ce6a6448ac610fea5bf54e5dc33de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* mail-importer.c
 *
 * Authors: Iain Holmes <iain@ximian.com>
 *          Michael Zucchi <notzed@ximian.com>
 *
 * Copyright (C) 2001-2003 Ximian, Inc.
 * Copyright (C) 2004 Novell Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>

#include <gmodule.h>
#include <libgnome/gnome-util.h>
#include <libgnome/gnome-i18n.h>
#include <camel/camel-folder.h>
#include <camel/camel-store.h>
#include <camel/camel-mime-message.h>
#include <camel/camel-mime-parser.h>
#include <camel/camel-exception.h>
#include <camel/camel-stream-mem.h>

#include "mail/mail-mt.h"
#include "mail/mail-component.h"
#include "mail/mail-tools.h"

#include "mail-importer.h"

/**
 * mail_importer_make_local_folder:
 * @folderpath: 
 * 
 * Check a local folder exists at path @folderpath, and if not, create it.
 * 
 * Return value: The physical uri of the folder, or NULL if the folder did
 * not exist and could not be created.
 **/
char *
mail_importer_make_local_folder(const char *folderpath)
{
    return g_strdup_printf("mbox:/home/notzed/.evolution/mail/local/%s", folderpath);
}

/**
 * mail_importer_add_line:
 * importer: A MailImporter structure.
 * str: Next line of the mbox.
 * finished: TRUE if @str is the last line of the message.
 *
 * Adds lines to the message until it is finished, and then adds
 * the complete message to the folder.
 */
void
mail_importer_add_line (MailImporter *importer,
            const char *str,
            gboolean finished)
{
    CamelMimeMessage *msg;
    CamelMessageInfo *info;
    CamelException *ex;
    
    if (importer->mstream == NULL)
        importer->mstream = CAMEL_STREAM_MEM (camel_stream_mem_new ());

    camel_stream_write (CAMEL_STREAM (importer->mstream), str,  strlen (str));
    
    if (finished == FALSE)
        return;

    camel_stream_reset (CAMEL_STREAM (importer->mstream));
    info = camel_message_info_new(NULL);
    camel_message_info_set_flags(info, CAMEL_MESSAGE_SEEN, ~0);

    msg = camel_mime_message_new ();
    camel_data_wrapper_construct_from_stream (CAMEL_DATA_WRAPPER (msg),
                          CAMEL_STREAM (importer->mstream));
    
    camel_object_unref (importer->mstream);
    importer->mstream = NULL;

    ex = camel_exception_new ();
    camel_folder_append_message (importer->folder, msg, info, NULL, ex);
    camel_object_unref (msg);

    camel_exception_free (ex);
    camel_message_info_free(info);
}

struct _BonoboObject *mail_importer_factory_cb(struct _BonoboGenericFactory *factory, const char *iid, void *data)
{
    if (strcmp(iid, ELM_INTELLIGENT_IMPORTER_IID) == 0)
        return elm_intelligent_importer_new();
    else if (strcmp(iid, PINE_INTELLIGENT_IMPORTER_IID) == 0)
        return pine_intelligent_importer_new();
    else if (strcmp(iid, NETSCAPE_INTELLIGENT_IMPORTER_IID) == 0)
        return netscape_intelligent_importer_new();
    else if (strcmp(iid, MBOX_IMPORTER_IID) == 0)
        return mbox_importer_new();
    else if (strcmp(iid, OUTLOOK_IMPORTER_IID) == 0)
        return outlook_importer_new();

    return NULL;
}

struct _import_mbox_msg {
    struct _mail_msg msg;
    
    char *path;
    char *uri;
    CamelOperation *cancel;
};

static char *
import_mbox_describe(struct _mail_msg *mm, int complete)
{
    return g_strdup (_("Importing mailbox"));
}

static struct {
    char tag;
    guint32 mozflag;
    guint32 flag;
} status_flags[] = {
    { 'F', MSG_FLAG_MARKED, CAMEL_MESSAGE_FLAGGED },
    { 'A', MSG_FLAG_REPLIED, CAMEL_MESSAGE_ANSWERED },
    { 'D', MSG_FLAG_EXPUNGED, CAMEL_MESSAGE_DELETED },
    { 'R', MSG_FLAG_READ, CAMEL_MESSAGE_SEEN },
};

static guint32
decode_status(const char *status)
{
    const char *p;
    char c;
    guint32 flags = 0;
    int i;

    p = status;
    while ((c = *p++)) {
        for (i=0;i<sizeof(status_flags)/sizeof(status_flags[0]);i++)
            if (status_flags[i].tag == *p)
                flags |= status_flags[i].flag;
    }

    return flags;
}

static guint32
decode_mozilla_status(const char *tmp)
{
    unsigned long status = strtoul(tmp, NULL, 16);
    guint32 flags = 0;
    int i;

    for (i=0;i<sizeof(status_flags)/sizeof(status_flags[0]);i++)
        if (status_flags[i].mozflag & status)
            flags |= status_flags[i].flag;
    return flags;
}

static void
import_mbox_import(struct _mail_msg *mm)
{
    struct _import_mbox_msg *m = (struct _import_mbox_msg *) mm;
    CamelFolder *folder;
    CamelMimeParser *mp = NULL;
    struct stat st;
    int fd;
    CamelMessageInfo *info;

    if (stat(m->path, &st) == -1) {
        g_warning("cannot find source file to import '%s': %s", m->path, g_strerror(errno));
        return;
    }

    if (m->uri == NULL || m->uri[0] == 0)
        folder = mail_component_get_folder(NULL, MAIL_COMPONENT_FOLDER_INBOX);
    else
        folder = mail_tool_uri_to_folder(m->uri, CAMEL_STORE_FOLDER_CREATE, &mm->ex);

    if (folder == NULL)
        return;

    if (S_ISREG(st.st_mode)) {
        CamelOperation *oldcancel = NULL;

        fd = open(m->path, O_RDONLY);
        if (fd == -1) {
            g_warning("cannot find source file to import '%s': %s", m->path, g_strerror(errno));
            goto fail1;
        }

        mp = camel_mime_parser_new();
        camel_mime_parser_scan_from(mp, TRUE);
        if (camel_mime_parser_init_with_fd(mp, fd) == -1) {
            goto fail2;
        }

        if (m->cancel)
            oldcancel = camel_operation_register(m->cancel);

        camel_operation_start(NULL, _("Importing `%s'"), folder->full_name);
        camel_folder_freeze(folder);
        while (camel_mime_parser_step(mp, 0, 0) == CAMEL_MIME_PARSER_STATE_FROM) {
            CamelMimeMessage *msg;
            const char *tmp;
            int pc;
            guint32 flags = 0;

            if (st.st_size > 0)
                pc = (int)(100.0 * ((double)camel_mime_parser_tell(mp) / (double)st.st_size));
            camel_operation_progress(NULL, pc);

            msg = camel_mime_message_new();
            if (camel_mime_part_construct_from_parser((CamelMimePart *)msg, mp) == -1) {
                /* set exception? */
                camel_object_unref(msg);
                break;
            }

            info = camel_message_info_new(NULL);

            tmp = camel_medium_get_header((CamelMedium *)msg, "X-Mozilla-Status");
            if (tmp)
                flags |= decode_mozilla_status(tmp);
            tmp = camel_medium_get_header((CamelMedium *)msg, "Status");
            if (tmp)
                flags |= decode_status(tmp);
            tmp = camel_medium_get_header((CamelMedium *)msg, "X-Status");
            if (tmp)
                flags |= decode_status(tmp);

            camel_message_info_set_flags(info, flags, ~0);
            camel_folder_append_message(folder, msg, info, NULL, &mm->ex);
            camel_message_info_free(info);
            camel_object_unref(msg);

            if (camel_exception_is_set(&mm->ex))
                break;

            camel_mime_parser_step(mp, 0, 0);
        }
        camel_folder_sync(folder, FALSE, NULL);
        camel_folder_thaw(folder);
        camel_operation_end(NULL);
        /* TODO: these api's are a bit weird, registering the old is the same as deregistering */
        if (m->cancel)
            camel_operation_register(oldcancel);
    fail2:
        camel_object_unref(mp);
    }
fail1:
    camel_folder_sync(folder, FALSE, NULL);
    camel_object_unref(folder);
}

static void
import_mbox_done(struct _mail_msg *mm)
{
}

static void
import_mbox_free (struct _mail_msg *mm)
{
    struct _import_mbox_msg *m = (struct _import_mbox_msg *)mm;
    
    if (m->cancel)
        camel_operation_unref(m->cancel);
    g_free(m->uri);
    g_free(m->path);
}

static struct _mail_msg_op import_mbox_op = {
    import_mbox_describe,
    import_mbox_import,
    import_mbox_done,
    import_mbox_free,
};

int
mail_importer_import_mbox(const char *path, const char *folderuri, CamelOperation *cancel)
{
    struct _import_mbox_msg *m;
    int id;

    m = mail_msg_new(&import_mbox_op, NULL, sizeof (*m));
    m->path = g_strdup(path);
    m->uri = g_strdup(folderuri);
    if (cancel) {
        m->cancel = cancel;
        camel_operation_ref(cancel);
    }

    id = m->msg.seq;
    e_thread_put(mail_thread_queued, (EMsg *)m);

    return id;
}

void
mail_importer_import_mbox_sync(const char *path, const char *folderuri, CamelOperation *cancel)
{
    struct _import_mbox_msg *m;

    m = mail_msg_new(&import_mbox_op, NULL, sizeof (*m));
    m->path = g_strdup(path);
    m->uri = g_strdup(folderuri);
    if (cancel) {
        m->cancel = cancel;
        camel_operation_ref(cancel);
    }

    import_mbox_import(&m->msg);
    import_mbox_done(&m->msg);
    mail_msg_free(&m->msg);
}

struct _import_folders_data {
    MailImporterSpecial *special_folders;
    CamelOperation *cancel;

    int elmfmt:1;
};

static void
import_folders_rec(struct _import_folders_data *m, const char *filepath, const char *folderparent)
{
    DIR *dir;
    struct dirent *d;
    struct stat st;
    char *filefull, *foldersub, *uri, *utf8_filename;
    const char *folder;

    dir = opendir(filepath);
    if (dir == NULL)
        return;

    utf8_filename = g_filename_to_utf8 (filepath, -1, NULL, NULL, NULL);
    camel_operation_start(NULL, _("Scanning %s"), utf8_filename);
    g_free (utf8_filename);

    while ( (d=readdir(dir)) ) {
        if (d->d_name[0] == '.')
            continue;

        filefull = g_build_filename(filepath, d->d_name, NULL);

        /* skip non files and directories, and skip directories in mozilla mode */
        if (stat(filefull, &st) == -1
            || !(S_ISREG(st.st_mode)
             || (m->elmfmt && S_ISDIR(st.st_mode)))) {
            g_free(filefull);
            continue;
        }

        folder = d->d_name;
        if (folderparent == NULL) {
            int i;

            for (i=0;m->special_folders[i].orig;i++)
                if (strcmp(m->special_folders[i].orig, folder) == 0) {
                    folder = m->special_folders[i].new;
                    break;
                }
            /* FIXME: need a better way to get default store location */
            uri = g_strdup_printf("mbox:%s/mail/local#%s", mail_component_peek_base_directory(NULL), folder);
        } else {
            uri = g_strdup_printf("mbox:%s/mail/local#%s/%s", mail_component_peek_base_directory(NULL), folderparent, folder);
        }

        printf("importing to uri %s\n", uri);
        mail_importer_import_mbox_sync(filefull, uri, m->cancel);
        g_free(uri);

        /* This little gem re-uses the stat buffer and filefull to automagically scan mozilla-format folders */
        if (!m->elmfmt) {
            char *tmp = g_strdup_printf("%s.sbd", filefull);

            g_free(filefull);
            filefull = tmp;
            if (stat(filefull, &st) == -1) {
                g_free(filefull);
                continue;
            }
        }

        if (S_ISDIR(st.st_mode)) {
            foldersub = folderparent?g_strdup_printf("%s/%s", folderparent, folder):g_strdup(folder);
            import_folders_rec(m, filefull, foldersub);
            g_free(foldersub);
        }

        g_free(filefull);
    }

    camel_operation_end(NULL);
}

/**
 * mail_importer_import_folders_sync:
 * @filepath: 
 * @: 
 * @flags: 
 * @cancel: 
 * 
 * import from a base path @filepath into the root local folder tree,
 * scanning all sub-folders.
 *
 * if @flags is MAIL_IMPORTER_MOZFMT, then subfolders are assumed to
 * be in mozilla/evolutoin 1.5 format, appending '.sbd' to the
 * directory name. Otherwise they are in elm/mutt/pine format, using
 * standard unix directories.
 **/
void
mail_importer_import_folders_sync(const char *filepath, MailImporterSpecial special_folders[], int flags, CamelOperation *cancel)
{
    struct _import_folders_data m;
    CamelOperation *oldcancel = NULL;

    m.special_folders = special_folders;
    m.elmfmt = (flags & MAIL_IMPORTER_MOZFMT) == 0;
    m.cancel = cancel;

    if (cancel)
        oldcancel = camel_operation_register(cancel);

    import_folders_rec(&m, filepath, NULL);

    if (cancel)
        camel_operation_register(oldcancel);
}
a> 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261
2004-01-06  JP Rosevear  <jpr@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_add_event_source): remove the
    item from the hash last and don't free its members because the
    hash table does that for us

2004-01-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (impl_upgradeFromVersion): new
    method's implementation.
    (calendar_component_class_init): initialize new epv's member.
    (calendar_component_init): moved migration code to
    impl_upgradeFromVersion.
    (update_uri_for_primary_selection): fixed warning.

    * gui/tasks-component.c (impl_upgradeFromVersion): new
    method's implementation.
    (tasks_component_class_init): initialize new epv's member.
    (tasks_component_init): moved migration code to
    impl_upgradeFromVersion.

2004-01-06  JP Rosevear <jpr@ximian.com>

    * gui/e-select-names-renderer.c (esnr_editing_done): disconnect
    the activated signal

2004-01-06  JP Rosevear <jpr@ximian.com>

    * gui/dialogs/comp-editor.c (comp_editor_finalize): we don't put
    any signal handlers on the client or source client now, but we do
    on the view
    (real_set_e_cal): no signal handlers on the client
    (obj_modified_cb): we are guaranteed this is a signal for our
    component
    (obj_removed_cb): ditto
    (listen_for_changes): listen for changes on the object
    (save_comp): use above since the source_client changed
    (real_edit_comp): use above since the comp changed

2004-01-06  JP Rosevear <jpr@ximian.com>

    * gui/e-select-names-renderer.c (esnr_activated): if we are
    de-activated, the editing is done
    (esnr_start_editing): listen for activated signal on the control
    frame

    Fixes #52196
    
2004-01-06  Kidd Wang  <kidd.wang@sun.com>

    * gui/e-calendar-table.[ch] (e_calendar_table_open_selected):
    open a dialog for the selected task.
    * gui/e-tasks.[ch] (e_tasks_open_task): ditto.
    * gui/tasks-control.c (tasks_control_sensitize_commands),
    (tasks_control_open_task_cmd): add a menu item for "Open Task".

2004-01-05  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (open_ecal): new function to open ECal's, get any
    error information and display it to the user, all-in-one.
    (gnome_calendar_construct, gnome_calendar_add_event_source): use the
    above function, instead of e_cal_open().
    (open_error, method_error, permission_error): removed unneeded
    functions, we just display the error message returned from the
    backend.

2004-01-05  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_construct): no need to connect to
    the "cal_opened" signal on the task client. Also, added code to
    add the client to the ECalendarTable's model.
    (client_cal_opened_cb, update_e_cal_view_timeout): removed unneeded
    function.

2004-01-05  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_construct): display the tasks'
    primary selection in the task list, and actually open the tasks
    folder.

    * gui/e-tasks.c (e_tasks_set_default_uri): use the ECalModel to
    get the client for a given URI.

2004-01-04  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (add_uri_for_source,
    remove_uri_for_source): removed redundant functions.
    (update_uris_for_selection): dont call above functions, use
    gnome_calendar_* directly.

2003-12-29  Kidd Wang  <kidd.wang@sun.com>

    * gui/calendar-commands.c (file_open_event_cb): add a menu item
    for "open appointment".

    * gui/e-cal-view.[ch] (e_calendar_view_open_event): add a signal
    "open_event" and bind it to "ctrl+o". When the signal is delivered,
    a dialog will be opened to edit the selected event.

    * gui/e-calendar-table.c (e_calendar_table_on_key_press): press "ctrl-o"
    to open a dialog.

2003-12-24  JP Rosevear <jpr@ximian.com>

    * gui/e-select-names-renderer.c (esnr_start_editing): fix the
    signal name

    * gui/dialogs/meeting-page.glade: add Add Attendee button

    * gui/dialogs/meeting-page.c (get_widgets): extract add button
    (add_clicked_cb): edit the attendee after we add it
    (init_widgets): listen for add clicked
    (meeting_page_construct): the add button is in the glade file now

    * gui/e-select-names-editable.c (esne_start_editing): activate the
    control
    (e_select_names_editable_get_address): handle null dest
    (e_select_names_editable_get_name): ditto

    * gui/e-meeting-store.h: add proto

    * gui/e-meeting-store.c (e_meeting_store_find_attendee_path):
    create the path to a given attendee

    * gui/e-meeting-list-view.h: add proto

    * gui/e-meeting-list-view.c (e_meeting_list_view_edit): start
    editing the address of a particular

2003-12-22  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.[ch] (gnome_calendar_add_event_source,
    gnome_calendar_remove_event_source): renamed from *_uri, to work with
    ESource's rather than with plain URIs.
    (gnome_calendar_set_default_source): ditto.

    * gui/control-factory.c (set_prop):
    * gui/calendar-component.c (add_uri_for_source, remove_uri_for_source,
    update_uri_for_primary_selection):
    use sources instead of uris with the GnomeCalendar widget.

2003-12-22  Rodrigo Moya <rodrigo@ximian.com>

    * gui/alarm-notify/save.c (get_saved_notification_time): if the setting
    is not in the config database, use the current time, to avoid getting
    hundreds of alarms for past events.

2003-12-22  Rodrigo Moya <rodrigo@ximian.com>

    * common/authentication.[ch]: new files for managing interactive
    authentication with backends.

    * common/Makefile.am: build new private library.

    * gui/alarm-notify/alarm-notify.c (alarm_notify_add_calendar):
    * gui/dialogs/event-page.c (source_changed_cb):
    * gui/dialogs/task-page.c (source_changed_cb):
    * gui/dialogs/copy-source-dialog.c (copy_source):
    * gui/calendar-component.c (setup_create_ecal):
    * gui/calendar-offline-handler.c (backend_go_offline,
    backend_go_online, calendar_offline_handler_init):
    * gui/comp-editor-factory.c (open_client):
    * gui/e-itip-control.c (start_calendar_server):
    * gui/e-tasks.c (e_tasks_add_todo_uri):
    * gui/gnome-cal.c (gnome_calendar_construct,
    gnome_calendar_add_event_uri):
    * gui/tasks-component.c (setup_create_ecal):
    * importers/icalendar-importer.c (load_file_fn, vcal_load_file_fn,
    gnome_calendar_import_data_fn): create the ECal's via the
    auth_new_cal_from* functions in the authentication module.

    * gui/alarm-notify/Makefile.am:
    * gui/Makefile.am:
    * importers/Makefile.am: link new private library.
    
    * Makefile.am: added new directory to the build.

2003-12-21  JP Rosevear <jpr@ximian.com>

    * gui/e-itip-control.[hc]: rewrite for new ecal api, cache all
    ecal's by type and minimize loading.  Switch to using the source
    option menu

    * conduits/todo/todo-conduit.c (start_calendar_server): ditto

    * conduits/calendar/calendar-conduit.c (start_calendar_server):
    use ECalSourceType
    
    * importers/icalendar-importer.c (load_file_fn): ditto
    (vcal_load_file_fn): ditto
    (gnome_calendar_import_data_fn): ditto

    * gui/dialogs/task-page.c (source_changed_cb): ditto

    * gui/dialogs/event-page.c (source_changed_cb): ditto

    * gui/dialogs/copy-source-dialog.h: update proto

    * gui/dialogs/copy-source-dialog.c (copy_source_dialog): ditto

    * gui/alarm-notify/alarm-notify.c (alarm_notify_add_calendar): ditto

    * gui/tasks-component.c (copy_task_list_cb): ditto
    (setup_create_ecal): ditto

    * gui/gnome-cal.c (gnome_calendar_construct): ditto
    (gnome_calendar_add_event_uri): ditto

    * gui/e-tasks.c (e_tasks_add_todo_uri): ditto

    * gui/comp-editor-factory.c (open_client): ditto

    * gui/calendar-offline-handler.c (backend_go_offline): ditto
    (backend_go_online): ditto
    (calendar_offline_handler_init): ditto

    * gui/calendar-component.c (copy_calendar_cb): ditto
    (setup_create_ecal): ditto

    * gui/print.c (print_month_small): don't pass type to
    e_cal_generate_instances    
    (print_day_details): ditto
    (print_week_summary): ditto

    * gui/tag-calendar.c (tag_calendar_by_client): ditto
    
2003-12-19  JP Rosevear <jpr@ximian.com>

    * gui/tasks-control.c (tasks_control_sensitize_commands): make
    sure there is a ui container

    * gui/calendar-commands.c (calendar_control_sensitize_calendar_commands): ditto
    
    * gui/tasks-component.c (impl_createControls): update after the
    signals are connected so that the ecal's are actually loaded

    * gui/calendar-component.c: ditto
    
2003-12-19  William Jon McCann  <mccann@jhu.edu>

    * gui/dialogs/task-page.c (source_changed_cb): 
    * gui/dialogs/send-comp.c (send_component_dialog): 
    * gui/dialogs/save-comp.c (save_component_dialog): 
    * gui/dialogs/recur-comp.c (recur_component_dialog): 
    * gui/dialogs/event-page.c (source_changed_cb): 
    * gui/dialogs/delete-error.c (delete_error_dialog): 
    * gui/dialogs/delete-comp.c (delete_component_dialog): 
    * gui/dialogs/changed-comp.c (changed_component_dialog): 
    * gui/dialogs/cancel-comp.c (cancel_component_dialog): 
    * gui/dialogs/alarm-options.glade:
    * gui/dialogs/alarm-page.glade:
    * gui/dialogs/cal-prefs-dialog.glade:
    * gui/dialogs/e-delegate-dialog.glade:
    * gui/dialogs/event-page.glade:
    * gui/dialogs/new-calendar.glade:
    * gui/dialogs/new-task-list.glade:
    * gui/dialogs/recurrence-page.glade:
    * gui/dialogs/task-details-page.glade:
    * gui/dialogs/task-page.glade:
    * gui/tasks-control.c (confirm_purge): 
    * gui/tasks-component.c (delete_task_list_cb) 
    (rename_task_list_cb, setup_create_ecal): 
    * gui/goto-dialog.glade: 
    * gui/e-cal-model-tasks.c (show_geo_warning): 
    * gui/comp-editor-factory.c (cal_opened_cb): 
    * gui/calendar-component.c (delete_calendar_cb) 
    (rename_calendar_cb, setup_create_ecal, delete_calendar_cb): 
    * gui/calendar-commands.c (purge_cmd):
    Remove separators from dialogs.  Use frame style recommended
    by the HIG.

2003-12-18  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-component.c (impl_createControls):
    * gui/calendar-component.c (impl_createControls): make sure we
    connect to the "changed" signals after setting the initial selections
    on the ESourceSelector. Fixes some nasty warnings because of
    calendar_control_sensitize_calendar_commands being called with
    no container yet for the control.

2003-12-17  Hans Petter Jansson  <hpj@ximian.com>

    * gui/dialogs/comp-editor.c: Add the concept of a source client, where
    the object lives currently. The plain client is where it will be
    stored.
    (comp_editor_finalize): If we have a source client, disconnect from
    and unref it.
    (save_comp): Check if the object is being moved, and if so, remove it
    from the source client, and make the target client the new source.
    (comp_editor_append_page): Connect to client_changed signal.
    (real_set_e_cal): Change an old gtk_signal_disconnect_by_data() to
    the GLib equivalent, and don't cast ECal to GtkObject. If the source
    client is not set, make it equivalent to the target client.
    (page_client_changed_cb): Implement. Handles a client change.

    * gui/dialogs/comp-editor-page.c (comp_editor_page_class_init): Add
    a new signal, "client_changed", that notifies that the ECal client
    was changed from one of the editor pages.
    (comp_editor_page_set_e_cal): Fix two bugs in this function; if the
    same client is set twice, its ref count could drop to 0. Additionally,
    it was unreffing the new client instead of the old one.
    (comp_editor_page_notify_client_changed): Implement.

    * gui/dialogs/event-page.c (event_page_fill_widgets): Fill in the
    source menu.
    (get_widgets): Get the source menu.
    (source_changed_cb): Implement. Try to open a client for the new
    source, and if successful, notify of the change. Show a dialog on
    failure, and revert to last selected source.
    (init_widgets): Connect to source menu.
    (event_page_create_source_option_menu): Implement Glade helper.

    * gui/dialogs/task-page.c (task_page_fill_widgets): Fill in the source
    menu.
    (get_widgets): Get the source menu.
    (source_changed_cb): Implement, similar to the event page, but for
    tasks.
    (init_widgets): Connect to source menu.
    (task_page_construct): Fix a message booboo.
    (task_page_create_source_option_menu): Implement Glade helper.

    * gui/dialogs/event-page.glade: Add source menu widget.

    * gui/dialogs/task-page.glade: Add source menu widget.

2003-12-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-component.c (add_popup_menu_item):
    * gui/calendar-component.c (add_popup_menu_item): use g_file_test
    to check if the 'pixmap' argument is a file. If so, get the pixmap
    from it, or gtk_image_new_from_stock will return an empty pixmap.

2003-12-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (client_cal_opened_cb): set a correct status
    message.

    * gui/tasks-component.c (fill_popup_menu_cb):
    * gui/calendar-component.c (fill_popup_menu_cb): use the folder*.png
    icons for folder operations.

    * gui/Makefile.am: removed cal-client directory from $INCLUDES.

2003-12-17  Harry Lu  <harry.lu@sun.com>
 
    Fixes #51665.
 
    * gui/e-week-view.c: (e_week_view_focus): call 
    e_week_view_check_layout() so that the spans won't be NULL.

2003-12-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-commands.c: removed the 'NewCalendar' verb.
    (file_new_calendar_cb): removed callback for 'NewCalendar' verb.

    * gui/calendar-component.c: (impl__get_userCreatableItems): added
    'New Calendar' to the list of user creatable items.
    (impl_requestCreateItem): implemented 'New Calendar'.

    * gui/tasks-component.c (impl__get_userCreatableItems): added
    'New Task List' to the list of user creatable items.
    (impl_requestCreateItem): implemented 'New Task List'.

2003-12-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-control.[ch] (tasks_control_sensitize_commands): made
    it public.

    * gui/tasks-component.c (update_uri_for_primary_selection): call
    tasks_control_sensitize_commands() when the primary selection
    changes.

2003-12-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (update_uri_for_primary_selection): call
    calendar_control_sensitize_calendar_commands when the primary selection
    changes.
    (impl_createControls): keep the view_control in the private structure and
    use control_factory_new_control() to create the control.
    (control_activate_cb): removed unneeded function.

    * gui/tasks-component.c (impl_createControls): use tasks_control_new to
    create the tasks view control.
    (control_activate_cb): removed unneeded function.

    * gui/gnome-cal.c (gnome_calendar_add_event_uri): check the return
    value from e_cal_new_from_uri.

2003-12-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/alarm-notify/alarm-notify.c (alarm_notify_remove_calendar):
    make sure we free the data stored in the hash table.
    (alarm_notify_add_calendar): call alarm_queue_add_client, or we wont
    have alarms at all.

    * gui/alarm-notify/alarm-queue.c: no need to hold a ref count.
    (alarm_queue_add_client, alarm_queue_remove_client): don't use the
    refcount private member.
    (alarm_queue_add_client): don't connect to non-existing ECal signals.
    (display_notification, free_client_alarms_cb): fixed warnings.

2003-12-16  Rodrigo Moya <rodrigo@ximian.com>

    Fixes part of #41237
    
    * gui/e-calendar-table.c: use GtkClipboard instead of GtkInvisible
    for cut/copy/paste.
    (selection_clear_event, selection_received, selection_get): removed
    unneeded functions.
    (e_calendar_table_init): don't create the invisible widget.
    (e_calendar_table_copy_clipboard): use gtk_clipboard_set_text().
    (e_calendar_table_paste_clipboard): use gtk_clipboard_request_text().
    (clipboard_get_text_cb): callback for gtk_clipboard_request_text().

    * gui/e-cal-view.c (e_calendar_view_init, e_calendar_view_destroy,
    e_calendar_view_copy_clipboard): no need anymore to keep the last
    clipboard selection, GtkClipboard does it for us.

2003-12-16  Rodrigo Moya <rodrigo@ximian.com>

    * gui/alarm-notify/notify-main.c (alarm_notify_factory_fn): return
    a reference to the alarm_notify_service, not NULL and ref the object
    before returning it.

2003-12-15  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (setup_widgets): set the list view config
    properly (so we don't blow away the month view config

2003-12-15  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (setup_widgets): set the calendar for the day
    view

2003-12-14  JP Rosevear <jpr@ximian.com>

    * gui/calendar-component.c (impl_requestCreateItem): set a proper
    exception if we fail

2003-12-14  JP Rosevear <jpr@ximian.com>
    
    * gui/calendar-config.c
    (calendar_config_get_hide_completed_tasks_units): make sure the
    string is non-null before strcmp'ing it

    Fixes #52033
    
2003-12-10  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_add_event_uri): remove the client
    from the list if there are errors, instead of re-adding it again.
    Also, unref the ECal object on errors, for not leaking.

2003-12-10  Bolian Yin <bolian.yin@sun.com>

    *gui/e-week-view.c: Fix a event/jump button tabbing bug

2003-12-10  Harry Lu  <harry.lu@sun.com>

        Fix for bugzilla bug #51628.

        * gui/weekday-picker.c: (weekday_picker_class_init): setup focus
        handler.
        (day_clicked): new function to set day_mask when mouse clicked
        or keyboard input of space/enter.
        (handle_key_press_event): new function to handle key press event.
        (day_event_cb): handle key press event too.
        (weekday_picker_init): set widget can be focused.
        (colorize_items): change the box's outline if it is focused.
        (weekday_picker_focus): new function to handler focus event.

2003-12-09  Andrew Wu <Yang.Wu@sun.com>

    * gui/e-week-view-main-item.c (e_week_view_main_item_class_init): init a11y.
    * gui/e-week-view.c: emit signal "selected_time_changed".

2003-12-08  Bolian Yin <bolian.yin@sun.com>

    * gui/e-day-view.c (e_day_view_on_editing_started): remove setting property of "handle_popup".
    * gui/e-week-view.c (e_week_view_on_editing_started): remove setting property of "handle_popup".

2003-12-08 Carl Sun <carl.sun@sun.com>

        Fixes #46351

    * gui/e-timezone-entry.c  (e_timezone_entry_mnemonic_activate):
    new function. override the  member function of GtkWidget to handle
    nemonic_activate signal of custom class ETimezoneEntry.


2003-12-08  Bolian Yin <bolian.yin@sun.com>

    * gui/gnome-cal.c (gnome_calendar_class_init): correct argument mismatch in "goto_date" signal definition.

2003-12-05  Yong Sun <Yong.Sun@Sun.com>

    Fix for #51337

    * gui/dialogs/alarm-page.c
    Change raw string "Action/Trigger" to _("Action/Trigger")
    * gui/dialogs/recurrence-page.c
    Change raw string "Date/Time" to _("Date/Time")

2003-12-04  Harry Lu  <harry.lu@sun.com>

    Fix for bugzilla bug #51627.

    * gui/goto.c: (create_ecal): set calitem's move_selection_when_moving 
    to FALSE so that changing month and year won't send out 
    a "selection_changed" signal.

2003-12-03  Ettore Perazzoli  <ettore@ximian.com>

    * gui/tasks-control.c (tasks_control_activate): Do not call
    control_util_set_folder_bar_label().

    * gui/e-calendar-table.c (e_calendar_table_set_status_message):
    Use e_activity_handler_operation_progressing(), not
    evolution_activity_client_update().

    * gui/e-cal-view.c: Remove settings menu.
    (on_settings): Remove.

    * gui/calendar-commands.c (get_shell_view_interface): Remove.
    (control_util_set_folder_bar_label): Remove.
    (calendar_set_folder_bar_label): Remove.
    (control_util_show_settings): Remove.
    (gcal_calendar_dates_change_cb): Remove.
    (calendar_control_activate): Do not connect, do not call
    calendar_set_folder_bar_label().

2003-12-03  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_destroy): free the notification
    list
    
    * gui/tasks-component.c (impl_dispose): ditto

    * gui/calendar-component.c (impl_dispose): ditto

2003-12-03  JP Rosevear <jpr@ximian.com>

    * gui/tasks-component.c (impl_dispose): free up the notifications
    and the ecal
    (config_create_ecal_changed_cb): clear the create_ecal if the
    primary selection changes
    (setup_create_ecal): find a default ecal to do creation with
    (impl_requestCreateItem): use above

2003-12-03  JP Rosevear <jpr@ximian.com>

    * gui/tasks-component.c (rename_task_list_cb): cast the parent
    (impl_createControls): add notification for primary tasks
    (config_primary_selection_changed_cb): handle primary selection
    changing in gconf

    * gui/calendar-config-keys.h: fix config key for primary tasks

2003-12-03  JP Rosevear <jpr@ximian.com>

    * gui/calendar-component.c (rename_calendar_cb): cast the parent
    (config_primary_selection_changed_cb): handle the primary
    selection changing elsewhere
    (impl_dispose): remove the list of notifications
    (impl_createControls): add primary calendar notification
    (config_create_ecal_changed_cb): clear create_ecal if the primary
    key changes
    (setup_create_ecal): find an ecal to use for creation
    (impl_requestCreateItem): use above

2003-12-03  Ettore Perazzoli  <ettore@ximian.com>

    * importers/icalendar-importer.c: Do not #include shell stuff.

    * gui/main.c: Do not #include <evolution-shell-client.h>.

    * gui/e-itip-control.c: Do not #include
    <e-folder-selector-button.h> nor <evolution-shell-client.h>.
    (start_default_server): Return FALSE.
    (default_server_started_cb): Do not connect the "selected" signal
    on the button since it's now NULL.
    (button_selected_cb): #if 0 out.

    * gui/e-cal-list-view.h: Do not #include
    "evolution-activity-client.h".

    * gui/tasks-component.c (impl_createControls): Give an empty label
    for the status bar.

    * gui/e-day-view.h: Remove all deps on evolution-activity-client.

2003-12-02  Rodney Dawes  <dobey@ximian.com>

    * gui/Makefile.am: Version the schemas
    * gui/apps_evolution_calendar.schemas: Removed
    * gui/apps_evolution_calendar.schemas.in.in: Added

2003-12-02  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/copy-source-dialog.c (copy_source_dialog): added
    a label to the dialog to make it look less ugly.

2003-12-02  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/copy-source-dialog.c: converted to use an
    ESourceOptionMenu instead of the ESourceSelector.
    (primary_selection_changed_cb): removed.
    (copy_source_dialog): create the ESourceOptionMenu here.
    (source_selected_cb): callback for the "source_selected"
    signal on the ESourceOptionMenu widget.

2003-12-02  Ettore Perazzoli  <ettore@ximian.com>

    * gui/e-calendar-table.h (struct _ECalendarTable): Replace member
    "activity" with an "activity_id".

    * gui/e-cal-view.c (struct _ECalendarViewPrivate): Replace member
    "activity" with "activity_id".
    (e_calendar_view_destroy): Don't unref activity here anymore.
    (e_calendar_view_set_status_message): Report progress using the
    EActivityHandler off the CalendarComponent.

    * gui/calendar-component.c
    (struct _CalendarComponentPrivate): New member activity_handler.
    (calendar_component_init): Init.
    (calendar_component_peek_activity_handler): New.
    (impl_dispose): Unref.
    (impl_createControls): Return an ETaskBar for the statusbar
    control.

2003-12-01  Ettore Perazzoli  <ettore@ximian.com>

    * gui/calendar-component.c (impl_createControls): Pass a label for
    the status bar control for now.

    * gui/tasks-component.c (impl_createControls): Pass a label for
    the status bar control for now.

2003-12-01  Rodney Dawes  <dobey@ximian.com>

    * gui/GNOME_Evolution_Calendar.server.in.in:
    * gui/calendar-commands.c:
    * gui/e-meeting-list-view.c:
    * gui/e-meeting-model.c:
    * gui/e-select-names-editable.c:
    * gui/itip-bonobo-control.c:
    * gui/itip-utils.c:
    * gui/main.c:
    * gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in:
    * gui/alarm-notify/alarm-queue.c:
    * gui/alarm-notify/notify-main.c:
    * gui/dialogs/alarm-options.c:
    * gui/dialogs/e-delegate-dialog.c:
    * importers/GNOME_Evolution_Calendar_Importer.server.in.in:
    * importers/main.c: Use BASE_VERSION for repo_ids and OAFIIDs

2003-12-01  JP Rosevear <jpr@ximian.com>

    * conduits/todo/Makefile.am: put the conduits in their own dir

    * conduits/calendar/Makefile.am: ditto
    
    * conduits/todo/e-todo.conduit.in: subst in correct thing

    * conduits/calendar/e-calendar.conduit.in: ditto

2003-12-01  JP Rosevear <jpr@ximian.com>

    * conduits/todo/Makefile.am: install to privlibdir

    * conduits/calendar/Makefile.am: ditto
    
    * conduits/todo/e-todo.conduit.in: subst in correct thing

    * conduits/calendar/e-calendar.conduit.in: subst in correct thing

2003-12-01  Rodrigo Moya <rodrigo@ximian.com>

    * gui/alarm-notify/alarm-notify.c (add_uri_to_load, remove_uri_to_load):
    removed unneeded functions.
    (alarm_notify_add_calendar, alarm_notify_remove_calendar): no need
    anymore to add/remove URIs to load on startup to the configuration.

2003-12-01  Rodrigo Moya <rodrigo@ximian.com>

    * gui/alarm-notify/save.c (save_calendars_to_load): removed this
    function, since we now use the ESourceList to know what calendars
    to load.
    (get_calendars_to_load): moved to config-data.c.
    (save_notification_time, get_saved_notification_time,
    save_blessed_program, is_blessed_program): use the
    shared GConfClient.

    * gui/alarm-notify/config-data.[ch]: use a GConfClient instead of a
    EConfigListener.
    (config_data_get_conf_client): renamed from _get_listener.
    (config_data_get_timezone, config_data_get_24_hour_format): changed
    to use the GConfClient.
    (config_data_get_calendars_to_load): new function.
    (ensure_inited): create the source lists for calendar and tasks here.
    (do_cleanup): cleanup the source lists here.

    * gui/alarm-notify/notify-main.c (load_calendars): use
    config_data_get_calendars_to_load().

2003-11-28  JP Rosevear <jpr@ximian.com>

    * gui/e-tasks.c (e_tasks_delete_completed): we want to skip if it
    *is* read only

2003-11-28  JP Rosevear <jpr@ximian.com>

    * gui/e-meeting-store.c (e_meeting_store_get_type): allocate the
    type information correctly

2003-11-26  Hans Petter Jansson  <hpj@ximian.com>

    * gui/calendar-offline-handler.c (backend_go_offline): e_cal_new () ->
    e_cal_new_from_uri ().
    (backend_go_online): Ditto.
    (calendar_offline_handler_init): Ditto.

    * gui/comp-editor-factory.c (open_client): Ditto.

    * gui/e-itip-control.c (start_calendar_server): Ditto.
    (object_requested_cb): Ditto.

    * gui/e-tasks.c (e_tasks_add_todo_uri): Ditto.

    * gui/gnome-cal.c (gnome_calendar_construct): Ditto.
    (gnome_calendar_add_event_uri): Ditto.

    * gui/alarm-notify/alarm-notify.c (alarm_notify_add_calendar): Ditto.

    * importers/icalendar-importer.c (load_file_fn): Ditto.
    (vcal_load_file_fn): Ditto.
    (gnome_calendar_import_data_fn): Ditto.

    * gui/dialogs/copy-source-dialog.c (copy_source): Pass sources to
    e_cal_new ().

2003-11-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/copy-source-dialog.c (copy_source): use the correct
    icalcomponent when calling e_cal_create_object.

    * gui/tasks-control.c (sensitize_commands): no need to have a
    selection for Paste to work.

    * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): disable
    editing items if the selected task list is read only, not if it's not.

2003-11-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/new-task-list.glade:
    * gui/dialogs/new-task-list.[ch]: new files containing the
    implementation of the 'New Task List' dialog.

    * gui/dialogs/Makefile.am: added new files.

    * gui/dialogs/new-calendar.c (new_calendar_dialog): use G_STRLOC
    for g_warning messages.

    * gui/tasks-component.c (new_task_list_cb): implemented.

2003-11-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/copy-source-dialog.c (copy_source_dialog): actually
    add the source selector to the dialog's box.

2003-11-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-component.c:
    * gui/dialogs/copy-source-dialog.[ch]: fixed compilation errors.

    * gui/dialogs/Makefile.am: added missing header directories.

2003-11-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/new-calendar.[ch]: fixed copyright notices.

    * gui/dialogs/copy-source-dialog.[ch]: implementation of the
    Copy command for sources.

    * gui/dialogs/Makefile.am: added new files.

    * gui/calendar-component.c (fill_popup_menu_cb, copy_calendar_cb):
    added Copy command.

    * gui/tasks-component.c (fill_popup_menu_cb, copy_task_list_cb):
    added Copy command.

2003-11-23  Ross Burton  <ross@burtonini.com>

    * gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in:
    Append "_2" to the OAFIID to avoid conflicting with Evo 1.4.
    
    * gui/main.c:
    * gui/alarm-notify/notify-main.c:
    Updated with new OAFIID.

2003-11-20  JP Rosevear <jpr@ximian.com>

    * Remove a bunch of gal includes that are no longer needed

2003-11-19  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #43556

    * gui/e-cal-view.c (selection_get, selection_clear_event,
    selection_received): removed this unneeded functions.
    (e_calendar_view_init): don't create a GtkInvisible anymore.
    (e_calendar_view_destroy): no need to destroy the GtkInvisible.
    (e_cal_view_copy_clipboard, e_cal_view_paste_clipboard):
    use GtkClipboard.

2003-11-19  JP Rosevear <jpr@ximian.com>

    * gui/e-cal-model-tasks.c (get_due): make sure timezone value is
    sane
    (get_completed): ditto

    * gui/e-cal-model.c (get_dtstart): add more guards

    * gui/e-cal-model-calendar.c (get_dtend): ditto
    
2003-11-19  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #51052

    * importers/icalendar-importer.c (prepare_events, prepare_tasks):
    call icalcompiter_next to move the pointer to the next before
    removing a component avoid breaking the link.

2003-11-18  JP Rosevear <jpr@ximian.com>

    * gui/e-cal-model.c (get_dtstart): make sure the timezone value is
    sane

    * gui/e-cal-model-calendar.c (get_dtend): ditto
    
2003-11-18  JP Rosevear  <jpr@ximian.com>

    * gui/calendar-config.h: add protos

    * gui/calendar-config.c (calendar_config_get_primary_calendar):
    get the primary calendar
    (calendar_config_set_primary_calendar): set it
    (calendar_config_add_notification_primary_calendar): set
    notifications for it
    (calendar_config_get_primary_tasks): get the primary task list
    (calendar_config_set_primary_tasks): set it
    (calendar_config_add_notification_primary_tasks): set
    notifications for it

    * gui/calendar-config-keys.h: add primary keys

    * gui/calendar-component.c (find_first_source): find any source
    (update_uri_for_primary_selection): set the default uri and save
    the source uid
    (update_primary_selection): set the primary selection
    (primary_source_selection_changed_cb): use above
    (impl_createControls): set the primary selection

    * gui/tasks-component.c: as above
    
2003-11-18  JP Rosevear <jpr@ximian.com>

    * gui/Makefile.am: remove db3 include

2003-11-18  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-commands.c
    (calendar_control_sensitize_calendar_commands,
    sensitize_taskpad_commands): removed the 'New...' menu items
    from the UI, it's now implemented in the shell.
    (file_new_appointment_cb, file_new_event_cb, file_new_meeting_cb,
    file_new_task_cb): removed.

2003-11-18  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (add_popup_menu_item): added 'sensitive'
    argument.
    (fill_popup_menu_cb): disable/enable menu items depending on whether
    there is a selection or not.

    * gui/tasks-component.c (add_popup_menu_item, fill_popup_menu_cb):
    ditto.

2003-11-17  JP Rosevear <jpr@ximian.com>

    * Cleanup some ref/unref calls

2003-11-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (delete_calendar_cb, rename_calendar_cb):
    * gui/tasks-component.c (delete_task_list_cb, rename_task_list_cb):
    peek the primary selection.

2003-11-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-component.c (fill_popup_menu_cb): added 'Delete' and
    'Rename' menu items.
    (delete_task_list_cb, rename_task_list_cb): callbacks for new
    menu items.

2003-11-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (add_popup_menu_item): try first to
    create the icon from the stock, and then from a file.
    (fill_popup_menu_cb): set callback for 'Rename' menu item.
    (rename_calendar_cb): callback for 'Rename' menu item.
    (new_calendar_cb): fixed arguments.

    * gui/tasks-component.c (impl_createControls): connect to
    "fill_popup_menu" signal on the source selector.
    (fill_popup_menu_cb): callback to create our menu items.

2003-11-17  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: remove the AlarmNotify service, no
    more need for it, since the alarm daemon will listen for changes
    on the GConf key.

    * gui/gnome-cal.c (add_alarms): removed function to talk to the
    alarm daemon.
    (client_cal_opened_cb): don't call add_alarms().

    * gui/alarm-notify/alarm-notify.[ch]: made it a basic GObject.
    (AlarmNotify_addCalendar, AlarmNotify_removeCalendar): removed
    AlarmNotify interface implementation.
    (alarm_notify_class_init): no epv to initialize.
    (alarm_notify_remove_calendar): new function, copied from the
    CORBA method implementation.
    (alarm_notify_factory_fn): return NULL, since there is no objects
    that can be created via this factory now.

    * gui/alarm-notify/notify-main.c (main): now the factory is the alarm
    notification service itself.
    (load_calendars): no need to use exceptions here.

    * gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in:
    now the factory is the alarm notification service itself.

    * gui/main.c (launch_alarm_daemon_cb): dont use the AlarmNotify CORBA
    types.

2003-11-17  Harry Lu  <harry.lu@sun.com>

        * gui/dialogs/recurrence-page.c (make_ending_count_special):
        Make ending count of occurrences of Recurrence tab numeric only.

2003-11-16  JP Rosevear <jpr@ximian.com>

    * gui/tasks-control.c (tasks_control_set_property): add a uri

    * gui/e-tasks.c: kill e_tasks_open

    * gui/e-tasks.h: remove proto

2003-11-16  JP Rosevear <jpr@ximian.com>

    * gui/e-cal-model.c (e_cal_view_objects_added_cb): emit the added
    signal for the correct rows

2003-11-16  JP Rosevear <jpr@ximian.com>

    * gui/tasks-component.c (is_in_uids): copy in here
    (update_uris_for_selection): save the selection
    (update_selection): update the selection when its changed
    somewhere else
    (config_selection_changed_cb): update the selection if the
    configuration changes
    (impl_createControls): store the source selector

    * gui/calendar-config.h: add protos

    * gui/calendar-config.c (calendar_config_get_tasks_selected): get
    the list of task lists selected
    (calendar_config_set_tasks_selected): save it
    (calendar_config_add_notification_tasks_selected): get notified
    about it

2003-11-16  JP Rosevear <jpr@ximian.com>

    * gui/tasks-component.c (add_uri_for_source): add it via e-tasks
    (remove_uri_for_source): remove it via e-tasks
    (get_default_task): provide a default for editing
    (impl_createControls): create the control directly
    (impl_requestCreateItem): implement

    * gui/gnome-cal.c (gnome_calendar_purge): don't let the two list
    iterators clobber each other

    * gui/e-tasks.h: add protos

    * gui/e-tasks.c (e_tasks_destroy): free the client list and the
    hash, disconnect signals
    (e_tasks_new_task): use the default client
    (e_tasks_add_todo_uri): add a uri
    (e_tasks_remove_todo_uri): remove a uri
    (e_tasks_set_default_uri): set default uri
    (e_tasks_get_default_client): get default client
    (e_tasks_delete_completed): expunge from all clients
    (e_tasks_setup_view_menus): use default client uri

    * gui/e-tasks.c (set_timezone): set the timezone for all clients
    (e_tasks_init): set up the clients has table

    * gui/e-calendar-table.etspec: yank some useless display columns

    * gui/e-cal-model.c (remove_client): remove objects in reverse
    order so we don't clobber ourselves

    * gui/calendar-component.c: add FIXME

2003-11-16  JP Rosevear <jpr@ximian.com>

    * gui/calendar-component.c (get_default_event): set up a event to
    be edited
    (impl_requestCreateItem): implement

2003-11-14  JP Rosevear <jpr@ximian.com>

    * gui/*.[hc]: include e-source* from e-d-s

2003-11-14  JP Rosevear <jpr@ximian.com>

    * gui/calendar-config.c (calendar_config_get_calendars_selected):
    config accessor
    (calendar_config_set_calendars_selected): ditto
    (calendar_config_add_notification_calendars_selected): config
    notification

    * gui/calendar-config.h: add protos

    * gui/calendar-config-keys.h: add new key

    * gui/calendar-component.c (is_in_uids): util function
    (update_uris_for_selection): save the selection in the
    configuration
    (update_selection): update the selection from the config info
    (source_selection_changed_cb): only pass one param
    (config_selection_changed_cb): listen for config changes
    (impl_dispose): remove config notification
    (impl_createControls): use bonobo_exception_set; add a config
    notification

2003-11-13  Ettore Perazzoli  <ettore@ximian.com>

    * gui/tasks-component.c (impl__get_userCreatableItems): New.
    (impl_requestCreateItem): New.
    (tasks_component_class_init): Install.

    * gui/calendar-component.c (impl__get_userCreatableItems): New.
    (impl_requestCreateItem): New, for now just a stub.
    (calendar_component_class_init): Install into the EPV.

2003-11-13  Ettore Perazzoli  <ettore@ximian.com>

    * gui/GNOME_Evolution_Calendar.server.in.in: Add a component_alias
    of "calendar" for the calendar and "tasks" for the tasks.

2003-11-12  Hans Petter Jansson  <hpj@ximian.com>

    * gui/calendar-component.c (add_popup_menu_item): Use non-deprecated
    gtk_menu_shell_append ().

2003-11-11  Bolian Yin <bolian.yin@sun.com>
                                                                                
        Fixes #50808
                                                                                
        * gui/goto.c (goto_dialog): set initial selection to current day.
                                                                                
2003-11-11  JP Rosevear <jpr@ximian.com>

    * gui/calendar-offline-handler.c (backend_cal_opened_offline): use
    a standard calendar status
    (backend_cal_opened_online): ditto
    
    * gui/alarm-notify/alarm-queue.c (cal_opened_cb): ditto

    * gui/gnome-cal.c (client_cal_opened_cb): ditto

    * gui/e-tasks.c (cal_opened_cb): ditto

    * gui/e-itip-control.c (default_server_started_cb): ditto

    * gui/e-cal-model.c (cal_opened_cb): ditto

    * gui/comp-editor-factory.c (cal_opened_cb): ditto

2003-11-11  JP Rosevear <jpr@ximian.com>

    * conduits/todo/todo-conduit.c (start_calendar_server): load the
    calendar synchronously

    * conduits/calendar/calendar-conduit.c (start_calendar_server): ditto
    
2003-11-10  JP Rosevear <jpr@ximian.com>

    * importers/icalendar-importer.c (update_single_object): return
    boolean not ECalStatus
    (update_objects): ditto
    (process_item_fn): handle above returns

2003-11-10  JP Rosevear <jpr@ximian.com>

    * gui/e-cal-model-tasks.c (get_due_status): just check the boolean

2003-11-10  JP Rosevear <jpr@ximian.com>

    * conduits/calendar/calendar-conduit.c
    (e_calendar_context_destroy): use proper change list free function
    name
    (post_sync): ditto

    * conduits/todo/todo-conduit.c: same
    
2003-11-10  Dan Winship  <danw@ximian.com>

    * gui/e-tasks.c (e_tasks_delete_completed): Remove get-vtype check
    from the completed-tasks query (and don't leak the sexp string).

    * gui/e-cal-model.c (update_e_cal_view_for_client): Don't adjust
    the sexp to use get-vtype.

    * gui/gnome-cal.c (adjust_e_cal_view_sexp, gnome_calendar_purge):
    Remove get-vtype check from queries

2003-11-07  JP Rosevear <jpr@ximian.com>

    * gui/Makefile.am: remove includes for toplevel libical dir

    * gui/dialogs/Makefile.am: ditto

    * importers/Makefile.am: ditto

2003-11-07  JP Rosevear <jpr@ximian.com>

    * In the gui this is a search and replace commit for moving the
    calendar to evolution-data-server; it also deletes the old backend
    files; e-cal-view was rename to e-calendar-view to remove name
    conflict
    
2003-11-05  JP Rosevear <jpr@ximian.com>

    * gui/migration.c: fix typo

2003-11-05  Larry Ewing  <lewing@ximian.com>

    * gui/migration.c (process_old_dir): add a unimplemented warning
    so we at least avoid relocation errors.

2003-11-04  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (fill_popup_menu_callback): added more
    menu items.
    (delete_calendar_cb): callbacks for new popup menu items.
    (impl_createControls): add the source selector widget to the
    CalendarComponentPrivate structure.

    * gui/migration.[ch] (migrate_old_tasks): new function to migrate
    old tasks setups.
    (process_old_dir): renamed and added a "filename" argument, so that
    the same function can be used for tasks and calendar directories.
    (migrate_old_calendars): added new argument when calling
    process_old_dir().

    * gui/tasks-component.c (tasks_component_init): call
    migrate_old_tasks() if there are no groups defined.

2003-11-04  Bolian Yin <bolian.yin@sun.com>

    * gui/e-cal-view.c: add new signal "selected_time_changed" 
    * gui/e-day-view-main-item.c (e_day_view_main_item_class_init):
    a11y initialization
    * gui/e-day-view-top-item (e_day_view_top_item_get_day_label):
    new public function.
    * gui/e-day-view.c (e_day_view_ensure_rows_visible,
    e_day_view_update_calendar_selection_time): make static functions public
    (e_day_view_cursor_key_up, e_day_view_cursor_key_down,
    e_day_view_cursor_key_left, e_day_view_cursor_key_right): emit
    "selected_time_changed".

2003-11-03  Ettore Perazzoli  <ettore@ximian.com>

    * gui/e-meeting-model.c (SELECT_NAMES_OAFID): Append "_2".
    * gui/e-select-names-editable.c (SELECT_NAMES_OAFIID): Likewise.
    * gui/e-meeting-list-view.c (SELECT_NAMES_OAFID): Likewise.
    * gui/dialogs/alarm-options.c (SELECT_NAMES_OAFID): Likewise.
    * gui/dialogs/e-delegate-dialog.c (SELECT_NAMES_OAFID): Likewise

2003-11-03  Ettore Perazzoli  <ettore@ximian.com>

    * gui/GNOME_Evolution_Calendar.server.in.in: use
    "evolution2:config_item" properties instead of
    "evolution:config_item" ones.

2003-11-03  Harry Lu  <harry.lu@sun.com>

    Fix for #50387.

    * importers/icalendar-importer.c (support_format_fn):
    Call icalcomponent_is_valid() to check whether the returned
    icalcomponent is valid.

2003-10-31  Hans Petter Jansson  <hpj@ximian.com>

    * gui/calendar-component.c (calendar_component_init): Add the webcal
    source group.

    * gui/dialogs/new-calendar.c (print_uri_noproto): Implement.
    (group_is_remote): Implement.
    (create_new_source_with_group): Implement webcal case.
    (new_calendar_dialog): Get optional location from dialog.

    * gui/dialogs/new-calendar.glade: Add location entry.

    * pcs/Makefile.am: Build http backend.

    * pcs/cal-backend-http.[ch]: Add skeleton based on cal-backend-file.

2003-10-31  Dan Winship  <danw@ximian.com>

    * cal-util/cal-util.h: Add CAL_STATIC_CAPABILITY_NO_THISANDFUTURE
    and CAL_STATIC_CAPABILITY_NO_THISANDPRIOR

    * gui/dialogs/recur-comp.c (recur_component_dialog): Add a
    CalClient argument. Use cal_client_get_static_capability to decide
    whether or not to offer THISANDFUTURE and THISANDPRIOR options

    * gui/dialogs/comp-editor.c (prompt_to_save_changes, save_cmd,
    save_close_cmd): Pass a CalClient to recur_component_dialog.

    * gui/e-day-view.c (e_day_view_finish_long_event_resize,
    e_day_view_finish_resize, e_day_view_on_editing_stopped,
    e_day_view_on_top_canvas_drag_data_received,
    e_day_view_on_main_canvas_drag_data_received): Likewise

    * gui/e-week-view.c (e_week_view_on_editing_stopped): Likewise

    * gui/calendar-component.c (impl_createControls): set an exception
    if we fail, so evo won't crash.

2003-10-31  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): fixed
    mismatched condition in if/else statement.

2003-10-30  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-tasks.[ch] (e_tasks_get_cal_client): removed.

    * gui/tasks-control.c (sensitize_commands): fixed to work correctly
    with the ECalView's model.
    (tasks_control_set_property): don't use e_tasks_get_cal_client.

    * gui/alarm-notify/alarm-notify.c (free_client_hash): new function
    to remove items from the CalClient's hash table.
    (alarm_notify_finalize): call free_client_hash() for each item
    in the hash table.

2003-10-30  Rodrigo Moya <rodrigo@ximian.com>

    * gui/alarm-notify/notify-main.c (client_die_cb): use
    bonobo_main_quit, not gtk_main_quit.

    * gui/alarm-notify/alarm-queue.c (free_client_alarms_cb): callback
    for freeing ClientAlarms stored in the hash table.
    (alarm_queue_done): call free_client_alarms_cb() for each opened
    client.

2003-10-30  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (mark_dirty, save_idle): removed, since
    we dont save the file anymore in idle callbacks.
    (cal_backend_file_dispose): removed all traces of the idle saving.
    (check_dup_uid, create_cal, cal_backend_file_add_timezone,
    cal_backend_file_create_object, cal_backend_file_modify_object,
    cal_backend_file_remove_object, cal_backend_file_receive_objects):
    call save() directly instead of mark_dirty().

2003-10-30  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (cal_backend_file_modify_object):
    implemented THIS and ALL recurrences cases, blowing away or detaching
    recurrences from the main component as required.
    (get_rid_string): make it return const.
    (get_rid_timetype): new convenience function for getting
    libical's recurrence ID from a CalComponent.
    (cal_backend_file_is_read_only, remove_recurrence_cb,
    remove_component): fixed warnings.
    (remove_object_instance_cb): callback to remove the instances
    from the hash on the THISANDPRIOR and THISANDFUTURE cases.
    (cal_backend_file_remove_object): replaced mismatched if/else
    statement with proper management of each of the recurrence cases.

2003-10-29  JP Rosevear <jpr@ximian.com>

    * gui/Makefile.am: build new files

    * gui/dialogs/comp-editor-util.c (date_edit_destroy_cb): unref the
    config manager
    (comp_editor_new_date_edit): set up a config manager for the date
    editor

    * gui/e-date-edit-config.[hc]: config manager for e-date-edit

2003-10-29  JP Rosevear <jpr@ximian.com>

    * gui/dialogs/cal-prefs-dialog.c (update_config): no need to
    update config settings everywhere explicitly

    * gui/tasks-component.c (update_uris_for_selection): cast the
    widget

    * gui/gnome-cal.h: remove proto

    * gui/gnome-cal.c (setup_widgets): don't update config settings
    explicitly
    (gnome_calendar_update_config_settings): kill

    * gui/e-week-view.c: remove null chars

    * gui/e-tasks.h: remove proto

    * gui/e-tasks.c (set_timezone): set the timezone on the client
    (timezone_changed_cb): changed timezone callback
    (setup_config): setup config stuff
    (e_tasks_init): setup config and widgets here
    (e_tasks_new): construct is dead, no need to track all widgets
    (cal_opened_cb): set the timezone upon opening
    (e_tasks_update_all_config_settings): kill

    * gui/control-factory.c (control_factory_new_control): create the
    calendar ourselves

    * gui/calendar-config.c (on_timezone_set): don't update the
    settings everywhere here, we have config managers now

    * gui/calendar-component.c (impl_createControls): create the
    calendar ourselves

    * gui/calendar-commands.h: remove protos

    * gui/calendar-commands.c: remove dead functions

2003-10-29  JP Rosevear <jpr@ximian.com>

    * gui/e-day-view-config.c (set_twentyfour_hour): set the format on
    the cal view

    * gui/e-week-view-config.c (set_twentyfour_hour): ditto
    
    * gui/e-cal-list-view-config.c (set_twentyfour_hour): set the 24
    hour format on the view
    (twentyfour_hour_changed_cb): 24 hour format change callback
    (e_cal_list_view_config_set_view): handle 24 hour format changes

2003-10-29  JP Rosevear <jpr@ximian.com>

    * gui/dialogs/recurrence-page.c (recurrence_page_finalize): unref
    config manager
    (init_widgets): create config manager for the e-calendar

    * gui/e-tasks.c (setup_widgets): create config manager for the
    table view
    (e_tasks_destroy): unref config manager
    (e_tasks_open): return FALSE not NULL
    (e_tasks_update_all_config_settings): don't configure the calendar
    table here, we have a manager

    * gui/calendar-config.c: remove dead config functions (handled by
    config managers now)

2003-10-29  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (set_timezone): set the timezone for all clients
    (timezone_changed_cb): callback for changes
    (setup_config): setup the configuration
    (setup_widgets): setup up configuration managers for the list
    view, task list and date navigator
    (gnome_calendar_init): setup config
    (gnome_calendar_destroy): destroy configuration managers and
    notifications
    (gnome_calendar_update_config_settings): remove dead bits

    * gui/e-mini-calendar-config.[hc]: manage configuration of an
    e-calendar

    * gui/e-day-view-config.h: remove extraneous comment, type the
    parent class correctly

    * gui/e-week-view-config.h: ditto
    
    * gui/e-day-view-config.c (e_day_view_config_class_init): type the
    class correctly
    (set_timezone): set timezone
    (timezone_changed_cb): timezone changed callback
    (e_day_view_config_set_view): track timezone changes

    * gui/e-week-view-config.c: ditto
    
    * gui/e-cell-date-edit-config.[hc]: manage configuration of a date
    edit cell

    * gui/e-calendar-table-config.[hc]: manage configuration of a
    e-calendar-table

    * gui/e-cal-list-view.c (get_current_time_cb): use the view
    timezone to compute

    * gui/e-cal-list-view-config.[hc]: manage configuration of a
    list view

    * gui/calendar-config.h: update protos

    * gui/calendar-config.c
    (calendar_config_add_notification_timezone): notify of timezone
    change
    (calendar_config_add_notification_dnav_show_week_no): notify of
    show week number setting change

    * gui/calendar-component.c (calendar_component_peek): remove bad
    comma

    * gui/Makefile.am: build new config classes

2003-10-29  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (fill_popup_menu_callback): fixed
    typo in menu item label.

    * gui/e-cal-model.[ch] (e_cal_model_get_use_24_hour_format): new
    function.

    * gui/e-cal-view.[ch]: no need to keep the 'use_24_hour' setting,
    it's already in the model.
    (e_cal_view_get_use_24_hour_format,
    e_cal_view_set_use_24_hour_format): new functions.

    * gui/e-day-view.[ch] (e_day_view_get_24_hour_format,
    (e_day_view_set_24_hour_format): removed.
    (e_day_view_convert_time_to_display, e_day_view_update_event_label,
    e_day_view_get_time_string_width): use the ECalView's function to
    get the 24 hour format.

    * gui/e-week-view.[ch] (e_week_view_get_24_hour_format,
    e_week_view_set_24_hour_format): removed.
    (e_week_view_convert_time_to_display,
    e_week_view_get_time_string_width): use the ECalView's function
    to get the 24 hour format.

    * gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
    * gui/e-day-view-time-item.c (e_day_view_time_item_draw):
    * gui/e-week-view-event-item.c (e_week_view_draw_time):
    don't use the view's use_24_hour_format, but the ECalView method.

2003-10-28  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (impl_createControls): connect to
    "fill_popup_menu" on the ESourceSelector.
    (fill_popup_menu_callback): add popup menu items here.
    (add_popup_menu_item): new function to add items to the
    popup menu.
    (new_calendar_cb): callbacks for the popup menu items.

2003-10-28  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c: no need to keep the timezone here, it is
    already stored in the model.
    (e_cal_view_get_timezone): call e_cal_model_get_timezone().
    (e_cal_view_set_timezone): call e_cal_model_set_timezone().
    (e_cal_view_new_appointment_for): use the model's timezone.

2003-10-27  Dan Winship  <danw@ximian.com>

    * pcs/cal-backend.c (cal_backend_notify_object_created,
    cal_backend_notify_object_modified,
    cal_backend_notify_object_removed): New; tell each query about a
    created/modified/removed object.

    * pcs/cal.c (cal_notify_object_created): Use
    cal_backend_notify_object_created.
    (cal_notify_object_modified, cal_notify_object_removed): Likewise
    for modified/removed
    (cal_notify_objects_received): we need both the before and after
    forms for the modified objects so they can be resolved as
    adds/modifies/removes per-query. But the caller can just call the
    cal_backend_* routines for each object anyway, so just remove the
    created/modified/removed lists.

    * pcs/cal-backend-sync.c (cal_backend_sync_receive_objects):
    Remove created/modified/removed list arguments.
    (_cal_backend_receive_objects): Likewise.

    * pcs/cal-backend-file.c (cal_backend_file_receive_objects):
    Remove created/modified/removed list arguments. Replace the one
    use of *removed with a call to cal_backend_notify_object_removed.

2003-10-27  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (setup_widgets): store config objects as well
    (gnome_calendar_set_default_uri): return FALSE if the
    pre-condition fails
    (gnome_calendar_update_config_settings): remove settings that are
    now handled by the config objects

    * gui/e-week-view.c (e_week_view_set_compress_weekend): queue a
    draw

    * gui/e-itip-control.c (start_default_server): comment out

    * gui/e-day-view-config.[hc]: a class to track config changes of
    interest to day views

    * gui/e-week-view.[hc]: ditto for week views
    
    * gui/calendar-config.h: add protos

    * gui/calendar-config.c: use the #defines for the keys and add
    notification routines

    * gui/calendar-config-keys.h: a list of defines for gconf keys

    * gui/Makefile.am: build new files

2003-10-27  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.h: changed fill_component_from_model virtual
    method to get an ETableModel, not an ECalModel.

    * gui/e-cal-model.c (ecm_append_row): the source model sent from
    ETable is an ETableModel, not an ECalModel.

    * gui/e-cal-model-calendar.c (ecmc_fill_component_from_model):
    get an ETableModel for the 'source_model' argument.

    * gui/e-cal-model-tasks.c (ecmt_fill_component_from_model): ditto.

2003-10-27  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-component.c (add_uri_for_source): pass FALSE as the
    'only_if_exists' parameter, so that the calendar gets created when
    it still does not exist.

2003-10-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/tasks-component.c (tasks_component_init): initialize private
    structure on TasksComponent.

2003-10-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (calendar_component_class_init): removed
    repeated initialization.
    (calendar_component_peek): use G_STRLOC for g_warning's.

    * gui/tsaks-control.[ch] (tasks_control_activate,
    tasks_control_deactivate): made these 2 functions public.

    * gui/tasks-component.[ch]: implementation of the tasks component.

    * gui/Makefile.am:
    * gui/GNOME_Evolution_Calendar.server.in.in: added tasks component.

    * gui/main.c: ditto.
    (factory): added code to create the tasks component when requested.

2003-10-24  Dan Winship  <danw@ximian.com>

    * cal-client/cal-client.c (cal_client_get_changes): Remove type arg

    * conduits/calendar/calendar-conduit.c (pre_sync, post_sync):
    Update for that

    * conduits/todo/todo-conduit.c (pre_sync, post_sync): Likewise

    * idl/evolution-calendar.idl (getChanges): Remove type arg.

    * pcs/cal.c (impl_Cal_getChanges): Likewise

    * pcs/cal-backend.c (cal_backend_get_changes): Likewise

    * pcs/cal-backend-sync.c (cal_backend_sync_get_changes): Likewise

    * pcs/cal-backend-file.c (cal_backend_file_get_changes): Update
    for that

    * pcs/Makefile.am: build libpcs.la and libpcsfile.la instead of
    just .a.
    (libpcs_la_LIBADD): depend on libcal-util.la and libeutil.la
    (libpcsfile_la_LIBADD): depend on libpcs.la

2003-10-24  Rodrigo Moya <rodrigo@ximian.com>

    * cal-util/cal-util.[ch] (cal_util_construct_instance,
    cal_util_remove_instances): new functions for individual
    instances management.

    * pcs/cal-backend-file.c (cal_backend_file_get_object): if we
    dont have a recurrence in our hash table, generate one for the
    specified recurrence ID.
    (match_recurrence_sexp): new function to match recurrences on
    regular expresessions.
    (match_object_sexp): call match_recurrence_sexp() for all recurrences.
    (cal_backend_file_modify_object): handle mod_types.
    (cal_backend_file_remove_object): handle mod_types.

2003-10-24  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.h: update protos

    * gui/gnome-cal.c (gnome_calendar_set_default_uri): set the
    default client based on uri

    * gui/calendar-component.c (add_uri_for_source): rename from
    load_uri_for_source and take a calendar
    (remove_uri_for_source): utility routine to remove the source's
    uri from the calendar
    (is_in_selection): checks to see if the uid of the given source
    matches any of those in the given selection
    (update_uris_for_selection): remove any uris no longer in the
    selection, add those that still exist
    (source_selection_changed_callback): call above
    (primary_source_selection_changed_callback): we have the calendar
    easily now; set the default by uri
    (control_activate_cb): handle activation and de-activation
    (impl_createControls): create the calendar control ourselves so we
    have access to the calendar
    (impl_dispose): release the source selection

2003-10-23  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (add_component): if the component received
    is an instance, add it to the recurrences hash table.
    (free_recurrence): callback for g_hash_table_foreach() to free
    the recurrences in the CalBackendFileObject structure.
    (free_object): call free_recurrence for each recurrence.
    (remove_recurrence_cb): g_hash_table_foreach() callback to
    remove recurrences from the calendar.
    (remove_component): remove all recurrences.
    (cal_backend_file_open): check write access on the file, and
    set read_only flag appropriately.
    (cal_backend_file_is_read_only): return the private flag.
    (cal_backend_file_init): initialize read_only flag.
    (cal_backend_file_get_object): deal with recurrences.

    * gui/alarm-notify/notify-main.c (main): unref the alarm
    notification service when terminating.
    (client_die_cb): call bonobo_main_quit instead of gtk_main_quit.

2003-10-23    <jpr@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_get_current_view_widget): just
    uses the views array and the current view type
    (setup_widgets): ditto
    (set_view): ditto
    (backend_died_cb): ditto
    (gnome_calendar_get_calendar_model): ditto
    (gnome_calendar_update_config_settings): ditto

2003-10-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c: accept also text/calendar for D&D.

2003-10-23  JP Rosevear <jpr@ximian.com>

    * gui/e-day-view.c (e_day_view_on_top_canvas_drag_data_received):
    fix typo
    (e_day_view_on_main_canvas_drag_data_received): fix C99 issue, fix
    typo

2003-10-23  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (update_query): use the internal client list to
    create the queries
    (gnome_calendar_destroy): use the internal client list to
    disconnect signal handlers
    (gnome_calendar_add_event_uri): add the client to the internal
    list
    (gnome_calendar_remove_event_uri): remove the client from the
    internal list and lookup the client
    (gnome_calendar_update_config_settings): use the internal client
    list to update the config settings

2003-10-23  Harry Lu  <harry.lu@sun.com>

    * cal-client/cal-client.c: (cal_client_get_timezone): remove and free
    op before return.

    * gui/e-cal-view.c (e_cal_view_add_event): modified from
    selection_received_add_event() so that it call be called out of
    e-cal-view.c.
    (selection_received): modified to call e_cal_view_add_event().

    * gui/e-cal-view.h: add declaration for e_cal_view_add_event().

    * gui/e-day-view.c (e_day_view_on_drag_data_get): Provide a
    icalcomponent for both TARGET_CALENDAR_EVENT and TARGET_VCALENDAR.
    (e_day_view_on_top_canvas_drag_data_received): If dragging between
    different windows, make it works like a copy and paste.
    (e_day_view_on_main_canvas_drag_data_received): ditto.

2003-10-23  JP Rosevear <jpr@ximian.com>

    * cal-util/cal-recur.c: update g_date calls to non-deprecated
    calls

    * cal-util/Makefile.am: turn off deprecated funcs

    * cal-client/Makefile.am: turn off deprecated funcs

    * cal-client/cal-client.c (cal_client_get_error_message): add OK
    message

    * pcs/cal-backend.[hc]: remove dead funcs

    * pcs/query.c: tidy headers

2003-10-23  JP Rosevear <jpr@ximian.com>

    * pcs/query.c (query_notify_objects_removed_1): Fix c/p typo -
    call removed instead of modify

2003-10-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (e_cal_view_init): connect also to ETableModel's
    "model_cell_changed" signal.
    (e_cal_view_set_model): likewise.
    (model_cell_changed_cb): callback for "model_cell_changed".
    (e_cal_view_destroy): use g_signal_handlers_disconnect_matched instead
    of g_signal_handlers_disconnect_by_func, so that all handlers are
    disconnected.

2003-10-23  JP Rosevear <jpr@ximian.com>
 
    * pcs/cal.c (cal_notify_object_modified): guard against irrelevant
    args (ie if there was an error) 
    (cal_notify_object_removed): ditto
    (cal_notify_timezone_added): ditto
 
    * pcs/cal-backend-sync.c (_cal_backend_is_read_only): init value
    to something known
    (_cal_backend_get_cal_address): ditto
    (_cal_backend_get_alarm_email_address): ditto
    (_cal_backend_get_ldap_attribute): ditto
    (_cal_backend_get_static_capabilities): ditto
    (_cal_backend_modify_object): ditto
    (_cal_backend_remove_object): ditto
    (_cal_backend_get_object_list): ditto
 
2003-10-22  JP Rosevear <jpr@ximian.com>
 
    * gui/e-cal-list-view.c (e_cal_list_view_new): create a model and
    pass it as an arg during creation
 
    * gui/e-day-view.c (e_day_view_new): unref the model
 
    * gui/e-week-view.c (e_week_view_new): ditto
    
2003-10-22  JP Rosevear <jpr@ximian.com>
 
    * cal-client/cal-client.c (cal_client_get_object): only change to
    invalid object error code if we got the object but couldn't parse
    it, and only check for timezones if we had success
 
    * gui/comp-util.c (cal_comp_is_on_server): don't throw a warning
    if the object simply does not exist
    
2003-10-22  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.[ch] (gnome_calendar_remove_event_uri): new
    function to remove calendars from the views.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * gui/GNOME_Evolution_Calendar.server.in.in: Add an
    "evolution:button_icon" attribute.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * gui/GNOME_Evolution_Calendar.server.in.in: Add an
    "evoution:button_sort_order" attribute.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * gui/calendar-component.c (impl_createControls): Make the
    scrolled window have a GTK_SHADOW_IN shadow.
    * gui/dialogs/meeting-page.c (meeting_page_construct): Likewise.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * gui/calendar-component.c (impl_createControls): Set the
    scrollbar policy to "automatic" for both the horizontal and
    vertical scrollbars around the source selector.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * gui/GNOME_Evolution_Calendar.server.in.in: Add an
    "evolution:button_label" property on the component for use in the
    shell.

2003-10-21  Rodney Dawes  <dobey@ximian.com>

    * cal-client/Makefile.am: Fix typo in libcal_client_la_SOURCES
    
2003-10-21  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (calendar_component_init): fixed
    a leak caused by only freeing 'base_uri' in some cases.

2003-10-21  JP Rosevear <jpr@ximian.com>

    * gui/control-factory.c (get_prop): fix parse error
    (set_prop): gnome_calendar_open was renamed

    * conduits/todo/todo-conduit.c (start_calendar_server): adapt to
    the cal_client_new changes and the lack of a default calendar
    routine
    (pre_sync): don't have to pass a type for the default object any
    more

    * conduits/calendar/calendar-conduit.c (start_calendar_server):
    adapt to the cal_client_new changes and the lack of a default
    calendar routine
    (pre_sync): don't have to pass a type for the default object any
    more

    * cal-client/cal-client.c (cal_client_open_async): add FIXME
    comment

2003-10-21  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c: store recurrences per object.
    (free_object): free correctly the CalBackendFileObject's
    contained in 'priv->comp_uid_hash'.
    (lookup_component, check_dup_uid, add_component, remove_component,
    match_object_sexp):
    adapted to changes in comp_uid_hash.
    
2003-10-20  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.[ch] (gnome_calendar_add_event_uri): renamed
    from gnome_calendar_open.

    * gui/calendar-component.c (load_uri_for_source): call
    gnome_calendar_add_event_uri instead of setting the URI property on
    the Bonobo control.

2003-10-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/migration.c (process_calendar_dir): process subfolders.

2003-10-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/migration.[ch] (migrate_old_calendars): new function.

    * gui/calendar-component.c (calendar_component_init): call
    the above function to migrate from old setups.

    * gui/Makefile.am: added new files.

2003-10-17  Jeffrey Stedfast <fejj@ximian.com>
    
    * conduits/calendar/Makefile.am: Fixed for libical build changes.

    * conduits/todo/Makefile.am: Same.

2003-10-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (on_print): call
    e_cal_view_get_visible_time_range, not the gnome_calendar_
    version.
    (e_cal_view_new_appointment_for, e_cal_view_new_appointment,
    e_cal_view_edit_appointment): new functions.

    * gui/gnome-cal.[ch] (gnome_calendar_new_appointment_for,
    gnome_calendar_new_appointment, gnome_calendar_edit_object):
    removed these functions, now available in e-cal-view.

    * gui/calendar-commands.c:
    * gui/e-day-view.c:
    * gui/e-week-view-event-item.c:
    * gui/e-week-view.c: replaced calls to gnome_calendar_* with
    e_cal_view_* equivalents.

2003-10-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.[ch] (e_cal_view_get_default_category):
    (e_cal_view_set_default_category): new functions.
    (e_cal_view_destroy): free the default_category field.

    * gui/e-day-view.[ch] (e_day_view_set_default_category):
    removed obsolete function.
    (e_day_view_init, e_day_view_destroy, e_day_view_do_key_press):
    use the ECalView's default_category.

    * gui/e-week-view.[ch] (e_week_view_set_default_category):
    removed obsolete function.
    (e_week_view_init, e_week_view_destroy, e_week_view_do_key_press):
    use the ECalView's default_category.

    * gui/gnome-cal.c (gnome_calendar_set_query): set the query
    also on the list view by using the priv->views array.
    (search_bar_category_changed_cb, gnome_calendar_set_default_client):
    use the priv->views array.
    (gnome_calendar_get_calendar_model): return the model for the
    current view widget.
    (gnome_calendar_open): removed tasks opening code.

2003-10-16  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/new-calendar.c (new_calendar_dialog): if the user
    presses Cancel, just terminate.

2003-10-16  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (calendar_component_init): create
    directories for the newly-created calendars.

    * gui/dialogs/new-calendar.c (create_new_source_with_group): use
    e_mkdir_hier instead of mkdir.

2003-10-16  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-component.c (calendar_component_init): if no groups
    are present in the configuration, create the "On This Computer"
    group and the "Personal" and "Work" calendars on it.

    * gui/dialogs/new-calendar.c (new_calendar_dialog): moved the
    source creation...
    (create_new_source_with_group): ...here, and made the code create
    the directory for the new calendar.

2003-10-15  Hans Petter Jansson  <hpj@ximian.com>

    * gui/e-select-names-editable.c (e_selct_names_editable_get_address):
    EDestination -> EABDestination.

    * gui/gnome-cal.c (setup_widgets): evolution_dir -> ".evolution".

2003-10-15  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-select-names-editable.c (e_select_names_editable_get_address):
    use EABDestination instead of EDestination.

    * gui/gnome-cal.c (gnome_calendar_open): disabled tasks opening code.

2003-10-15  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-meeting-list-view.c: adapted to new addressbook API.

    * gui/e-meeting-store.c: adapted to new addressbook API.
    (find_zone): fixed usage of icalcomponent where an icalproperty
    is expected.
    (refresh_busy_periods): fixed call to cal_client_get_free_busy().

    * gui/e-meeting-time-sel.c (e_meeting_time_selector_construct):
    added missing variable.
    
2003-10-15  Jeffrey Stedfast  <fejj@ximian.com>

    * gui/dialogs/meeting-page.c: #include <gal/e-table/e-table.h>

2003-10-15  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-meeting-list-view.c (start_addressbook_server):
    updated to new addressbook API.
    (book_open_cb): removed unneeded function, since we load
    the local addressbook synchronously.

2003-10-15  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/Makefile.am: added missing header directories.

    * pcs/cal-factory.h: include <libical/ical.h>, not <ical.h>.

    * gui/dialogs/meeting-page.c: added missing headers.
    (meeting_page_construct): free 'backend_address' as returned
    by cal_client_get_cal_address(). Removed code to create the
    meeting model's ETable not removed with the merge.

    * gui/e-meeting-list-view.c: updated addressbook headers.

    * gui/gnome-cal.h: added missing ',' in the GnomeCalendarViewType
    enum.
    
2003-10-14  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c (e_day_view_update_query): dont set status
    messages here, already set in e_cal_view_update_query.
    (update_query): removed this function.
    (e_day_view_recalc_day_starts): call e_day_view_update_query,
    not update_query.

    * gui/e-week-view.c (e_week_view_update_query): dont set status
    messages here, already set in e_cal_view_update_query.

    * gui/gnome-cal.c (adjust_query_for_view): new function to adjust
    the query for the visible time range on a given view.
    (gnome_calendar_set_query): call adjust_query_for_view for each
    one of the views.

2003-10-14  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (e_cal_view_init): connect to signals on the
    model we create here, so that we get notifications for changes.

    * gui/gnome-cal.c (gnome_calendar_set_query): set the query
    on all models.
    (gnome_calendar_open): update the date navigator query.

2003-10-14  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal.c (cal_notify_timezone_requested): never send NULL
    strings to ORBit.

    * gui/e-cal-view.c (e_cal_view_create_popup_menu): removed
    unneeded variables. Also, fixed a typo that was making the
    menu options be disabled when they should be enabled.

2003-10-13  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.[ch] (e_cal_model_get_client_for_uri): new function.

    * gui/gnome-cal.[ch] (gnome_calendar_set_default_client): new function.

    * gui/calendar-component.c (primary_source_selection_changed_callback):
    set the default client on the calendar view to be the primary
    selection on the source list.

2003-10-13  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/new-calendar.c (new_calendar_dialog): set a default group
    on the calendar group option menu and create the source if all checks
    are passed.

2003-10-12  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/new-calendar.c (new_calendar_dialog): set up widgets
    loaded from the Glade file.

2003-10-10  Hans Petter Jansson  <hpj@ximian.com>

    * gui/Makefile.am (etspec_DATA): Add e-cal-list-view.etspec.
    (libevolution_calendar_la_SOURCES): Add e-cal-list-view.[ch].

    * gui/calendar-commands.c (show_list_view_clicked): Implement.
    (calendar_get_text_for_folder_bar_label): Add case for list view.
    Use month case and tweak it so it doesn't show "%d - %d" if the
    time span contains only one day.
    (verbs): Add list view.
    (pixmaps): Add list view.

    * gui/calendar-view-factory.c (calendar_view_factory_get_title):
    Add list view case.
    (calendar_view_factory_get_type_code): Add list view case.

    * gui/control-factory.c (get_prop): Add list view case.

    * gui/e-cal-model.c (get_classification): Fix to conform to updated
    libical.
    (ecm_set_value_at): Add missing break statements.
    (ecm_get_color_for_component): Add braces for clarity.

    * gui/gnome-cal.c (gnome_calendar_get_current_view_widget): Add
    list view case.
    (get_focus_location): Add list view case.
    (connect_list_view_focus): Implement.
    (setup_widgets): Set up list view.
    (gnome_calendar_direction): Add list view case.
    (set_view): Add list view case.
    (gnome_calendar_setup_view_menus): Add list view factory.
    (gnome_calendar_construct): Account for list view.
    (gnome_calendar_update_config_settings): Account for list view.
    (get_days_shown): Implement list view case.

    * gui/gnome-cal.h (GnomeCalendarViewType): Add list view.

    * gui/e-cal-list-view.[ch]: Implement ECalListView, subclassing
    ECalView.

2003-10-10  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/new-calendar.[ch]: added new widget, which implements
    the dialog to create new calendars.

    * gui/dialogs/new-calendar.glade: basic mockup of the dialog.

    * gui/dialogs/Makefile.am: added new files.

    * gui/calendar-commands.c (file_new_calendar_cb): open the new calendar
    dialog to allow user to create a new cal.

2003-10-10  Rodrigo Moya <rodrigo@ximian.com>

    * gui/control-factory.c (calendar_properties_init): pass the
    BonoboControl to get_prop/set_prop.
    (get_prop): obtain the GnomeCalendar from the control.
    (set_prop): ditto, and when the URI property is changed,
    sensitize the UI as approppriate.

    * gui/calendar-commands.c (calendar_control_sensitize_calendar_commands):
    made this function public.

    * gui/calendar-commands.h: added new prototype.

2003-10-10  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-commands.c (file_new_calendar_cb,
    file_new_appointment_cb, file_new_event_cb, file_new_meeting_cb,
    file_new_task_cb): callbacks for "New..." verbs.
    (sensitize_calendar_commands): sensitize new verbs, and made it
    sensitize correctly based on the set of clients currently loaded.
    (sensitize_taskpad_commands): likewise.

2003-10-09  Hans Petter Jansson  <hpj@ximian.com>

    * gui/e-cal-model.c (get_classification): Adapt to libical API changes.
    (ecm_set_value_at): Break after each case, so we don't set the passed value
    in more than one field.

2003-10-09  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (e_cal_view_delete_selected_occurrence):
    * cal-client/cal-client.c (cal_client_remove_object): added missing
    argument when calling cal_client_remove_object_with_mod().

2003-10-09  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: added missing 'rid' argument to the
    removeObject method.

    * cal-client/cal-client.c (cal_client_remove_object_with_mod):
    * pcs/cal-backend.h:
    * pcs/cal-backend.c (cal_backend_remove_object):
    * pcs/cal-backend-sync.h:
    * pcs/cal-backend-sync.c (cal_backend_sync_remove_object,
    _cal_backend_remove_object):
    * pcs/cal-backend-file.c (cal_backend_file_remove_object):
    * pcs/cal.c (impl_cal_removeObject): adapted to changes in IDL.

2003-10-09  Jeffrey Stedfast  <fejj@ximian.com>

    * cal-client/Makefile.am: INCLUDE path fixes for changes made to
    libical build.

    * cal-util/Makefile.am: INCLUDE path fixes for changes made to
    libical build.

    * cal-util/*.[c,h]: #include <libical/ical.h> instead of <ical.h>

    * gui/Makefile.am: INCLUDE path fixes for changes made to libical
    build.

    * gui/*.[c,h]: #include <libical/ical.h> instead of <ical.h>

    * gui/alarm-notify/Makefile.am: INCLUDE path fixes for changes
    made to libical build.

    * gui/alarm-notify/config-data.h: #include <libical/ical.h>
    instead of <ical.h>

    * gui/dialogs/Makefile.am: INCLUDE path fixes for changes made to
    libical build.

    * gui/dialogs/comp-editor-util.c: #include <libical/ical.h>
    instead of <ical.h>

    * gui/dialogs/e-delegate-dialog.c: #include <libical/ical.h>
    instead of <ical.h>

    * importers/Makefile.am: INCLUDE path fixes for changes made to
    libical build.

    * pcs/Makefile.am: INCLUDE path fixes for changes made to libical
    build.

    * pcs/cal.c: #include <libical/ical.h> instead of <ical.h>

2003-10-08  Harry Lu  <harry.lu@sun.com>

    * gui/dialogs/alarm-options.glade: Make repeat-quantity and
    repeat-value of alarm option dialog numeric only.

    * gui/dialogs/task-details-page.glade: Make percent-complete of
    task details dialog numeric only.

2003-10-08  Chris Toshok  <toshok@ximian.com>

    * gui/dialogs/e-delegate-dialog.c (e_delegate_dialog_construct):
    EDestination => EABDestination, and e_destination =>
    eab_destination.
    (e_delegate_dialog_get_delegate): same.
    (e_delegate_dialog_get_delegate_name): same.

    * gui/dialogs/comp-editor-util.c: remove unnecessary #include of
    e-destination.h.

    * gui/dialogs/alarm-options.c (alarm_to_malarm_widgets):
    EDestination => EABDestination, and e_destination =>
    eab_destination.
    (malarm_widgets_to_alarm): same.

    * gui/e-meeting-model.c (book_open_cb): track change to error
    return codes.
    (start_addressbook_server): use
    e_book_async_get_default_addressbook.
    (contacts_cb): rename cursor_cb to this, as we no longer get
    passed a cursur, and we don't need to check the email address
    since the query is now "is" instead of "contains".
    (refresh_busy_periods): use an "is" query, and use
    e_book_async_get_contacts instead of getting a CardCursor.
    (process_section): this takes an EABDestination** instead of a
    SimpleCardList*, which is gone.
    (select_names_ok_cb): get "destinations" instead of
    "simple_card_list".

2003-10-08  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (cal_client_is_read_only): fixed
    documentation comments.

    * gui/calendar-commands.c (sensitize_calendar_commands): figure
    out read-only menu items to disable based on the currently
    selected object's CalClient.

2003-10-08  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c: set better error m,essages on the
    E_CALENDAR_CHECK_STATUS macro.
    (cal_client_get_error_message): new function.

    * cal-client/cal-client.h: added new prototype.

    * gui/dialogs/comp-editor.c (save_comp): use the GError argument
    for the cal_client_create/_modify_object calls, and display the
    error message coming from the backend.

    * gui/comp-util.c (cal_comp_is_on_server): likewise.

2003-10-07  Dan Winship  <danw@ximian.com>

    * idl/evolution-calendar.idl (getDefaultObject): Remove the "type"
    arg; the backend knows what type it is

    * pcs/cal.c (impl_Cal_getDefaultObject): Likewise

    * pcs/cal-backend.c (cal_backend_get_default_object): Likewise

    * pcs/cal-backend-sync.c (cal_backend_sync_get_default_object,
    _cal_backend_get_default_object): Likewise

    * pcs/cal-backend-file.c (cal_backend_file_get_default_object):
    Likewise. (Use cal_backend_get_kind() instead.)

    * cal-client/cal-client.c (cal_client_get_default_object):
    Likewise

    * gui/comp-util.c (cal_comp_event_new_with_defaults,
    cal_comp_task_new_with_defaults): Update calls to
    cal_client_get_default_object().

    * pcs/cal-backend-sync.c (_cal_backend_get_static_capabilities):
    Use the right cal notification

2003-10-07  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (e_cal_model_create_component_with_defaults):
    dont clone NULL icalcomponent's.

2003-10-07  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (e_cal_model_get_default_client): make sure we
    always return a default client, if possible, since we rely on having
    a default client in many places.

    * gui/e-day-view.c (e_day_view_do_key_press): dont create event if
    e_cal_model_create_component_with_defaults returns NULL.

    * gui/e-week-view.c (e_week_view_do_key_press): dont create event if
    e_cal_model_create_component_with_defaults returns NULL.
    
2003-10-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (e_cal_model_create_component_with_defaults):
    make sure the component has always an UID.

    * gui/e-day-view.c  (e_day_view_find_event_from_uid):
    * gui/e-week-view.c (e_week_view_find_event_from_uid): check
    pointers passed to strcmp().

2003-10-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_open): added missing call to
    cal_client_open().

    * cal-client/cal-client.c (cal_client_new): fixed documentation
    comments.
    (cal_client_open): emit CAL_OPENED signal with appropriate status codes.
    (open_sync): dont emit CAL_OPENED signal, it's already emitted in
    cal_client_open().

2003-10-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/comp-editor-factory.c (open_client):
    * gui/gnome-cal.c (gnome_calendar_open, gnome_calendar_construct):
    * gui/calendar-offline-handler.c (backend_go_offline, backend_go_online,
    calendar_offline_handler_init): adapted to changes in cal_client and
    manage GError's returned by cal_client_open.

    * gui/e-itip-control.c: dont run anymore sub event loops.
    (start_calendar_server): use synchronous interface for opening calendars.
    (start_default_server): renamed it from *_async.
    (start_calendar_server_cb): removed unneeded function.
    (object_requested_cb): use sync interface.

    * gui/e-tasks.c (e_tasks_construct): dont create the CalClient here.
    (e_tasks_open): do it here, where we've got all the info needed.

    * importers/icalendar-importer.c (update_single_object): killed warning.
    (ical_importer_new, vcal_importer_new): don't create CalClient's here.
    (load_file_fn): create them here.
    (vcal_load_file_fn): and here.
    (gnome_calendar_import_data_fn): fixed usage of cal_client_*.

    * */*: integrated JP's changes for synchronous open's in cal_client
    and one model per view instead of one model for all views.
    
2003-10-02  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (cal_client_modify_object): return FALSE
    if the icalcomponent is NULL.

    * gui/e-day-view.c (e_day_view_finish_resize): commit sequence on
    CalComponent after changing start/end dates.

2003-10-01  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c (process_component):
    * gui/e-week-view.c (process_component): expand recurrences here.

2003-09-30  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (match_recurrence_sexp): removed.
    (match_object_sexp): dont expand recurrences here.

2003-09-30  Mike Kestner <mkestner@ximian.com>

    * cal-util/cal-util-marshal.list : new VOID:STRING,STRING,STRING
    * gui/Makefile.am : build the new view/store/renderer/editable
    * gui/e-select-names-renderer.* : new completion cell renderer
    * gui/e-select-names-editable.* : new completion cell editable
    * gui/e-meeting-model.* : killed. code reused in list-view/store
    * gui/e-meeting-store.* : port of EMeetingModel to GtkTreeModel
    * gui/e-meeting-list-view.* : GtkTreeView subclass for attendee lists
    * gui/e-meeting-time-sel.c : Use the new store/view
    * gui/e-meeting-time-sel-item.c : Use the new store/view
    * gui/dialogs/Makefile.am : don't install the etspec anymore.
    * gui/dialogs/event-editor.c : Use the new store/view.
    * gui/dialogs/meeting-page.c : Use the new store/view.
    * gui/dialogs/shedule-page.c : Use the new store/view.
    * gui/dialogs/task-editor.c : Use the new store/view.

2003-09-29  JP Rosevear <jpr@ximian.com>

    * conduits/todo/Makefile.am: link to libical-evolution

    * conduits/calendar/Makefile.am: ditto  
    
2003-09-26  JP Rosevear <jpr@ximian.com>

    * pcs/cal-backend.c (cal_backend_class_init): remove cal_added
    signal

2003-09-26  JP Rosevear <jpr@ximian.com>

    * pcs/cal.h: add protos

    * pcs/cal.c (cal_get_backend): accessor
    (cal_get_listener): ditto

    * pcs/cal-factory.c (impl_CalFactory_getCal): update to new
    routine name

    * pcs/cal-backend.h: add protos
    
    * pcs/cal-backend.c (cal_backend_init): init client mutex
    (cal_backend_finalize): destroy client mutex
    (cal_destroy_cb): just remove the client
    (listener_died_cb): remove the client, the listener died so it
    can't really do anything
    (last_client_gone): signal the last client gone
    (cal_backend_add_client): add a client with locking and listen for
    the death of the listener
    (cal_backend_remove_client): remove client

2003-09-26  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-sync.c (_cal_backend_create_object): only free the
    returned UID if it's not NULL.

    * pcs/cal.c (cal_notify_object_created): dont send NULL strings to
    ORBit code.

2003-09-26  Rodrigo Moya <rodrigo@ximian.com>

    * gui/comp-util.c (cal_comp_is_on_server): free the icalcomponent
    returned from cal_client_get_object, and return TRUE if we find
    the component on the backend.

    * gui/e-day-view.c (process_component):
    * gui/e-week-view.c (process_component): added missing case, so that
    we also display recurrent meetings starting before the time range and
    ending after the time range.

    * cal-client/cal-listener.c (impl_notifyReadOnly): pass the
    'read_only' argument to the signal callback correctly (a gboolean
    not a 'gboolean *').

    * gui/comp-editor-factory.c (resolve_pending_requests): removed
    the g_assert on 'oc->pending != NULL', since there are now cases
    (local calendar) where we get to call this function (cal_opened_cb)
    with no pending requests yet.

2003-09-25  JP Rosevear <jpr@ximian.com>

    * gui/calendar-commands.c (publish_freebusy_cmd): adapt to new
    get_free_busy api

    * conduits/calendar/calendar-conduit.c (post_sync): ditto
    (pre_sync): ditto

    * conduits/todo/todo-conduit.c (pre_sync): ditto
    (post_sync): ditto

    * gui/e-meeting-model.c (refresh_busy_periods): ditto

    * gui/e-itip-control.c (send_freebusy): ditto

    * gui/e-cal-view.c (on_publish): ditto

    * cal-client/cal-listener.h: add signals

    * cal-client/cal-listener.c (build_change_list): move here from
    cal-client.c
    (impl_notifyChanges): implement
    (build_free_busy_list): util to create the GList of free busy
    objects
    (impl_notifyFreeBusy): implement
    (cal_listener_class_init): set free busy and changes epv methods,
    add signals

    * cal-client/cal-client.h: update protos

    * cal-client/cal-client.c (cal_get_changes_cb): get changes call
    back
    (cal_get_free_busy_cb): get free busy call back
    (cal_client_init): listen for free busy and changes signals
    (cal_client_get_changes): convert to new threaded sync api
    (cal_client_get_free_busy): ditto

    * pcs/cal.h: add protos

    * pcs/cal.c: remove dead type conversion function
    (impl_Cal_getChanges): implement by just calling, no return stuff
    (impl_Cal_getFreeBusy): ditto
    (cal_notify_changes): do getChanges callback
    (cal_notify_free_busy): do getFreeBusy callback

    * pcs/cal-backend.h: update protos, vmethods
    
    * pcs/cal-backend.c (cal_backend_get_free_busy): call through
    (cal_backend_get_changes): ditto

    * pcs/cal-backend-sync.h: add vmethods, protos

    * pcs/cal-backend-sync.c (cal_backend_sync_get_changes): call
    through
    (cal_backend_sync_get_free_busy): ditto
    (_cal_backend_get_changes): backend implementation, notify
    (_cal_backend_get_free_busy): ditto
    (cal_backend_sync_class_init): set free busy and changes
    implementations

    * pcs/cal-backend-file.c (cal_backend_file_get_free_busy): convert
    to sync backend method
    (cal_backend_file_compute_changes_foreach_key): remove from the
    hash here
    (cal_backend_file_compute_changes): no need to build the sequence
    here
    (cal_backend_file_get_changes): convert to sync backend method
    (cal_backend_file_class_init): set sync backend methods for free
    busy and changes

    * idl/evolution-calendar.idl: convert getChanges and getFreeBusy
    to new async api

2003-09-25  JP Rosevear  <jpr@ximian.com>

    * pcs/cal-backend.h: remove dead result enums

    * pcs/cal-backend.c: fix comments

    * idl/evolution-calendar.idl: remove dead exceptions

2003-09-25  JP Rosevear <jpr@ximian.com>

    * pcs/cal.c (cal_notify_default_object): send back the empty
    string if the object is NULL
    (cal_notify_object): ditto

2003-09-25  JP Rosevear <jpr@ximian.com>

    * gui/comp-editor-factory.c (edit_existing): convert to api
    changes

    * conduits/todo/todo-conduit.c (local_record_from_uid): ditto
    (pre_sync): ditto

    * conduits/calendar/calendar-conduit.c (local_record_from_uid):
    ditto
    (pre_sync): ditto

    * importers/icalendar-importer.c (update_single_object): ditto

    * gui/dialogs/comp-editor.c (obj_updated_cb): ditto

    * gui/e-itip-control.c (get_real_item): ditto
    (find_server): ditto

    * gui/comp-util.c (cal_comp_is_on_server): ditto
    (cal_comp_event_new_with_defaults): ditto
    (cal_comp_task_new_with_defaults): ditto

    * cal-client/cal-listener.h: add signals

    * cal-client/cal-listener.c (impl_notifyDefaultObjectRequested):
    implement
    (impl_notifyObjectRequested): ditto
    (cal_listener_class_init): set above epv implementations, add signals

    * cal-client/cal-client.h: update protos

    * cal-client/cal-client.c (cal_default_object_requested_cb): get
    default object callback
    (cal_object_requested_cb): get object callback
    (cal_client_init): listen for get and get default object signals
    (cal_client_get_default_object): convert to new sync api
    (cal_client_get_object): ditto

    * pcs/cal.h: add protos

    * pcs/cal.c (impl_Cal_getDefaultObject): just call the backend, it
    does the notification now
    (impl_Cal_getObject): ditto
    (cal_notify_default_object): do getDefaultObject response
    (cal_notify_object): do getObject response

    * pcs/cal-backend.h: remove vmethods, protos

    * pcs/cal-backend.c: remove a couple of dead functions
    (cal_backend_class_init): get_object_component is no longer a
    vmethod
    (cal_backend_get_default_object): call through
    (cal_backend_get_object): ditto

    * pcs/cal-backend-sync.h: add protos, vmethods

    * pcs/cal-backend-sync.c (cal_backend_sync_get_default_object):
    call through
    (cal_backend_sync_get_object): ditto
    (_cal_backend_discard_alarm): pass correct params to
    cal_notify_discard_alarm
    (_cal_backend_get_default_object): call through and notify
    (_cal_backend_get_object): ditto
    (cal_backend_sync_class_init): set backend implementations

    * pcs/cal-backend-file.c (cal_backend_file_get_default_object):
    convert to sync backend method
    (cal_backend_file_get_object): ditto
    (cal_backend_file_compute_changes_foreach_key): just look up the
    component rather than using the backend vmethod
    (cal_backend_file_remove_object): return valid sync status codes
    (cal_backend_file_class_init): move get_object, get_default_object
    to sync class

    * idl/evolution-calendar.idl: convert getObject and
    getDefaultObject to new async idl

2003-09-25  JP Rosevear  <jpr@ximian.com>

    * pcs/cal.c (impl_Cal_discardAlarm): just call the backend
    function, it does the notification
    (cal_notify_alarm_discarded): notify of discard alarm call

    * pcs/cal-backend.h: update proto

    * pcs/cal-backend.c (cal_backend_discard_alarm): call through

    * pcs/cal-backend-sync.h: add proto, vmethod

    * pcs/cal-backend-sync.c (cal_backend_sync_discard_alarm): call
    through
    (_cal_backend_discard_alarm): call through and notify
    (cal_backend_sync_class_init): set discard alarm implementation

    * pcs/cal-backend-file.c (cal_backend_file_discard_alarm): match
    sync backend vmethod
    (cal_backend_file_class_init): set alarm vmethod implementation

    * idl/evolution-calendar.idl: switch discardAlarm to new api

    * gui/alarm-notify/alarm-queue.c (remove_queued_alarm): match new
    api

    * cal-client/cal-listener.h: add signal

    * cal-client/cal-listener.c (impl_notifyAlarmDiscarded): implement
    (cal_listener_class_init): add alarm, send, receive epv functions,
    alarm signal

    * cal-client/cal-client.h: update proto

    * cal-client/cal-client.c (cal_alarm_discarded_cb): discardAlarm
    callback
    (cal_client_init): listen to discard alarm signal
    (cal_client_discard_alarm): implement with new threaded sync api

2003-09-25  JP Rosevear <jpr@ximian.com>

    * idl/evolution-calendar.idl: remove unused user exceptions

2003-09-24  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-util.[ch] (cal_backend_util_fill_alarm_instances_seq):
    removed unneeded function.

2003-09-24  JP Rosevear  <jpr@ximian.com>

    * conduits/*/*.c: adjust to new timezone api calls

    * gui/*.c: ditto

    * gui/dialogs/*.c: ditto

    * cal-client/cal-listener.h: add new signals

    * cal-client/cal-listener.c (convert_status): convert invalid
    object as well
    (impl_notifyTimezoneRequested): implement
    (impl_notifyDefaultTimezoneSet): ditto
    (cal_listener_class_init): set epv implementations for timezone
    functions
    (cal_listener_class_init): create timezone response signals

    * cal-client/cal-client.h: update protos

    * cal-client/cal-client.c: fix return values all over the place
    (cal_get_timezone_cb): getTimezone response
    (cal_query_cb): setDefaultTimezone response
    (cal_client_init): listen for new response signals
    (cal_client_get_timezone): implement using new thread sync api
    (cal_client_ensure_timezone_on_server): use add timezone call
    (cal_client_set_default_timezone): oimplement using new thread sync
    api

    * cal-client/cal-client-types.h: add invalid object status code

    * idl/evolution-calendar.idl: getQuery no longer raises any user
    exceptions, remove dead types and exceptions

2003-09-24  JP Rosevear <jpr@ximian.com>

    * pcs/cal.h: new protos

    * pcs/cal.c (impl_Cal_getTimezone): call backend implementation
    (impl_Cal_addTimezone): ditto
    (impl_Cal_setDefaultTimezone): ditto
    (cal_class_init): set epv implementations of timezone functions
    (cal_notify_timezone_requested): notify of get timezone response
    (cal_notify_default_timezone_set): notify of default timezone
    being set

    * pcs/cal-backend.h: new vmethods, protos

    * pcs/cal-backend.c (cal_backend_class_init): init new timezone
    vmethods
    (cal_backend_get_timezone): call through
    (cal_backend_set_default_timezone): ditto
    (cal_backend_add_timezone): ditto
    (cal_backend_internal_get_default_timezone): ditto
    (cal_backend_internal_get_timezone): ditto

    * pcs/cal-backend-sync.h: add vmethods, protos

    * pcs/cal-backend-sync.c (cal_backend_sync_get_timezone): call
    through
    (cal_backend_sync_set_default_timezone): ditto
    (_cal_backend_set_default_timezone): call through and notify
    (_cal_backend_get_timezone): ditto
    (cal_backend_sync_class_init): set backend implementations for new
    funcs

    * pcs/cal-backend-object-sexp.c (func_occur_in_time_range): get
    time_t values based on the zone

    * pcs/cal-backend-file.c: reorg so we don't have to prototype
    everything
    (cal_backend_file_get_timezone): implement the sync backend way
    (cal_backend_file_add_timezone): ditto
    (cal_backend_file_set_default_timezone): ditto
    (cal_backend_file_internal_get_default_timezone): internal method,
    for sexp comparison
    (cal_backend_file_internal_get_timezone): ditto

    * idl/evolution-calendar.idl: convert timezone routines to async
    api

2003-09-23  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-object-sexp.c (func_occur_in_time_range): dont expand
    recurrences, since they are supposed to be expanded in the backends.
    (instance_occur_cb, resolve_tzid): removed unneeded functions.

    * pcs/cal-backend-file.c (cal_backend_file_add_timezone): guard against
    adding the timezone if it's already there.

2003-09-23  JP Rosevear <jpr@ximian.com>

    * pcs/cal.c (cal_notify_object_created): notify with the object,
    not the uid

    * gui/e-cal-model.c (add_new_client): don't listen for
    non-existent signal

2003-09-23  JP Rosevear <jpr@ximian.com>

    * cal-client/cal-client.h: remove dead proto

2003-09-23  JP Rosevear <jpr@ximian.com>

    * cal-client/cal-client.h: remove send result enum

    * gui/itip-utils.c (comp_server_send): use the new send_objects
    routine

2003-09-23  JP Rosevear <jpr@ximian.com>

    * cal-client/cal-client.h: remove send result enum

2003-09-23  JP Rosevear <jpr@ximian.com>

    * cal-client/cal-client.h: remove enum, protos

    * cal-client/cal-client.c: remove remove status enum typing

2003-09-23  Rodrigo Moya <rodrigo@ximian.com>

    * importers/icalendar-importer.c (update_objects): new function
    to manage the update of components, taking into account
    VTIMEZONE components.
    (process_item_fn, gnome_calendar_import_data_fn): use
    update_objects instead of cal_client_update_objects.

2003-09-23  JP Rosevear <jpr@ximian.com>

    * pcs/cal.h: update proto

    * pcs/cal.c (impl_Cal_addTimezone): just call add_timezone, it
    does the notification
    (cal_notify_object_created): only notify the query if the object
    matches
    (cal_notify_object_removed): ditto

    * pcs/cal-backend.h: update proto, vmethod

    * pcs/cal-backend.c (cal_backend_add_timezone): returns void

    * pcs/cal-backend-sync.h: update proto, vmethod

    * pcs/cal-backend-sync.c (cal_backend_sync_remove_object): add the
    object as an out param
    (_cal_backend_remove_object): get the object and pass it in the
    notification

    * pcs/cal-backend-file.c (cal_backend_file_create_object): kill
    cal_backend_file_update_objects call, its more efficient to create
    the comp ourselves; stamp the creation time, add the component to
    the toplevel
    (cal_backend_file_modify_object): kill the
    cal_backend_file_update_objects call, add the component to the
    toplevel
    (cal_backend_file_remove_object): pass back the object when
    removing

2003-09-23  JP Rosevear  <jpr@ximian.com>

    * cal-client/cal-query.c (cal_query_finalize): disconnect the
    signal handlers

    * cal-client/cal-client.c (cal_client_get_query): unref the
    listener when done

2003-09-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (selection_received): add VTIMEZONE components
    contained in the clipboard data to the backend.

2003-09-22  JP Rosevear <jpr@ximian.com>

    * gui/dialogs/comp-editor.c (save_comp): modify and create instead
    of update, simplify mod code

2003-09-22  JP Rosevear <jpr@ximian.com>

    * gui/e-day-view.c (e_day_view_finish_long_event_resize): modify
    the object instead of update, simplify the instance handling
    (e_day_view_finish_resize): ditto
    (e_day_view_on_top_canvas_drag_data_received): ditto
    (e_day_view_on_main_canvas_drag_data_received): ditto

2003-09-22  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (cal_client_get_alarms_in_range): use
    'has-alarms' function in the search expression.

    * pcs/cal-backend-object-sexp.c (func_has_alarms): new SExp function.

2003-09-22  JP Rosevear <jpr@ximian.com>

    * gui/e-day-view.c (e_day_view_on_editing_stopped): create the
    object if its not on the server or modify it if it is

    * gui/e-week-view.c (e_week_view_on_editing_stopped): we return if
    there is no text and it *not* on the server

2003-09-22  JP Rosevear <jpr@ximian.com>

    * gui/e-week-view.c (e_week_view_on_editing_stopped): create the
    object if its not on the server or modify it if it is

2003-09-22  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.h: remove proto

    * gui/gnome-cal.c: remove gnome_calendar_unrecur_selection

    * gui/e-week-view.h: remove proto

    * gui/e-week-view.c: remove e_week_view_unrecur_appointment

    * gui/e-day-view.h: remove proto

    * gui/e-day-view.c: remove e_day_view_unrecur_appointment

    * gui/e-cal-view.c: remove on_unrecur_appointment (this is handled
    better via recurrence id's now)

2003-09-22  JP Rosevear <jpr@ximian.com>

    * gui/e-itip-control.c (update_attendee_status): ifdef out, leave
    temporarily for reference, but otherwise it shouldn't be needed
    (update_item): switch to using receive objects
    (ok_clicked_cb): update item when receiving a reply

    * gui/e-calendar-table.c (selection_received): switch to using
    create object from update_objects

    * gui/e-cal-view.c (selection_received_add_event): util routine to
    prevent duplication
    (selection_received): use above

    * gui/e-cal-model.c (ecm_set_value_at): switch to using modify
    object from update_objects
    (ecm_append_row): switch to using create object from
    update_objects

    * gui/e-cal-model-calendar.c (ecmc_set_value_at): switch to using
    modify object from update_objects

    * gui/e-cal-model-tasks.c (ecmt_set_value_at): ditto

2003-09-22  Hans Petter Jansson  <hpj@ximian.com>

    * cal-util/Makefile.am (libical_util_la_LIBADD):
    libical.la -> libical-evolution.la

    * importers/Makefile.am (libevolution_calendar_importers_la_LIBADD):
    libicalvcal.la -> libicalvcal-evolution.la

    
2003-09-19  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: removed getAlarmsInRange and
    getAlarmsForObject methods.

    * pcs/cal.c (impl_Cal_getAlarmsInRange, impl_Cal_getAlarmsForObject):
    removed unneeded CORBA methods.
    (cal_class_init): dont set removed methods in the epv.

    * pcs/cal-backend.[ch]: removed get_alarms_in_range and
    get_alarms_for_object virtual methods.
    (cal_backend_get_alarms_in_range, cal_backend_get_alarms_for_object):
    removed.
    (cal_backend_class_init): dont set removed virtual methods.

    * pcs/cal-backend-file.c (cal_backend_file_get_alarms_in_range,
    cal_backend_file_get_alarms_for_object): removed.
    (cal_backend_file_class_init): dont set removed virtual methods.

2003-09-19  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (cal_client_get_alarms_in_range): changed
    to use queries.
    (build_component_alarms_list): create the alarm list from a list
    of iCalendar strings.
    (build_alarm_instance_list): removed.
    (cal_client_get_alarms_for_object): dont call the CORBA methods,
    just get alarms by itself.

2003-09-18  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-listener.[ch]: added "add_timezone" signal.
    (impl_notifyTimezoneAdded): implemented new CalListener method.
    (cal_listener_class_init): create "add_timezone" signal for the class.

    * cal-client/cal-client.[ch] (cal_client_add_timezone): new function.
    (cal_client_init): connect to "add_timezone" signal on the
    CalListener.
    (cal_add_timezone_cb): callback for the "add_timezone" signal.

2003-09-18  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: added 'notifyTimezoneAdded' method
    to the Calendar::Listener interface.

    * pcs/cal-backend-sync.[ch] (cal_backend_sync_add_timezone):
    (_cal_backend_add_timezone): new functions for the new virtual
    method implementation.

    * pcs/cal.[ch] (cal_notify_timezone_added): new function.

    * pcs/cal-backend-file.c (cal_backend_add_timezone): converted to
    return a CalBackendSyncStatus.
    (cal_backend_file_class_init): the 'add_timezone' method we implement
    is the one in the CalBackendSync class.
    (cancel_receive_object): added missing 'return'.
    (free_cal_component): removed unused function.

2003-09-17  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (cal_backend_add_timezone): added new
    virtual method implementation.

    * pcs/cal.c (impl_Cal_addTimezone): check return value from
    cal_backend_add_timezone, and set an exception if an error is
    returned.

2003-09-16  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: added addTimezone method.

    * pcs/cal.c (impl_Cal_addTimezone): implemented new method.
    (cal_class_init): set new method on the epv.

    * pcs/cal-backend.[ch]: added 'add_timezone' virtual method.
    (cal_backend_add_timezone): implemented new virtual method.

    * pcs/cal-backend-file.c (cal_backend_file_modify_object): it's
    cal_component_get_as_string, not cal_component_as_string.

    * cal-client/cal-client.c (cal_client_ensure_timezone_on_server):
    dont use anymore updateObjects method, use addTimezone instead.
    
2003-09-16  Rodrigo Moya <rodrigo@ximian.com>

    * conduits/todo/Makefile.am: removed libwombat reference.

2003-09-15  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (cal_backend_file_create_object): return
    the UID of the added object.
    (cal_backend_file_remove_object): ditto for old_object.

2003-09-15  JP Rosevear <jpr@ximian.com>

    * conduits/todo/todo-conduit.c (replace_record): switch to modify
    object
    (add_record): switch to using create object

    * conduits/calendar/calendar-conduit.c (process_multi_day): switch
    to using create object
    (add_record): switch to using create object
    (replace_record): switch to modify object

    * cal-client/cal-listener.h: add signals

    * cal-client/cal-listener.c (impl_notifyObjectsReceived):
    implement listener method
    (build_object_list): ditto
    (cal_listener_class_init): create receive_objects and send_objects
    signals

    * cal-client/cal-client.h: add, update protos

    * cal-client/cal-client.c (cal_objects_received_cb):
    receive_objects callback
    (cal_objects_sent_cb): send_objects callback
    (cal_client_init): listen for above signals
    (cal_client_create_object): pass back uid
    (cal_client_receive_objects): implement
    (cal_client_send_objects): ditto

    * idl/evolution-calendar.idl: add receive/send objects methods and
    yank updateObjects

    * pcs/cal.h: add protos

    * pcs/cal.c (impl_Cal_receiveObjects): implement
    (impl_Cal_sendObjects): ditto
    (cal_class_init): add epv methods
    (cal_notify_objects_received): notify of objects received call,
    updating queries
    (cal_notify_objects_sent): notify of objects sent

    * pcs/cal-backend.h: remove proto

    * pcs/cal-backend.c (cal_backend_class_init): remove obj_updated
    signal
    (cal_backend_class_init): init vmethods properly
    (cal_backend_receive_objects): call through
    (cal_backend_send_objects): ditto

    * pcs/cal-backend-sync.h: add protos, vmethods

    * pcs/cal-backend-sync.c (cal_backend_sync_receive_objects): call
    through
    (cal_backend_sync_send_objects): ditto
    (_cal_backend_receive_objects): call backend method and notify
    (_cal_backend_send_objects): ditto
    (cal_backend_sync_class_init): override send/receive object
    vmethods

    * pcs/cal-backend-file.c (cal_backend_file_class_init): set
    remove/send objects sync vmethods
    (cal_backend_file_create_object): remove call to dead method
    (cal_backend_file_remove_object): ditto
    (cal_backend_file_modify_object): ditto
    (cancel_received_object): cancel an object
    (check_tzids): check we have all the tzid's for the object
    (cal_backend_file_receive_objects): receive a bunch of objects via
    itip
    (cal_backend_file_send_objects): skeleton implementation

2003-09-15  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: added InvalidObject CallStatus.

    * pcs/cal-backend-file.c (cal_backend_file_create_object): implemented.
    (cal_backend_file_modify_object): implemented.

2003-09-15  Harry Lu  <harry.lu@sun.com>

    * gui/apps_evolution_calendar.schemas: change last_notification_time's
    type from string to int.

2003-09-12  Bolian Yin <bolian.yin@sun.com>

    * e-week-view.c (e_week_view_focus): make jump button focusable
     (e_week_view_on_jump_button_event): key_press and focus event for jump button
     (e_week_view_jump_to_button_item): new function, jump to the day view.
     (e_week_view_is_jump_button_visible): new function.

    
2003-09-12  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal.c (cal_notify_cal_address, cal_notify_alarm_email_address,
    cal_notify_ldap_attribute, cal_notify_static_capability):
    make sure we always notify listeners, regardless of whether the
    string is empty or not.

    * cal-client/cal-client.c (check_capability): guard against using
    NULL strings with strstr.

2003-09-12  JP Rosevear <jpr@ximian.com>

    * cal-client/client-test.c (cal_opened_cb): listen for other query
    signals

    * cal-client/cal-listener.h: add signals

    * cal-client/cal-listener.c (impl_notifyObjectCreated): implement
    (impl_notifyObjectModified): implement
    (cal_listener_class_init): assign epv implementations
    (cal_listener_class_init): add create/modify object signals

    * cal-client/cal-client.h: add protos

    * cal-client/cal-client.c (cal_object_created_cb): object created
    callback
    (cal_object_modified_cb): object modified callback
    (cal_client_init): listen for create/modify object signals from
    the listener
    (cal_client_create_object): call the create object method
    (cal_client_modify_object): call the modify object method

    * cal-client/client-test.c (cal_opened_cb): listen for all the
    query signals, tidy

2003-09-12  JP Rosevear <jpr@ximian.com>

    * pcs/cal.c (impl_Cal_createObject): implement
    (impl_Cal_modifyObject): ditto
    (cal_class_init): set epv methods for create/modify

    * pcs/cal-backend.h: add protos, vmethod

    * pcs/cal-backend.c (cal_backend_class_init): init new vmethods
    (cal_backend_create_object): call through
    (cal_backend_modify_object): ditto

    * pcs/cal-backend-sync.h: add protos, vmethods

    * pcs/cal-backend-sync.c (cal_backend_sync_create_object): call
    through
    (cal_backend_sync_modify_object): ditto
    (_cal_backend_create_object): create object and notify
    (_cal_backend_modify_object): modify object and notify

    * pcs/cal-backend-file.c (cal_backend_file_create_object):
    skeleton routine for creating objects
    (cal_backend_file_modify_object): ditto for modifying

    * idl/evolution-calendar.idl: add createObject and modifyObject
    calls

2003-09-12  JP Rosevear  <jpr@ximian.com>

    * pcs/cal.c (cal_notify_object_removed): its uid, not uids

2003-09-12  JP Rosevear <jpr@ximian.com>

    * pcs/query.h: add protos

    * pcs/query.c (query_object_matches): use the sexp to check for a
    match
    (query_notify_objects_added_1): notify of one object added to
    query
    (query_notify_objects_modified_1): ditto for modification
    (query_notify_objects_removed_1): ditto for removal

    * pcs/cal.h: add protos

    * pcs/cal.c (cal_notify_object_created): notify of object creation
    (cal_notify_object_modified): notify of object modification
    (cal_notify_object_removed): use the _1 routines

    * pcs/cal-backend-file.c (match_recurrence_sexp): this returns a
    boolean
    (cal_backend_file_update_objects): don't signal removals here now

    * idl/evolution-calendar.idl: add object created and modified
    responses

    
2003-09-11  JP Rosevear <jpr@ximian.com>

    * pcs/cal.h: update proto

    * pcs/cal.c (cal_notify_object_removed): notify relevant queries
    of removal

    * pcs/cal-backend.c (cal_backend_get_queries): ref the list before
    passing it back

    * pcs/cal-backend-sync.c (_cal_backend_remove_object): pass uid to
    notification

2003-09-11  JP Rosevear <jpr@ximian.com>

    * pcs/cal-backend-file.c (match_recurrence_sexp): don't unref the
    component

    * cal-client/client-test.c (cal_opened_cb): listen to objects
    added signal
    (objects_added_cb): print the object uid
    
2003-09-11  JP Rosevear <jpr@ximian.com>

    * pcs/cal-backend-object-sexp.c (cal_backend_object_sexp_text):
    return the base text

2003-09-11  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (update_query): fix c/p typo

2003-09-11  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (update_query): start the query

    * gui/e-cal-model.c (update_query_for_client): ditto

    * cal-client/client-test.c (cal_opened_cb): ditto
    
2003-09-11  JP Rosevear <jpr@ximian.com>

    * cal-client/cal-query.h: add proto

    * cal-client/cal-query.c (cal_query_start): start the query

2003-09-11  JP Rosevear <jpr@ximian.com>

    * gui/dialogs/delete-error.c (delete_error_dialog): accept GError
    and base error messages on that

    * gui/dialogs/delete-error.h: update proto

    * gui/e-tasks.c (e_tasks_delete_completed): pass extra param to
    cal_client_remove_object

    * conduits/todo/todo-conduit.c (delete_record): ditto

    * conduits/calendar/calendar-conduit.c (process_multi_day): ditto
    (delete_record): ditto
    
    * gui/gnome-cal.c (gnome_calendar_purge): ditto

    * gui/dialogs/comp-editor.c (delete_comp): ditto
    
    * gui/e-cal-view.c (e_cal_view_cut_clipboard): pass the error to
    delete_error_dialog
    (delete_event): ditto
    (e_cal_view_delete_selected_occurrence): ditto
    
    * gui/e-itip-control.c (remove_item): ditto

    * gui/e-calendar-table.c (delete_selected_components): ditto

    * cal-client/cal-listener.h: add signal

    * cal-client/cal-listener.c (impl_notifyObjectRemoved): implement
    (cal_listener_class_init): set object removed implementation and
    create signal

    * cal-client/cal-client.h: update protos

    * cal-client/cal-client.c (cal_object_removed_cb): object removal
    callback
    (cal_client_init): listen for object removal signal
    (cal_client_remove_object_with_mod): make call synchronous
    (cal_client_remove_object): pass new params

    * pcs/cal.h: add proto

    * pcs/cal.c (impl_Cal_removeObject): just call the backend
    function
    (cal_notify_object_removed): notify of removal

    * pcs/cal-backend.h: remove and update protos, remove signal

    * pcs/cal-backend.c (cal_backend_class_init): kill obj_removed
    signal
    (cal_backend_remove_object): there is no return value now

    * pcs/cal-backend-sync.h: add vmethod, proto

    * pcs/cal-backend-sync.c (cal_backend_sync_remove_object): call
    through
    (_cal_backend_remove_object): remove the object and then do the
    notification

    * pcs/cal-backend-file.c (cal_backend_file_class_init): remove
    object is not part of the sync class
    (cal_backend_file_update_objects): there is no more removed signal
    (cal_backend_file_remove_object): return sync status codes

    * idl/evolution-calendar.idl: make removeObject oneway and and a
    notification method in the listener

2003-09-11  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/query.[ch] (query_get_text): new function.
    (query_get_object_sexp): new function.

    * pcs/cal-backend-file.c (cal_backend_file_start_query): implemented.

2003-09-11  Hans Petter Jansson  <hpj@ximian.com>

    * cal-util/Makefile.am (libcal_util_la_LIBADD):
    libical-evolution.la -> libical.la

    * cal-util/cal-component.c (cal_component_get_classification)
    (cal_component_set_classification)
    (get_text_list)
    (get_icaltimetype)
    (get_datetime)
    (get_period_list)
    (get_recur_list)
    (cal_component_get_transparency)
    (cal_component_set_transparency): Adapt to new libical.

    * cal-util/cal-util.c (cal_util_event_dates_match): Ditto.

    * pcs/cal-backend-file.c (create_user_free_busy): Ditto.

    * gui/e-cal-model-tasks.c (get_completed)
    (get_due)
    (get_due_status): Ditto.

    * gui/e-cal-model.c (get_dtstart)
    (set_classification): Ditto.

    * gui/e-cal-model-calendar.c (get_dtend)
    (get_transparency)
    (set_transparency): Adapt to new libical and fix a comparison bug.

    * importers/Makefile.am (libevolution_calendar_importers_la_LIBADD):
    libical-evolution.la -> libical.la

2003-09-11  Dan Winship  <danw@ximian.com>

    * cal-util/Makefile.am (privlib_LTLIBRARIES): Remove
    libcal-util-static.la

    * cal-client/Makefile.am (noinst_LTLIBRARIES): Remove
    libcal-client-static.la

    * conduits/calendar/Makefile.am (libecalendar_conduit_la_LIBADD):
    use non-static libraries. The static ones were only needed for
    libtool 1.3.

    * conduits/todo/Makefile.am (libetodo_conduit_la_LIBADD): Likewise

        * gui/Makefile.am (IDL_GENERATED): Don't compile the calendar idl
        here. It's already in libcal-client.

2003-09-11  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * conduits/todo/Makefile.am:
    Statically link with wombat. Fix ETodo conduit.
    (Mdk bug #5348)

    
2003-09-10  JP Rosevear  <jpr@ximian.com>

    * pcs/cal.h: update proto

    * pcs/cal.c (impl_Cal_getObjectList): just call the backend, it
    will do the notification now
    (cal_notify_object_list): the list is a list of strings

    * pcs/cal-backend.h: update vmethod, proto

    * pcs/cal-backend.c (cal_backend_get_object_list): call through

    * pcs/cal-backend-sync.h: add proto, vmethod

    * pcs/cal-backend-sync.c (cal_backend_sync_get_object_list): call
    through
    (_cal_backend_get_object_list): get the list of objects from the
    sync backend and do the notification
    (cal_backend_sync_class_init): set vmethod implementation

    * pcs/cal-backend-file.c (cal_backend_file_class_init): the get
    object list call is now part of the sync backend
    (cal_backend_file_get_object_list): return a status and put the
    object list in the passed in param

2003-09-10  JP Rosevear  <jpr@ximian.com>

    * pcs/cal-backend.c (cal_backend_finalize): unref the elist
    (cal_backend_init): init the query elist

2003-09-10  JP Rosevear <jpr@ximian.com>

    * gui/gnome-cal.c (dn_query_objects_added_cb): match new query
    signals - just tag here
    (dn_query_objects_modified_cb): always retag
    (dn_query_objects_removed_cb): ditto
    (update_query): connect to new signals
    (gnome_calendar_destroy): we don't keep a list of expunging
    queries
    (gnome_calendar_purge): no need to do the
    expunge async, just get the object list immediately

    * gui/e-tasks.c (e_tasks_delete_completed): no need to do the
    expunge async, just get the object list immediately

    * gui/e-cal-model.c (query_objects_added_cb): callback for objects
    added to the query
    (query_objects_modified_cb): ditto for modifications
    (query_objects_removed_cb): ditto for removed
    (query_progress_cb): progress of the query
    (query_done_cb): query is done
    (update_query_for_client): connect to the new signals

    * cal-client/client-test.c (cal_opened_cb): run a query

    * cal-client/cal-query.c: we are given the listener now - listen
    for signals from the listener and emit signals matching the api
    changes

    * cal-client/query-listener.[hc]: rewrite to match new query
    listener methods and emit signals rather than using function
    callbacks

    * cal-client/cal-marshal.list: add to marshallers

    * cal-client/cal-listener.h: add query signal

    * cal-client/cal-listener.c (impl_notifyQuery): implement
    (cal_listener_class_init): set notifyQuery method
    (cal_listener_class_init): add query signal

    * cal-client/cal-client.h: update protos

    * cal-client/cal-client.c (cal_query_cb): handle response to
    getQuery
    (cal_client_init): listen for query signal
    (cal_client_get_query): get a query from the calendar

    * pcs/query.h: update protos

    * pcs/query.c: rewrite to implement the query start method and
    provide notification calls

    * pcs/cal.h: add proto

    * pcs/cal.c (impl_Cal_getQuery): re-implement so the backend
    doesn't create the query for us
    (cal_notify_query): respond with the query

    * pcs/cal-factory.c: re-order includes

    * pcs/cal-common.h: add types

    * pcs/cal-backend.h: update protos, vmethods

    * pcs/cal-backend.c (cal_backend_class_init): init start_query
    vmethod
    (cal_backend_finalize): free mutex
    (cal_backend_start_query): call through
    (cal_backend_add_query): add a query to the list the backend is
    running
    (cal_backend_get_queries): get the query list

    * pcs/cal-backend-object-sexp.h: add proto

    * pcs/cal-backend-file.c (cal_backend_file_start_query): skeleton
    for new backend implementation

    * pcs/Makefile.am: don't build dead files

    * idl/evolution-calendar.idl: make the getQuery call async, make
    the query listener calls oneway and match the addressbook

2003-09-09  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (cal_backend_file_get_object_component):
    added case for getting the individual recurrences if 'rid' is
    not NULL,

2003-09-09  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (match_object_sexp): expand recurrences
    for recurrent objects.
    (match_recurrence_sexp): add the recurrences that match the query
    expression to the object list.

2003-09-08  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c: don't store all recurrences in the
    private structure.
    
2003-09-04  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c (process_component):
    * gui/e-week-view.c (process_component): dont expand recurrences,
    since they are now expanded by the backends.

2003-09-02  JP Rosevear <jpr@ximian.com>

    * gui/tasks-control.c (sensitize_commands): adapt to cal-client
    threaded sync api changes

    * gui/itip-utils.c (itip_organizer_is_user): ditto

    * gui/gnome-cal.c (gnome_calendar_purge): ditto

    * gui/e-meeting-model.c (process_section): ditto

    * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): ditto

    * gui/e-cal-view.c (e_cal_view_create_popup_menu): ditto

    * gui/calendar-commands.c (sensitize_calendar_commands): ditto
    (sensitize_taskpad_commands): ditto

    * gui/dialogs/task-editor.c (set_menu_sens): ditto

    * gui/dialogs/meeting-page.c (meeting_page_construct): ditto

    * gui/dialogs/event-editor.c (set_menu_sens): ditto

    * gui/dialogs/alarm-page.c (add_clicked_cb): ditto

    * conduits/calendar/calendar-conduit.c (pre_sync): convert to
    cal_client api changes

    * conduits/todo/todo-conduit.c (pre_sync): ditto
    
    * cal-client/client-test.c (list_uids): match new error handling

    * cal-client/cal-marshal.list: marshallers

    * cal-client/cal-listener.[hc]: emit signals for corba listener
    callbacks - start with is_read_only, get_static_capabilities,
    get_cal_address, get_ldap_attribute, open, remove and object_list

    * cal-client/cal-client.h: move the status enum away from here,
    update protos to new thread sync api standard

    * cal-client/cal-client.c: the listener emits signals instead of
    using callback functions now and we return booleans + GError in
    outs for results
    (e_calendar_error_quark): for GError handling
    (cal_read_only_cb): handle listener op callback
    (cal_cal_address_cb): ditto
    (cal_alarm_address_cb): ditto
    (cal_ldap_attribute_cb): ditto
    (cal_static_capabilities_cb): ditto
    (cal_opened_cb): ditto
    (cal_removed_cb): ditto
    (cal_object_list_cb): ditto

    * cal-client/cal-client-types.h: add GError stuff

    * cal-client/Makefile.am: build glib marshal stuff

    * pcs/query.c (backend_opened_cb): comment out some break
    temporarily

    * pcs/cal.h: add protos

    * pcs/cal.c (impl_Cal_open): just call the backend method, it will
    handle the notification
    (impl_Cal_remove): ditto
    (impl_Cal_isReadOnly): ditto
    (impl_Cal_getCalAddress): ditto
    (impl_Cal_getAlarmEmailAddress): ditto
    (impl_Cal_getLdapAttribute): ditto
    (impl_Cal_getStaticCapabilities): ditto
    (impl_Cal_getObjectList): simplify
    (cal_new): set poa to be threaded
    (cal_notify_read_only): notification utils
    (cal_notify_cal_address): ditto
    (cal_notify_alarm_email_address): ditto
    (cal_notify_ldap_attribute): ditto
    (cal_notify_static_capabilities): ditto
    (cal_notify_open): ditto
    (cal_notify_remove): ditto
    (cal_notify_object_list): ditto

    * pcs/cal-factory.c (impl_CalFactory_getCal): dup the key and the
    object
    (cal_factory_new): set poa to be threaded

    * pcs/cal-backend.h: update vmethods and protos

    * pcs/cal-backend.c (cal_backend_get_cal_address): we no longer
    return anything - the callee is responsible for notification
    (cal_backend_get_alarm_email_address): ditto
    (cal_backend_get_ldap_attribute): ditto
    (cal_backend_get_static_capabilities): ditto
    (cal_backend_open): ditto
    (cal_backend_remove): ditto

    * pcs/cal-backend-file.h: update inheritance

    * pcs/cal-backend-file.c: inherit from CalBackendSync and make
    is_read_only, get_static_capabilities, get_cal_address, get_ldap_attribute, open and
    remove match

    * pcs/Makefile.am: build new files

2003-09-02 JP Rosevear  <jpr@ximian.com>

    * idl/evolution-calendar.idl: make all listener callbacks one ways

2003-09-02  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (match_recurrence_sexp, match_object_sexp):
    new callbacks for g_hash_table_foreach in get_object_list.
    (cal_backend_file_get_object_list): don't use the priv->comp list
    to check the components, use the hash table, which contains all
    the recurrences already expanded.
    (add_component): only expand recurrences for recurrent components.

2003-09-01  Andrew Wu <Yang.Wu@sun.com>

    * gui/e-day-view.c:
    (e_day_view_change_event_end_time_up):
    (e_day_view_change_event_end_time_down): Use
    "ctrl+shift+alt+Up/Down" to change the end time of the editing
    event.

2003-08-29  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c (lookup_component): take into account the 'rid'
    argument.
    (get_rid_string): new function to convert the recurrence ID to string.
    (add_recurrence_to_object): callback for cal_recur_generate_instances.
    (add_component): expand recurrences and g_strdup the hash's key.
    (free_cal_component): free also the hash's key.
    
2003-08-28  Hans Petter Jansson  <hpj@ximian.com>

    * gui/alarm-notify/alarm-queue.c (tray_icon_blink_cb)
    (display_notification): Use images that come with Evolution instead
    of unreleased stock, for now.

2003-08-28  Hans Petter Jansson  <hpj@ximian.com>

    * gui/alarm-notify/util.[ch]: Added alarm-notify utils.

    * gui/alarm-notify/Makefile.am: Added alarm-notify utils.

    * gui/alarm-notify/alarm-notify-dialog.c (timet_to_str_with_zone):
    Move to util.c.

    * gui/alarm-notify/alarm-queue.c (notify_dialog_cb)
    (on_dialog_removed_cb)
    (notify_dialog_cb)
    (tray_icon_destroyed_cb)
    (tray_icon_clicked_cb)
    (tray_icon_blink_cb)
    (display_notification): Add Rodrigo Moya's code for tray icon
    notification of appointments, with some fixes and blink code by me.
    Requires HEAD gnome-icon-theme for now.

2003-08-27  Hans Petter Jansson  <hpj@ximian.com>

    Fixes #29032.

    * gui/dialogs/task-details-page.c (status_changed): When task status
    is set to "In Progress", set percent complete to 50% only if it was
    previously set to 0% or 100%.

2003-08-27  Bolian Yin <bolian.yin@sun.com>

    * gui/Makefile.am use libevolution-calendar-a11y instead of libevolution-a11y.

2003-08-26  Jack Jia  <jack.jia@sun.com>

    ** Fixes #47863.

    * gui/alarm-notify/alarm-notify.c (AlarmNotify_removeCalendar): set
    the initial value of lc_ptr and orig_str_ptr to NULL to avoid crash.


2003-08-26  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: QueryListener::notifyObjUpdated now gets
    a sequence of CalObj's.

    * pcs/query.c (add_component): send the whole object to the listener,
    not just the UID. Improved the way the listeners are notified, by allocating
    a CORBA sequence to be used for all listeners, not one for each.
    (match_component): pass the CalComponent to add_component, not only the UID.
    (start_cached_query_cb): send the whole object to the listener.

    * cal-client/cal-query.[ch]: changed argument names for "obj_updated"
    signal.
    (obj_updated_cb): pass the calobj's, not uid's.

    * gui/e-tasks.c (query_obj_updated_cb):
    * gui/gnome-cal.c (dn_query_obj_updated_cb, purging_obj_updated_cb):
    * gui/e-cal-model.c (query_obj_updated_cb): we now get the object's
    string representation instead of the UID.

2003-08-25  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (cal_client_get_object): added a 'rid' argument
    to match the IDL method.

    * conduits/calendar/calendar-conduit.c (local_record_from_uid):
    * conduits/todo/todo-conduit.c (local_record_from_uid):
    * gui/comp-editor-factory.c (edit_existing):
    * gui/comp-util.c (cal_comp_is_on_server):
    * gui/e-cal-model.c (query_obj_updated_cb):
    * gui/e-itip-control.c (find_server, get_real_item, update_attendee_status):
    * gui/gnome-cal.c (dn_query_obj_updated_cb, purging_obj_updated_cb):
    * gui/dialogs/comp-editor.c (obj_updated_cb): adapted to changes in
    cal_client_get_object().

2003-08-23  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/query-backend.c (object_updated_cb):
    * pcs/cal-backend.c (cal_backend_get_type_by_uid): use 'rid' parameter
    where appropriate.

    * pcs/cal-backend-file.c (check_dup_uid): removed unused variables.
    (cal_backend_file_compute_changes_foreach_key): pass a NULL 'rid'
    to cal_backend_get_object().
    (lookup_component): get a 'rid' argument also.
    (cal_backend_file_cancel_object, cal_backend_file_remove_object):
    pass correct number of parameters to lookup_component().

2003-08-22  Rodrigo Moya <rodrigo@ximian.com>

    * idl/evolution-calendar.idl: use UID/RID pairs to identify objects.

    * pcs/cal.c (impl_Cal_getObject): added 'rid' parameter.

    * pcs/cal-backend.c (cal_backend_get_object): added 'rid' parameter.
    (cal_backend_get_object_component): ditto.
    (get_object): ditto.

    * pcs/cal-backend-file.c (cal_backend_file_get_object_component):
    added 'rid' parameter.
    (lookup_component): added 'rid' parameter and made it search for the
    recurrence when that parameter is not NULL.
    (cal_backend_file_get_alarms_for_object, cal_backend_file_update_object):
    adapted to changes in lookup_component().
    
2003-08-22  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * gui/alarm-notify/notify-main.c: (main):
    Ensure we get UTF-8 strings from gettext.

2003-08-22 Bolian Yin <bolian.yin@sun.com>

    Fixes #47779

    * gnome-cal.c (gnome_calendar_get_visible_time_range): fix the return value bug.

2003-08-21  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.[ch] (cal_client_send_object): use a 'char **'
    for the 'error_msg' argument, instead of a fixed size string.

    * gui/itip-utils.c (comp_server_send): pass the correct parameter to
    cal_client_send_object.

2002-08-20  Hans Petter Jansson  <hpj@ximian.com>

    * gui/e-itip-control.c (start_defalt_server): Rename to
    start_default_server_async () and don't run a nested main loop. Let
    the caller deal with the client object and signals.
    (default_server_started_cb): Implement. Async signal handler for
    'cal_opened' signal, does the embedding.
    (object_requested_cb): Rewritten to work asynchronously, and finish
    the embedding when default_server_started_cb() is called.

2003-08-20  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-calendar-table.c (setup_popup_icons): new function to set icons
    on the popup menu items.
    (e_calendar_table_show_popup_menu): call setup_popup_icons.

    * gui/e-cal-view.c (setup_popup_icons): set more icons for the
    popup menu.

2003-08-20  Bolian Yin <bolian.yin@sun.com>

    * gui/Makefile.am : Add a11y dependency.
    * gui/calendar-commands.c (calendar_get_text_for_folder_bar_label)
    * gui/e-cal-view.c: Add two new events: "event_changed" and "event_added" 
    * gui/e-day-view.c (e_day_view_class_init): init a11y.
      (e_day_view_find_event_from_item): make it public from private
      (e_day_view_update_event_cb): emit "event_changed" signal
      (e_day_view_reshape_day_event): emit "event_added" signal
      (e_day_view_reshape_long_event): emit "event_added" signal
    * gui/e-week-view.c (e_week_view_class_init): init a11y.
      (e_week_view_find_event_from_item): make it public from private
      (e_week_view_update_event_cb): emit "event_changed" signal
      (e_week_view_reshape_event_span): emit "event_added" signal
    * gui/gnome-cal.c (gnome_calendar_class_init): init a11y.
      (gnome_calendar_get_e_calendar_widget),
      (gnome_calendar_get_search_bar_widget),
          (gnome_calendar_get_view_notebook_widget): new functions


2003-08-20  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/query-backend.c (foreach_uid_cb): use the icalcomponent
    to call icalcomponent_get_uid, not the string.

2003-08-20  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/cal-backend-file.c: store objects by UID and RID.
    (free_object): new function to free the CalBackendFileObject structure.
    (cal_backend_file_dispose): use free_object callback to remove the
    objects in the comp_uid_hash.
    (lookup_component): search correctly the component in the new hash
    table organizarion.
    (check_dup_uid): ditto.
    (add_component): ditto.
    (remove_component): ditto.

2003-08-19  JP Rosevear  <jpr@ximian.com>

    * gui/gnome-cal.c (setup_widgets): set up models here
    (gnome_calendar_construct): not here

    * conduits/calendar/calendar-conduit.c
    (e_calendar_context_destroy): we have a list of calcomponents
    rather than uids now
    (process_multi_day): build a list of components rather than uids
    (pre_sync): use get_object_list instead of getting uids
    (for_each): create local records from calcomponents

    * conduits/todo/todo-conduit.c: as above
    
    * gui/print.c (instance_cb): mark as true if we found an instance
    (print_month_small): see if atleast one instance exists in a
    slight different way

    * cal-client/client-test.c (list_uids): use get_object_list

    * cal-client/cal-listener.h: update protos

    * cal-client/cal-listener.c (cal_listener_class_init): set object
    list callback implementation
    (impl_notifyObjectListRequested): implement
    (cal_listener_construct): take object list callback function
    (cal_listener_new): ditto

    * cal-client/cal-client.h: update protos, add status

    * cal-client/cal-client.c (e_calendar_new_op): create new op
    (e_calendar_get_op): retrieve current op
    (e_calendar_free_op): free the op
    (e_calendar_remove_op): clear current op
    (cal_client_init): create new mutex
    (cal_client_finalize): destroy mutex
    (build_object_list): build list of icalcomponents
    (cal_object_list_cb): handle getObjectList response
    (real_open_calendar): pass extra listener arg
    (cal_client_get_object_list): implement using thread safe mutex
    locking
    (cal_client_get_object_list_as_comp): return calcomponents instead
    of icalcomponents
    (cal_client_generate_instances): just get the object list - no
    need to make it atomic since get_object_list is already atomic

    * pcs/query.c (query_finalize): free new sexp class
    (parse_sexp): use new sexp class
    (match_component): ditto

    * pcs/query-backend.c (foreach_uid_cb): use icalcomponent to
    extract uid
    (query_backend_new): get all objects using object list call

    * pcs/cal.c (impl_Cal_getObjectList): implement
    (cal_class_init): adjust for idl method changes

    * pcs/cal-backend.h: update vmethods, add proto

    * pcs/cal-backend.c (cal_backend_class_init): remove get_uids and
    get_objects_in_range vmethods, add get_object_list vmethod
    (cal_backend_get_object_list): call through to vmethod implementation

    * pcs/cal-backend-object-sexp.[hc]: nice class to represent a sexp
    and search cal components

    * pcs/cal-backend-file.c (cal_backend_file_class_init): remove
    get_uids and get_objects_in_range calls and set get_object_list
    call
    (cal_backend_file_get_object_list): implement
    (create_user_free_busy): use sexp ops to implement
    (cal_backend_file_compute_changes): just iterate over the
    component list rather than fetching uids
    
    * pcs/Makefile.am: build new files

    * idl/evolution-calendar.idl: make opening a oneway call, add
    getObjectList call, remove getUIDS and getObjectsInRange call -
    both can be done with getObjectList; make listener callbacks
    oneway

2003-08-19  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_purge): don't leak the client list.
    (gnome_calendar_destroy): disconnect from all callbacks on all
    loaded clients.
    
2003-08-19  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model-tasks.c (ecmt_get_color_for_component): use
    "black" for normal tasks, since the light colors from the palette
    are too light.

    * gui/gnome-cal.c (gnome_calendar_purge): don't leak the client list.
    (gnome_calendar_destroy): disconnect from all callbacks on all
    loaded clients.

2003-08-18  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c: fixed the problem with a new event being
    created for each keystroke.
    (e_day_view_add_event): don't create a new default component, use
    the one we get as parameter.
    (e_day_view_do_key_press): get the UID from the icalcomponent.

    * gui/e-week-view.c (e_week_view_add_event, e_week_view_do_key_press):
    same as e-day-view.c

2003-08-18  Ettore Perazzoli  <ettore@ximian.com>

    * gui/calendar-component.c (impl_createControls): Oops, pass
    [NULL, NULL] to gtk_scrolled_window_new().

2003-08-18  Ettore Perazzoli  <ettore@ximian.com>

    * gui/main.c (factory): Ref the object from
    calendar_component_peek() before returning it.

2003-08-17  Ettore Perazzoli  <ettore@ximian.com>

    * gui/control-factory.h: #include <bonobo/bonobo-control.h>.

    * gui/Makefile.am (libevolution_calendar_la_LIBADD): Link to
    libeutil.

    * gui/e-calendar-table.c (e_calendar_table_set_status_message):
    Don't use the global_shell_client.

    * gui/main.c (factory): Call calendar_component_peek() for the
    GNOME_Evolution_Calendar_Component OAFIID.

    * gui/GNOME_Evolution_Calendar.server.in.in: Set up the
    GNOME_Evolution_Calendar_Component server and rename
    GNOME_Evolution_Calendar_Factory to
    GNOME_Evolution_Calendar_Factory_2.
    * gui/main.c: Updated IDs accordingly.

    * gui/e-meeting-time-sel.c (e_meeting_time_selector_construct):
    Use calendar_component_peek_config_directory() instead of
    evolution_dir.
    * gui/gnome-cal.c (setup_widgets): Likewise.
    (gnome_calendar_destroy): Likewise.
    * gui/dialogs/meeting-page.c (meeting_page_construct): Likewise.

    * gui/gnome-cal.c (gnome_calendar_open): #if 0 some code for
    figuring out where the task list is.

    * gui/calendar-component.c: New file.
    * gui/calendar-component.h: New file.

    * gui/itip-utils.c (itip_addresses_get): Unref the GConf client
    from gconf_client_get_default.

2003-08-15  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (ecm_get_color_for_component): use tigert's
    new color palette.
    (cal_removed_cb): when a client is removed, remove it from the model.
    (backend_died_cb): remove it also when the backend dies.
    (add_new_client): connect to new signals for CalClient's.

2003-08-15  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (e_cal_model_finalize): don't unref the
    'accounts' field, since it is internal to itip-utils.c.

    * gui/alarm-notify/alarm-notify.c (alarm_notify_add_calendar):
    initialize all fields of the LoadedClient struct before calling
    cal_client_open_calendar(), since the "cal_opened_cb" signal is
    now emitted within it.

2003-08-14  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.[ch] (e_cal_model_free_component_data): new
    function.

    * gui/e-cal-view.h: added 'allocated_comp_data' field to the
    ECalViewEvent structure.

    * gui/e-day-view.c (e_day_view_add_event): allocate the event's
    ECalModelComponent if it hasn't been set.
    (e_day_view_update_event_cb, e_day_view_remove_event_cb,
    e_day_view_free_event_array): if the ECalModelComponent has
    been allocated by the view, free it here.

    * gui/e-week-event.c (e_week_view_add_event,
    e_week_view_update_event_cb, e_week_view_remove_event_cb,
    e_week_view_free_events): same as EDayView.

2003-08-14  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (e_cal_model_create_component_with_defaults):
    use the default client to call cal_comp_*_new_with_defaults, and
    if no client is available, just create an empty icalcomponent.

    * gui/e-cal-view.c (e_cal_view_init): create an empty model.

    * gui/e-week-view.c (e_week_view_add_event): use the event's client.

2003-08-13  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_open): unref the client if there
    is an error.
    (update_query): set status bar messages for progress.
    (update_query_timeout): re-enabled.
    (client_cal_opened_cb): install timeout handler for the query updates.

    * gui/e-cal-view.c (e_cal_view_set_model): connect to all appropriate
    signals on the model, to be called for every change.
    (model_row_changed_cb, model_rows_changed_cb): new model callbacks.

    * gui/e-week-view-event-item.c (e_week_view_event_item_draw): colorize
    the background for multiple days events.

2003-08-13  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (ecm_append_row, ecm_get_color_for_component):
    * gui/e-cal-model-tasks.c (ecmt_get_color_for_component): merged
    missing bith from calendar-views-with-model branch.

2003-08-13  JP Rosevear  <jpr@ximian.com>

    * cal-client/cal-client.c (real_open_calendar): set the priv->cal
    pointer in a slightly different spot so we have it in the call
    back

    * gui/e-cal-model.c (e_cal_model_get_client_list): merge this in
    properly

2003-08-13  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (ecm_get_color_for_component): assign the colors
    based on the URI, which is stored in a common place for all models.
    Thus different views will use the same color for the same calendar.

    * gui/e-week-view-event-item.c (e_week_view_event_item_draw): draw
    a filled rectangle and a black border around it for one-day events.

    * gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
    fill the rectangle for the item with its associated color.

2003-08-13  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_open): unref the client if there
    is an error.
    (update_query): set status bar messages for progress.
    (update_query_timeout): re-enabled.
    (client_cal_opened_cb): install timeout handler for the query updates.

    * gui/e-cal-view.c (e_cal_view_set_model): connect to all appropriate
    signals on the model, to be called for every change.
    (model_row_changed_cb, model_rows_changed_cb): new model callbacks.

    * gui/e-week-view-event-item.c (e_week_view_event_item_draw): colorize
    the background for multiple days events.
    
2003-08-13  JP Rosevear  <jpr@ximian.com>

    * cal-client/client-test.c (create_client): there is no more
    object updated signal

    * cal-client/cal-listener.c: clean up comment

    * cal-client/cal-client.c (cal_client_class_init): remove
    obj_updated and obj_removed signals

    * cal-client/cal-client.h: ditto
    
2003-08-12  JP Rosevear  <jpr@ximian.com>

    * pcs/cal-backend.h: remove get_uri vmethod

    * pcs/cal-backend.c (cal_backend_class_init): remove get_uri
    vmethod init

    * pcs/cal-backend-file.c (cal_backend_file_class_init): no longer
    a get uri vmethod
    (cal_backend_file_get_uri): remove implementation of above

2003-08-12  JP Rosevear  <jpr@ximian.com>
    
    * cal-client/client-test.c (main): use tmp uris

    * cal-client/cal-listener.h: update protos

    * cal-client/cal-listener.c (cal_listener_init): init removed
    function
    (cal_listener_finalize): clear removed function
    (impl_notifyCalOpened): take file status
    (impl_notifyCalRemoved): implement
    (cal_listener_construct): take remove function arg
    (cal_listener_new): ditto

    * cal-client/cal-client.h: update protos, add remove status

    * cal-client/cal-client.c
    (cal_client_remove_status_enum_get_type): add remove status type
    (cal_client_class_init): add removed signal
    (cal_opened_cb): can no longer get unsupported exception here
    (cal_removed_cb): emit removed status
    (real_open_calendar): pass removed callback function to listener
    (get_fall_back_uri): no longer append tasks.ics or calendar.ics
    (cal_client_remove_calendar): new c wrapper for corba function -
    calendar must be open currently

    * pcs/query.c (backend_opened_cb): only disconnect the open
    callback
    (backend_removed_cb): handle calendar removal
    (query_construct): listen for remove signal as well

    * pcs/cal.h: cal no longer takes uri during construction

    * pcs/cal.c (backend_to_listener_status): convert backend to corba
    status code
    (impl_Cal_open): backend open no longer takes uri, use above to
    send back status
    (impl_Cal_remove): implement
    (cal_construct): we no longer track the uri
    (cal_finalize): ditto
    (cal_class_init): set remove epv method

    * pcs/cal-factory.c (impl_CalFactory_getCal): instantiate backend
    with uri and kind properties

    * pcs/cal-backend.h: list file status enum, add protos

    * pcs/cal-backend.c (cal_backend_set_property): implement object
    properties
    (cal_backend_get_property): ditto
    (cal_backend_class_init): add properties vmethods and uri, kind
    properties, removed signal
    (cal_backend_get_uri): don't get the uri from the backend
    (cal_backend_get_kind): get the kind from the backend
    (cal_backend_open): adapt to new open call, no uri passed in
    (cal_backend_remove): call through to remove implementation
    (cal_backend_opened): use new file status
    (cal_backend_removed): emit removed signal

    * pcs/cal-backend-file.h: update protos

    * pcs/cal-backend-file.c (cal_backend_file_class_init): override
    remove vmethod
    (cal_backend_file_init): default file name to calendar.ics
    (cal_backend_file_set_file_name): accessor for filename tacked on
    to uri
    (cal_backend_file_get_file_name): ditto
    (open_cal): return "file" type status codes
    (create_cal): ditto
    (get_uri_string): construct the full uri string
    (cal_backend_file_open): use above
    (cal_backend_file_remove): implement

    * pcs/cal-backend-file-todos.c (cal_backend_file_todos_init): set
    the file name to tasks.ics

    * pcs/cal-backend-file-events.c (cal_backend_file_events_init):
    set the file name to calendar.ics

    * cal-util/cal-util.c (cal_util_expand_uri): just return a copy of
    the uri now

    * idl/evolution-calendar.idl: convert OpenStatus to FileStatus so
    remove() can use it as well

    * gui/gnome-cal.c (gnome_calendar_open): just open the default
    folder in all cases

2003-08-12  Rodrigo Moya <rodrigo@ximian.com>

    * cal-util/cal-util.[ch] (cal_util_component_has_alarms): new function.

    * gui/gnome-cal.[ch]:
    * gui/goto.c:
    * gui/itip-bonobo-control.c:
    * gui/print.c:
    * gui/e-week-view.[ch]:
    * gui/e-day-view.[ch]: lots of fixes to make all compile with no
    warnings.

2003-08-12  Rodrigo Moya <rodrigo@ximian.com>

    * cal-util/cal-util.[ch] (cal_util_component_has_organizer):
    new function.

    * gui/e-day-view-main-item.c:
    * gui/e-day-view-top-item.c:
    * gui/e-week-view-event-item.c:
    * gui/e-week-view.c: adaptated to changes in ECalViewEvent.

    * gui/e-cal-model.[ch] (e_cal_model_get_client_list): new function.
    (ecm_append_row): fixed usage of icalcomponent variable.

    * gui/e-cal-view.c (e_cal_view_class_init): removed unused variable.
    (selection_received): use default client for pasting from clipboard.
    (e_cal_view_cut_clipboard): cut the appointment from its client.
    (e_cal_view_copy_clipboard, delete_event, on_save_as, om_print_event,
    e_cal_view_delete_selected_occurrence, on_meeting, on_forward,
    e_cal_view_create_popup_menu): adapted to changes in ECalViewEvent.
    (e_cal_view_delete_selected_event, e_cal_view_delete_selected_events):
    pass the ECalViewEvent to delete_event, so that it knows which
    CalClient to use.
    (on_edit_appointment): pass CalClient and icalcomponent to
    gnome_calendar_edit_object.
    (on_publish): publish F/B info for all the clients currently loaded
    in the view.
    (setup_popup_icons): added missing argument to gtk_image_new_from_stock.

    * gui/calendar-commands.c (publish_freebusy_cmd): publish F/B info
    for all the clients currently loaded in the view.
    (sensitize_calendar_commands): use icalcomponent functions.

    * gui/e-day-view.c:
    * gui/comp-editor-factory.c (impl_editExisting):
    * gui/calendar-offline-handler.c (backend_cal_opened_online):
    * gui/e-alarm-list.c (e_alarm_list_finalize):
    * gui/e-cal-model-tasks.c (ecmt_get_color_for_component):
    * gui/e-date-time-list.c (e_date_time_list_finalize):
    * gui/control-factory.c (get_prop): fixed warnings.
    
2003-08-12  Hans Petter Jansson  <hpj@ximian.com>

    * gui/calendar-offline-handler.c (impl_dispose): Chain. Prevent
    double unrefs.
    (impl_finalize): Chain.

    * gui/e-alarm-list.c (finalize): Chain.

    * gui/e-comp-editor-registry.c (destroy): Chain. Prevent double frees.
    (editor_destroy_cb): Don't crash if we get the destroy signal twice.

    * gui/e-date-time-list.c (e_date_time_list_finalize): Chain.

    * gui/e-meeting-attendee.c (finalize): Chain.

    * gui/e-meeting-model.c (finalize): Chain.

2003-08-12 Andrew Wu <Yang.Wu@sun.com>

       * gui/e-day-view.c
       (e_day_view_change_duration_to_start_of_work_day):
       In DayView, Shift+Home, Change the duration to the time
       that begins the current work day.
       (e_day_view_change_duration_to_end_of_work_day):
       In DayView, Shift+End, Change the duration to the time
       that ends the current work day

2003-08-12  Hans Petter Jansson <hpj@ximian.com>

    * gui/e-itip-control.c (html_destroyed):
    (init):
    (write_html): Add destroy chaining.

2003-08-12  Andrew Wu <Yang.Wu@sun.com>

       * gui/e-week-view.c
       (e_week_view_on_key_up):
       (e_week_view_on_key_down):
       (e_week_view_on_key_left):
       (e_week_view_on_key_right):
       In the WeekView, Navigation through days with arrow keys.

2003-08-12  Harry Lu <harry.lu@sun.com>

    ** fixes #47464.

    * gui/dialogs/meeting-page.c: (get_widgets): The Organizer's value
    need not match one of the values in the list.

2003-08-12  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c (e_day_view_update_query):
    * gui/e-week-view.c (e_week_view_update_query): remove the status bar
    messages when the operation is finished.

    * gui/e-day-view-main-item.c (e_day_view_main_item_draw_day_event):
    draw a rectangle filled with the color associated with the event's
    calendar.

2003-08-12  Rodrigo Moya <rodrigo@ximian.com>

    * cal-util/cal-util.[ch] (cal_util_component_has_alarms): new function.

    * gui/gnome-cal.[ch]:
    * gui/goto.c:
    * gui/itip-bonobo-control.c:
    * gui/print.c:
    * gui/e-week-view.[ch]:
    * gui/e-day-view.[ch]: lots of fixes to make all compile with no
    warnings.

2003-08-12  Rodrigo Moya <rodrigo@ximian.com>

    * cal-util/cal-util.[ch] (cal_util_component_has_organizer):
    new function.

    * gui/e-day-view-main-item.c:
    * gui/e-day-view-top-item.c:
    * gui/e-week-view-event-item.c:
    * gui/e-week-view.c: adaptated to changes in ECalViewEvent.

    * gui/e-cal-model.[ch] (e_cal_model_get_client_list): new function.
    (ecm_append_row): fixed usage of icalcomponent variable.

    * gui/e-cal-view.c (e_cal_view_class_init): removed unused variable.
    (selection_received): use default client for pasting from clipboard.
    (e_cal_view_cut_clipboard): cut the appointment from its client.
    (e_cal_view_copy_clipboard, delete_event, on_save_as, om_print_event,
    e_cal_view_delete_selected_occurrence, on_meeting, on_forward,
    e_cal_view_create_popup_menu): adapted to changes in ECalViewEvent.
    (e_cal_view_delete_selected_event, e_cal_view_delete_selected_events):
    pass the ECalViewEvent to delete_event, so that it knows which
    CalClient to use.
    (on_edit_appointment): pass CalClient and icalcomponent to
    gnome_calendar_edit_object.
    (on_publish): publish F/B info for all the clients currently loaded
    in the view.
    (setup_popup_icons): added missing argument to gtk_image_new_from_stock.

    * gui/calendar-commands.c (publish_freebusy_cmd): publish F/B info
    for all the clients currently loaded in the view.
    (sensitize_calendar_commands): use icalcomponent functions.

    * gui/e-day-view.c:
    * gui/comp-editor-factory.c (impl_editExisting):
    * gui/calendar-offline-handler.c (backend_cal_opened_online):
    * gui/e-alarm-list.c (e_alarm_list_finalize):
    * gui/e-cal-model-tasks.c (ecmt_get_color_for_component):
    * gui/e-date-time-list.c (e_date_time_list_finalize):
    * gui/control-factory.c (get_prop): fixed warnings.

2003-08-11  Rodrigo Moya <rodrigo@ximian.com>

    * cal-util/cal-util.[ch] (cal_util_component_is_instance,
    cal_util_component_has_recurrences, cal_util_component_has_rdates,
    cal_util_component_has_rrules, cal_util_event_dates_match):
    new functions needed for the CalComponent->icalcomponent
    transition.

    * gui/e-day-view.[ch]:
    * gui/e-week-view.[ch]: more adaptation to changes in ECalViewEvent.

    * gui/gnome-cal.c (gnome_calendar_edit_object): use icalcomponent's
    instead of CalComponent's.

2003-08-11  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c: more adaptation to changes in ECalViewEvent.
    (e_day_view_update_event_cb): use an ECalModelComponent, not a
    CalComponent.
    (process_component): pass an ECalModelComponent to
    e_day_view_update_event_cb().
    
    * gui/e-week-view.c: more adaptation to changes in ECalViewEvent.
    (e_week_view_update_event_cb, e_week_view_reshape_event_span):
    set the background color on the event's summary text.

2003-08-11  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-week-view.c (e_day_view_update_query): no more query
    management here.
    (query_obj_updated_cb, query_obj_removed_cb, query_query_done_cb,
    query_eval_error_cb): removed query signals' callbacks.
    (adjust_query_sexp): removed.
    (process_component): new function to draw all components from
    the model.

    * gui/e-day-view.c: adapted to changes in ECalViewEvent structure.
    (e_day_view_update_query): no more query management here.
    (query_obj_updated_cb, query_obj_removed_cb, query_query_done_cb,
    query_eval_error_cb): removed query signals' callbacks.
    (adjust_query_sexp): removed.
    (process_component): new function to draw all components from
    the model.

2003-08-11  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (e_cal_view_destroy): disconnect from signals
    on the model.
    (e_cal_view_set_model): disconnect from signals on the old model
    and connect on the new one.
    (model_changed_cb): tell the views to redraw when the model changes.

    * gui/gnome-cal.c (dn_query_obj_updated_cb, gnome_calendar_destroy,
    client_categories_changed_cb): removed the 'client' field from the
    private structure, so don't use it anymore
    (client_cal_opened_cb): if successful, add the CalClient to the
    views' model.
    (gnome_calendar_construct): don't add the client to the task model,
    add it in client_cal_opened_cb().
    (gnome_calendar_get_cal_client): removed.
    (gnome_calendar_get_calendar_model): new function.
    (gnome_calendar_open): create the CalClient here, to be added to the
    views' model in client_cal_opened_cb().

2003-08-09  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.[ch] (e_cal_view_get_cal_client,
    e_cal_view_set_cal_client, e_cal_view_get_query,
    e_cal_view_set_query): removed unneeded functions.
    (e_cal_view_get_model, e_cal_view_set_model): new functions.
    (e_cal_view_destroy): free the model.
    (e_cal_view_init): removed sexp initialization.

    * gui/gnome-cal.c (gnome_calendar_set_query): set the
    query on the view's model, not on the view.
    (gnome_calendar_construct): create the calendar model and associate
    it to all the views.

2003-08-08  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model-calendar.c (ecmc_fill_component_from_model):
    implemented new virtual method.
    (ecmc_class_init): initialize new virtual method.

2003-08-08  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (cal_client_update_object_with_mod):
    cal_client_get_component_as_string_internal expects now a
    icalcomponent, not a CalComponent.

    * gui/e-cal-model.h: added fill_component_from_model virtual method.

    * gui/e-cal-model.c (e_cal_model_get_default_client): return
    the default URI as per the configuration if we've got that
    client loaded. If not, return the first client.
    (get_dtstart): retrieve the value from the icalproperty.
    (set_summary): implemented correctly.
    (set_categories, set_classification, set_description): changed
    to really get an ECalModelComponent.
    (ecm_append_row): pass the correct arguments to the set_ functions
    and call the class' fill_component_from_model method to fill in the
    created icalcomponent.

    * gui/e-cal-model-tasks.c (set_due): added missing function.
    (ecmt_set_value_at): implemented case for DUE field.
    (ecmt_fill_component_from_model): implemented new virtual method.
    (ecmt_append_row): removed.

    * gui/e-cal-model-calendar.c (ecmc_append_row): removed.

    * gui/e-calendar-table.c (e_calendar_table_init): initialize
    missing fields. Disabled call to g_object_unref on the 'extras'
    object, since it causes GLib warnings. Something is wrong here.

2003-08-08  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (cal_opened_cb): don't call remove_client,
    since the client, at this point, hasn't been added anywhere.
    (ecm_finalize): don't call e_cal_model_remove_all_clients, since
    that function triggers notifications on the model.
    (query_obj_updated_cb): free all the date fields.

2003-08-07  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (ecm_value_at): don't convert to an integer
    the return value from get_color.
    (ecm_get_color_for_component): use correct GTK 2.x color values.

    * gui/e-calendar-table.c: replace all CAL_COMPONENT_FIELD...
    with the correct E_CAL_MODEL_*_FIELD...

2003-08-07  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model-tasks.c (get_completed, get_due): added
    missing implementation.
    (ecmt_class_init): initialize missing virtual method.

    * gui/gnome-cal.c (gnome_calendar_construct): fixed typo.

2003-08-07  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.[ch] (cal_client_get_component_as_string):
    * cal-util/cal-util.[ch] (cal_util_add_timezone_from_component):
    use icalcomponent's instead of CalComponent's.

    * gui/Makefile.am:
    * gui/calendar-model.[ch]: removed old model class.

    * gui/e-calendar-table.[ch]: use ECalModelTasks class instead
    of CalendarModel.
    (e_calendar_table_set_status_message): new function.
    (get_selected_comp): return an ECalModelComponent.
    (get_selected_objects): return a list of ECalModelComponent's.
    (delete_selected_components): use the CalClient associated
    with each component.
    (copy_row_cb): adapted to changes in get_selected_comp.

    * gui/e-tasks.c:
    * gui/print.c:
    * gui/dialogs/comp-editor.c (save_as_cmd):
    * gui/e-day-view.c (e_day_view_on_drag_data_get):
    * gui/e-cal-view.c (e_cal_view_copy_clipboard, on_save_as): pass
    an icalcomponent to cal_util_add_timezones_from_component and
    cal_client_get_component_as_string.

    * gui/e-cal-model.[ch] (e_cal_model_set_use_24_hour_format):
    (e_cal_model_get_default_client):
    (e_cal_model_set_default_category): new functions.

    * gui/e-cal-model-tasks.[ch] (e_cal_model_tasks_mark_task_complete):
    new function.
    (ecmt_get_color_for_component): chain the call to the parent class
    so that it assigns the per-client color to 'normal' tasks.

    * gui/calendar-config.c (calendar_config_configure_e_calendar_table):
    call e_cal_model_set_use_24_hour_format.

2003-08-07  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (ecm_get_color_for_component): use the color
    palette from Tuomas.

2003-08-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.[ch]: removed 'create_component_with_defaults'
    virtual method.
    (e_cal_component_create_component_with_defaults):
    (e_cal_component_get_color_for_component): new functions.

2003-08-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.[ch] (e_cal_model_set_query): new function.
    (e_cal_model_remove_all_clients): implemented.
    (remove_client): also remove all objects belonging to the
    client being removed.

2003-08-06  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.c (get_dtstart, set_dtstart): implemented.
    (ecm_value_at, ecm_set_value_at, ecm_duplicate_value,
     ecm_free_value, ecm_value_to_string): added case for DTSTART
     field.
    (free_comp_data): free also the other date values in the
    ECalModelComponent struct.
    (e_cal_model_date_value_to_string): new function.

    * gui/e-cal-model.h: added new prototypes.

    * gui/e-cal-model-calendar.[ch]: new ECalModel-based class for
    containing events.

    * gui/e-cal-model-tasks.c (ecmt_value_to_string): implemented
    the case for date fields.

2003-08-05  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (generate_instances_obj_updated_cb): fixed
    parameters in call to cal_client_get_object().
    (get_objects_atomatically): same.

    * gui/e-cal-model.[ch]: added "get_color_for_component" virtual method.
    (get_color): new function to return the color. It calls the virtual
    method of the current class.
    (ecm_value_at): return a value for the color and icon columns.
    (e_cal_model_class_init): initialize virtual methods.

    * gui/e-cal-model-tasks.c (ecmt_get_color_for_component): implemented
    new class' virtual method.

2003-08-05  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client_/cal-client.c (cal_client_get_default_object): use
    correctly the pointer to pointer.

    * gui/e-week-view.c (query_obj_updated_cb): fixed the call to
    cal_client_get_object().

2003-08-04  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.[ch] (cal_client_get_default_object):
    (cal_client_get_object): use icalcomponent instead of CalComponent.

    * gui/e-cal-model.c (get_dtstart): implemented.
    (query_obj_updated_cb):
    (query_obj_removed_cb):
    (query_done_cb):
    (query_eval_error_cb): implemented missing functions.

    * gui/calendar-model.c:
    * gui/comp-editor-factory.c:
    * gui/comp-util.c:
    * gui/e-day-view.c:
    * gui/e-itip-control.c:
    * gui/e-week-view.c:
    * gui/gnome-cal.c:
    * gui/dialogs/comp-editor.c:
    * conduits/todo/todo-conduit.c:
    * conduits/calendar/calendar-conduit.c: adapted to changes
    in CalClient API.

2003-08-04  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-query.[ch] (cal_query_new): added a 'CalClient'
    argument to this function.
    (cal_query_get_client): new function.

    * cal-client/cal-client.c (cal_client_get_query): added new parameter
    in call to cal_query_new ().

2003-08-01  Lorenzo Gil <lgs@sicem.biz>

    * gui/e-alarm-list.c: added the include <config.h> line at the
        beginning to enable gettext.

2003-08-01  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.[ch] (e_cal_model_get_component_at): new function.
    (ecm_append_row): use the client from the source model.
    (e_cal_model_get_timezone, e_cal_model_set_timezone): new functions.

    * gui/e-cal-model-tasks.[ch]: new class for the tasks model.

2003-07-31  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-model.[ch]: new class, based on CalendarModel to be
    an abstract class for calendar models.

    * gui/Makefile.am: added new files to build.

2003-07-30  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client-multi.[ch]:
    * cal-client/Makefile.am: removed obsolete code.

2003-07-30  Ettore Perazzoli  <ettore@ximian.com>

    * gui/main.c (factory): Do not depend on global_shell_client being
    not NULL for creating the calendar preferences dialog.

    * gui/e-itip-control.c (show_current): Don't call get_servers
    anymore [to be fixed].
    (get_servers): #if 0ed out.
    (object_requested_cb): Don't create the folder selector button.

    * gui/e-cal-view.c (e_cal_view_set_status_message): Don't create
    an activity client.

    * gui/calendar-model.c (calendar_model_set_status_message): Don't
    create an activity client.

    * gui/calendar-component.c: Removed global variable
    global_shell_client.
    (owner_set_cb): Don't set global_shell_client.
    (owner_unset_cb): Don't set it here either.

2003-07-29  Rodrigo Moya <rodrigo@ximian.com>

    Fixes all "alarm daemon doesn't start with session"

    * gui/alarm-notify/notify-main.c (main): use LIBGNOMEUI_MODULE
    instead of LIBGNOME_MODULE so that the default session client
    is created in gnome_program_init.

2003-07-29 Harry Lu <harry.lu@sun.com>

    Fixes #46769

    * gui/dialogs/task-page.c: (task_page_fill_component): Popup a 
    error dialog if due date time is before start datetime when saving
    a task.

2003-07-29  Bolian Yin <bolian.yin@sun.com>

        Fixes #46847

        * gui/e-day-view.c (e_day_view_get_next_tab_event, e_day_view_focus):
         add day view widget in the tab loop of events.
        * gui/e-week-view.c (e_week_view_get_next_tab_event, e_week_view_focus):
         add week view widget in the tab loop of events.

        Also: add some comments in gui/e-day-view.c and gui/e-week-view.c
              remove two compile warnings in gui/e-day-view.c

2003-07-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.[ch] (e_cal_view_delete_selected_occurrence):
    new function.
    (e_cal_view_get_timezone, e_cal_view_set_timezone): new functions.
    (e_cal_view_class_init): added new class' signal.

    * gui/e-week-view.[ch] (e_week_view_delete_occurrence,
     e_week_view_delete_occurrence_internal): removed.
    (e_week_view_get_timezone): removed.
    (e_week_view_set_timezone): renamed to timezone_changed_cb, as
    the callback for timezone changes in the parent ECalView.
    (e_week_view_on_button_press): call gnome_calendar_new_appointment
    instead of the non-existant e_week_view_new_appointment.

    * gui/e-day-view.[ch] (e_day_view_delete_occurrence,
     e_day_view_delete_occurrence_internal): removed.
    (e_day_view_get_timezone): removed.
    (e_day_view_set_timezone): renamed to timezone_changed_cb, as
    the callback for timezone changes in the parent ECalView.

    * gui/gnome-cal.c (gnome_calendar_delete_selected_occurrence):
    made it call e_cal_view_delete_selected_occurrence.
    (gnome_calendar_update_config_settings): call the generic
    e_cal_view_set_timezone on all view widgets.

    * gui/e-day-view-top-item.c:
    * gui/e-week-view-main-item.c:
    * gui/e-day-view-main-item.c: removed mentions to non-existant
    structure fields.

2003-07-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.h: define ECalViewEvent as the base struct for
    the other views.

    * gui/e-day-view.[ch]: EDayViewEvent is now based on ECalViewEvent.
    (e_day_view_get_selected_events): made it return a list of
    ECalViewEvent's, not CalComponent's, so that we can get more
    information about the events.

    * gui/e-week-view.[ch]: EWeekViewEvent is now based on ECalViewEvent.
    (e_week_view_get_selected_events): same as e_day_view_get_selected_events.

    * gui/e-cal-view.c (e_cal_view_cut_clipboard, e_cal_view_copy_clipboard,
     e_cal_view_delete_selected_event, e_cal_view_delete_selected_events,
     on_edit_appointment, on_save_as, on_print_event, on_meeting,
     on_forward, e_cal_view_create_popup_menu):
    * gui/calendar-commands.c (sensitize_calendar_commands): updated
    to read ECalViewEvent's instead of CalComponent's as returned
    by e_cal_view_get_selected_events().

2003-07-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (delete_event): check the uid before using it.

2003-07-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c (e_day_view_delete_event,
     e_day_view_delete_event_internal):
    * gui/e-week-view.c (e_week_view_delete_event,
     e_week_view_delete_event_internal): removed.

    * gui/e-cal-view.[ch] (e_cal_view_delete_selected_event): renamed
    from e_cal_view_delete_event_internal.
    (e_cal_view_delete_selected_events): new function.

    * gui/gnome-cal.c (gnome_calendar_delete_selection): call
    e_cal_view_delete_selected_events().

    * gui/e-week-view-event-item.c (e_week_view_event_item_get_position,
     e_week_view_event_item_button_press):
    * gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
    * gui/e-day-view-main-item.c (e_day_view_main_item_draw_day_event):
    adapted to changes in E*ViewPosition.

2003-07-24  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.c (on_print): added missing cases.
    (setup_popup_icons): new function to set up icons for the popup menu.
    (e_cal_view_create_popup_menu): call setup_popup_icons.

2003-07-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.[ch]: moved the duplicated popup menu code here.
    (e_cal_view_create_popup_menu): new function to create the popup
    menu for all views.
    (on_new_appointment, on_new_event, on_new_meeting, on_new_task,
     on_goto_today, on_goto_date, on_edit_appointment, on_print,
     on_save_as, on_print_event, on_meeting, on_forward, on_publish,
     on_settings, on_delete_appointment, on_cut, on_copy, on_paste,
     on_unrecur_appointment): callbacks for the popup menu items.

    * gui/e-week-view.c (e_week_view_on_new_appointment,
      e_week_view_new_appointment, e_week_view_on_new_event,
      e_week_view_on_new_meeting, e_week_view_on_new_task,
      e_week_view_on_goto_today, e_week_view_on_goto_date,
      e_week_view_on_edit_appointment, e_week_view_on_print,
      e_week_view_on_save_as, e_week_view_on_print_event,
      e_week_view_on_meeting, e_week_view_on_forward,
      e_week_view_on_publish, e_week_view_on_settings,
      e_week_view_on_delete_appointment,
      e_week_view_delete_event_internal, e_week_view_on_cut,
      e_week_view_on_copy, e_week_view_on_paste):
    * gui/e-day-view.c (e_day_view_on_new_appointment,
      e_day_view_on_new_event, e_day_view_on_new_meeting,
      e_day_view_on_new_task, e_day_view_on_goto_today,
      e_day_view_on_goto_date, e_day_view_on_edit_appointment,
      e_day_view_on_print, e_day_view_on_save_as,
      e_day_view_on_print_event, e_day_view_on_meeting,
      e_day_view_on_forward, e_day_view_on_publish,
      e_day_view_on_settings, e_day_view_on_delete_appointment,
      e_day_view_delete_event_internal, e_day_view_on_cut,
      e_day_view_on_copy, e_day_view_on_paste): removed duplicated code.

    * gui/gnome-cal.[ch] (gnome_calendar_unrecur_selection): new function.

2003-07-23  Dan Winship  <danw@ximian.com>

    * cal-util/Makefile.am: Use EVO_MARSHAL_RULE, and add
    MARSHAL_GENERATED to CLEANFILES

    * gui/alarm-notify/alarm-queue.c (on_dialog_obj_updated_cb): Fix
    an unused variable

    * gui/calendar-commands.c (purge_cmd): Fix warnings.

    * gui/calendar-config.h: s/confirm_expunge/confirm_purge/ to match
    the actual functions

    * gui/control-factory.c: add some missing #includes

    * gui/dialogs/delete-comp.c (delete_component_dialog): Fix a
    warning

    * gui/e-itip-control.c (write_label_piece): Remove unused variable.

    * gui/print.c (print_calendar): Remove unused variable
    (print_comp): Likewise.

    * gui/tasks-control.c (confirm_purge): Fix warnings.
    (print_tasks): Remove unused variable.

2003-07-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.h:
    * gui/e-week-view.h: removed unneeded prototypes.

    * gui/e-cal-view.[ch] (e_cal_view_get_visible_time_range): new
    function.
    (selection_received): deal correctly with the selected time range.

    * gui/e-week-view.c (e_week_view_get_visible_time_range): made it
    private as the implementation of the 'get_visible_time_range'
    virtual method.

    * gui/e-day-view.c (e_day_view_get_visible_time_range): ditto.

    * gui/gnome-cal.c (gnome_calendar_direction): merged redundant 'case'.
    (focus_current_view): removed redundant code.

2003-07-22  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.c (e_day_view_get_selected_events):
    * gui/e-week-view.c (e_week_view_get_selected_events): manage the
    case where the selected events are the popup menu ones.

2003-07-22  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.c (gnome_calendar_copy_clipboard,
    gnome_calendar_cut_clipboard, gnome_calendar_paste_clipboard):
    removed missing calls to e_day/week_view_*_clipboard.

2003-07-22  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.[ch]: added "get_selected_events",
    and "update_query" virtual methods.
    (e_cal_view_class_init): initialize new virtual methods.
    (e_cal_view_destroy): destroy new private members.
    (e_cal_view_get_selected_events, e_cal_view_set_cal_client,
     e_cal_view_get_cal_client): new functions.
    (e_cal_view_cut_clipboard, e_cal_view_copy_clipboard,
     e_cal_view_paste_clipboard): merged clipboard stuff.

    * gui/e-day-view.c (e_day_view_cut_clipboard,
      e_day_view_copy_clipboard, e_day_view_paste_clipboard): removed.
    (e_day_view_get_selected_events): made these private as the
    implementation of the 'get_selected_events' base class virtual method.

    * gui/e-week-view.c (e_week_view_get_selected_events): ditto.
    (e_week_view_cut_clipboard, e_week_view_copy_clipboard,
     e_week_view_paste_clipboard): removed.
    
    * gui/calendar-commands.c (sensitize_calendar_commands): call
    e_cal_view_get_selected_events.

    * gui/gnome-cal.c: removed a lot of redundant code thanks to the
    above changes.

2003-07-21  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.[ch]: removed e_day_view_set_calendar prototype.
    (e_day_view_set_status_message): removed.

    * gui/e-week-view.[ch] (e_week_view_set_status_message): removed.

    * gui/e-cal-view.[ch] (e_cal_view_set_status_message): new functions.
    (e_cal_view_destroy): unref activity client.

    * gui/gnome-cal.c: updated to e_*_view/e_cal_view.

2003-07-18  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-day-view.[ch]:
    * gui/e-week-view.[ch]: moved duplicated code to...

    * gui/e-cal-view.[ch]: ...here.
    (e_cal_view_get_calendar, e_cal_view_set_calendar): new functions.

    * gui/e-week-view-event-item.c (e_week_event_item_double_click):
    * gui/gnome-cal.c (setup_widgets): adapted to changes in views.

2003-07-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-cal-view.[ch]: new base class for calendar views.

    * gui/e-day-view.[ch]:
    * gui/e-week-view.[ch]: base these classes on ECalView.

    * gui/Makefile.am: added new files.

2003-07-17  Rodrigo Moya <rodrigo@ximian.com>

    * gui/calendar-config.[ch]:
    * gui/tasks-control.c: s/expunge/purge.

2003-07-16  Rodrigo Moya <rodrigo@ximian.com>

    * gui/gnome-cal.[ch] (gnome_calendar_purge): new function,
    which uses a CalQuery to retrieve the objects older than a given date.
    (check_instance_cb): callback for cal_recur_generate_instances.
    (purging_obj_updated_cb): call check_instance_cb on each recurrence
    to double-check the event can be deleted.
    (purging_query_done_cb, purging_eval_error_cb): needed callbacks to
    finish the query.
    (gnome_calendar_destroy): free new members.

    * gui/calendar-commands.c (purge_cmd): added implementation for the
    'Purge' menu item.

2003-07-16  Andrew Wu <Yang.Wu@sun.com>

      Fixes #45774

      * gui/e-day-view.c (e_day_view_goto_start_of_work_day):
      implemented select the time that begins a work day.
      (e_day_view_goto_end_of_work_day):
      implemented select the time that ends a work day.

2003-07-16  Andrew Wu <Yang.Wu@sun.com>
    
    Fixes #45772
    
    * gui/gnome-cal.c(gnome_calendar_goto_date): implemented Alt+Left/Right
      to go to the same day of the previous/next week.
    * gui/gnome-cal.h:add two element in GnomeCalendarGotoDateType.

2003-07-14  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #41676

    * gui/dialogs/alarm-options.c (palarm_options_changed_cb,
      repeat_spin_button_changed_cb, repeat_unit_changed_cb): new callbacks for
    managing modifications in the 'Run a program' alarm case.
    (repeat_toggle_toggled_cb): if the alarm being edited has a procedure
    action, call palarm_options_changed_cb.
    (init_widgets): connect new callbacks.
    (alarm_to_dialog): disable 'OK' button if a procedure alarm.

2003-07-11  Federico Mena Quintero  <federico@ximian.com>

    * gui/dialogs/task-details-page.glade: Changed the "URL:" label to
    "_Web Page:".  Added a widget name to the URL label so that we can
    hook up its mnemonic by hand.  Added underlines to the "%
    Complete:" and "Date Completed:" labels.  Added a widget name to
    the date completed label, also so that we can hook up its mnemonic.

    * gui/dialogs/task-details-page.c (get_widgets): Get the url_label
    and date_completed_label as well.
    (init_widgets): Set the mnemonic widgets of the url_label and the
    date_completed_label by hand, as their respective widgets are
    not created by libglade.

    * gui/e-calendar-table.c (tasks_popup_menu): Added an item for
    "Open Web Page".
    (e_calendar_table_show_popup_menu): Disable the aforementioned
    menu item if the selected task doesn't have the URL property set.
    (open_url_cb): New callback.

    * gui/e-tasks.c (write_html): Make the HTML say "Web Page:"
    instead of "URL:".

2003-07-10  Harry Lu <harry.lu@sun.com>

    Fixes #46075.

    * gui/e-date-time-list.c (compare_datetime): new function to compare
    two CalComponentDateTime instances.
    (e_date_time_list_append): check whether the date already exists
    before adding it to the list.

2003-07-07  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #45910

    * gui/dialogs/task-editor.c (task_editor_class_init): set up the
    handler for the set_cal_client virtual method.
    (task_editor_set_cal_client): added missing virtual method.

2003-07-07  Jack Jia <jack.jia@sun.com>

    * cal-client/cal-client.c (cal_client_get_static_capability): add
    g_return_val_if_fail to check the input param.

2003-07-03  Rodrigo Moya <rodrigo@ximian.com>

    * gui/e-tasks.c (setup_widgets): added a paned widget to contain
    the task list and a HTML widget for displaying the task's details.
    Connect to "cursor_change" signal on the ETable.
    (table_cursor_change_cb): update the HTML view every time the selected
    task changes.
    (timet_to_str_with_zone): new function copied from alarm daemon.
    (url_requested_cb): callback for "url_requested" signal on the
    GtkHTML widget.
    (on_link_clicked_cb): respond to clicks linked on the HTML widget.
    (vpaned_resized_cb): set the configuration entry for the task vpane
    position.
    (e_tasks_destroy): free new member.
    (e_tasks_construct): connect to "obj_removed" signal on the CalClient.
    (client_obj_removed_cb): if the updated object is the one being
    displayed in the HTML widget, update it.

    * gui/calendar-config.[ch] (calendar_config_get_task_vpane_pos):
    (calendar_config_gset_task_vpane_pos): new functions.

    * gui/apps_evolution_calendar.schemas: added task vpane position.

2003-07-03  Antonio Xu <antonio.xu@sun.com>

    Fixes #45767
    
    * conduits/todo/Makefile.am: removed libwombat from the build.

2003-07-02  Harry Lu <harry.lu@sun.com>

    Fixes #44485

    * gui/e-timezone-entry.c (e_timezone_entry_set_entry): pass a 
    new allocated string to gtk_entry_set_text instead of the one
    that might come from gettext.

2003-07-02  Dan Winship  <danw@ximian.com>

    * cal-client/cal-client.c (real_open_calendar): Don't leak
    exceptions
    (load_static_capabilities): free the capability string

    * gui/dialogs/task-page.c (task_page_fill_component): Free the
    description text if it *was* set, rather than if it wasn't.

    * gui/dialogs/task-editor.c (task_editor_finalize): Free the priv
    struct.

2003-07-02  Bolian Yin <bolian.yin@sun.com>

    Fixes #45328, #45329

    * gui/e-day-view.c (e_day_view_do_key_press): Do not process
    PageUp/PageDown, .. when the Alt key is pressed (give key binding
    set the chance).
    * gui/gnome-cal.h : define new enum type, GNOME_CAL_GOTO_DATE_TYPE.
    * gui/gnome-cal.c (gnome_calendar_class_init): define new signal
     "goto_date".  Add key bindings for "Alt+PageUp/PageDown",
     "Alt+Home/End".
    (gnome_calendar_goto_date): Impl. signal handler for "goto_date".

2003-07-01  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #45524

    * gui/calendar-commands.c: use stock icons where approppriate.

    * gui/tasks-control.c: removed EPixmaps structure, since we only use
    stock icons now.
    (tasks_control_activate): no need to call e_pixmaps_update.

2003-07-01  Bolian Yin <bolian.yin@sun.com>

    Fixes #45274

    * gui/e-week-view.c: implemented tabbing though events in week view.

2003-06-30  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c: removed usage of WombatClient.
    (client_get_password_cb, client_forget_password_cb): removed.
    (real_open_calendar): don't create the WombatClient object.
    (cal_client_init, cal_client_finalize): removed WombatClient
    related code.
    (cal_client_finalize): re-enabled call to destroy_factories.

    * pcs/cal.c: removed usage of WombatClient interface.
    (cal_construct): don't get a reference to the WombatClient.
    (cal_get_password, cal_forget_password): removed unused functions.

    * conduits/calendar/Makefile.am:
    * cal-client/Makefile.am: removed references to libwombat.

2003-06-27  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/send-comp.[ch] (send_component_dialog):
    * gui/dialogs/cancel-comp.[ch] (cancel_component_dialog): added a
    GtkWindow argument for callers to specify the parent window.

    * gui/dialogs/changed-comp.[ch] (changed_component_dialog): added
    'parent' argument and use GtkMessageDialog instead of
    gnome_question_dialog.

    * gui/e-calendar-table.c (e_calendar_table_delete_selected):
    * gui/e-day-view.c (e_day_view_delete_event_internal,
      e_day_view_on_cut, e_day_view_finish_long_event_resize,
      e_day_view_finish_resize, e_day_view_on_editting_stopped,
      e_day_view_on_top_canvas_drag_data_received, selection_received):
    * gui/e-week-view.c (e_week_view_delete_event_internal,
      e_week_view_on_cut, e_week_view_on_editing_stopped,
      selection_received):
    * gui/dialogs/event-editor.c (cancel_meeting_cmd):
    * gui/dialogs/task-editor.c (cancel_task_cmd):
    * gui/dialogs/comp-editor.c (delete_cmd, obj_removed_cb): pass the parent window to
    the *_component_dialog() functions.

    * gui/dialogs/delete-comp.c (delete_component_dialog): use the 'widget'
    argument to get the parent window for the dialog.

2003-06-26  Bolian Yin <bolian.yin@sun.com>

    Fixes #45276

    * gui/e-day-view.c (e_day_view_on_text_item_event): set focus to dayview
    when editing is canceled.
    * gui/e-week-view.c (e_week_view_on_text_item_event): set focus to weekview
    when editing is canceled

2003-06-25  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #44723

    * gui/dialogs/alarm-page.c: added a new field to the private structure
    to keep track of the old summary.
    (alarm_page_init): initialize new field.
    (alarm_page_finalize): free new field.
    (alarm_page_set_summary): iterate over the list of alarms to change
    their description if it was the same as the event's summary.

2003-06-25  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #44719

    * gui/alarm-notify/alarm-notify-dialog.c (alarm_notify_dialog): use
    gtk_window_set_icon_from_file to set the window's icon and implemented
    the code to make the window sticky with GTK 2.x API.
    
2003-06-25  Bolian Yin <bolian.yin@sun.com>

    Fixes #45275

    * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): new function.
    (e_calendar_table_on_right_click_menu): call e_calendar_table_show_popup_menu.
    (e_calendar_table_on_popup_menu): callback for "popup_menu" signal.
    (e_calendar_table_init): connect to ETable's "popup_menu" signal.

2003-06-25  Bolian Yin <bolian.yin@sun.com>

    Fixes #45273

    * gui/e-day-view.c: implemented tabbing though events in day view.
    
2003-06-23  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/comp-editor.c (make_title_from_string, set_title_from_string):
    new functions.
    (page_summary_changed_cb): change the window title when the object's
    summary changes.

2003-06-22  Rodrigo Moya <rodrigo@ximian.com>

    * cal-client/cal-client.c (get_factories): don't use a static GList,
    since the value returned is freed in destroy_factories, making several
    clients use a buggy GList if one of them happen to be destroyed.

2003-06-22  Hans Petter Jansson  <hpj@ximian.com>

    * gui/print.c (get_font_for_size): Remove debug output.

    * gui/tasks-control.c (print_tasks): Ref and sink the printable.
    Use fixed (5%) margins instead of what gnome-print gives us.

2003-06-19  Dan Winship  <danw@ximian.com>

    * pcs/cal-backend.c (cal_backend_finalize): don't leak the
    CalBackendPrivate.

2003-06-18  Dan Winship  <danw@ximian.com>

    * gui/calendar-config.c (calendar_config_get_hpane_pos) 
    (calendar_config_get_vpane_pos) 
    (calendar_config_get_month_hpane_pos) 
    (calendar_config_get_month_vpane_pos): Plug in the defaults from
    the schemas file here, so that even if something goes wrong with
    the schemas, people will still get reasonable defaults instead of
    "I click on the calendar and it shows me tasks".

2003-06-16  Rodrigo Moya <rodrigo@ximian.com>

    * gui/dialogs/comp-editor.c (make_title_from_comp): removed unused
    variable.

2003-06-12  Jack Jia <jack.jia@sun.com>
 
    * gui/e-itip-control.c
    (struct _EItipControlPrivate): switch the "view_only" arg to be an
    int.
    (init): ditto.
    (e_itip_control_set_view_only): ditto.
    (e_itip_control_get_view_only): ditto.
 
    * gui/itip-bonobo-control.c
    (get_prop): switch BONOBO_ARG_SET_BOOLEAN to BONOBO_ARG_SET_INT.
    (set_prop): switch BONOBO_ARG_GET_BOOLEAN to BONOBO_ARG_GET_INT.
    (itip_bonobo_control_new): switch BONOBO_ARG_BOOLEAN to
    BONOBO_ARG_INT.
 
    Function "bonobo_property_bag_client_set_value_gboolean" can not
    work on solaris.

2003-06-10  Bolian Yin <bolian.yin@sun.com>

    Fixes #44682, Shift+F10 to active popup menu on day/week view

    * gui/e-day-view.c (e_day_view_key_press, e_day_view_do_key_press):
      When the key press is not handled, give keybindings the chance.
     (e_day_view_popup_menu, e_day_view_show_popup_menu,
     e_day_view_on_event_right_click ): popup menu will be activated from
     both keyboard and mouse.

    * gui/e-week-view.c (e_week_view_key_press, e_week_view_do_key_press):
          When the key press is not handled, give keybindings the chance.
     (e_week_view_popup_menu): popup menu can be activated from keyboard

2003-06-10  Rodrigo Moya <rodrigo@ximian.com>

    Fixes #41582

    * gui/gnome-cal.c (gnome_calendar_hpane_resized): killed warnings
    and added code to resize the EDayView's time column on the hpane's
    resizing.
    (gnome_calendar_vpane_resized): killed warnings.
    
2003-06-05  Not Zed  <NotZed@Ximian.com>

    ** For #42691.

    * gui/Makefile.am (%.server.in): implicit rule for .in file.
    (BUILT_SOURCES): added server_DATA.

    * gui/alarm-notify/Makefile.am (%.server.in): added implicit rule
    for .in file.
    (BUILT_SOURCES): added server_DATA.

2003-06-04  Rodrigo Moya <rodrigo@ximian.com>

    * pcs/query.c (start_cached_query_cb): adapted to changes in
    EComponentListener API.
    (query_construct): ditto.

    * cal-client/cal-client.c (cal_opened_cb): ditto.