/devel/gnustep-make/

v id='cgit'>
aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Include just <gtk/gtk.h> and not a handful of individual gtk headers.Tor Lillqvist2005-12-182-24/+25
| | | | | | | | | | 2005-12-13 Tor Lillqvist <tml@novell.com> * mail-session.c: Include just <gtk/gtk.h> and not a handful of individual gtk headers. Harmonize #include order and syntax. Use pthread_equal() to compare pthread_t values. svn path=/trunk/; revision=30837
* Use gstdio wrappers. Open file in binary mode.Tor Lillqvist2005-12-182-15/+18
| | | | | | | | 2005-12-13 Tor Lillqvist <tml@novell.com> * mail-ops.c: Use gstdio wrappers. Open file in binary mode. svn path=/trunk/; revision=30836
* Add copyright blurb. Include just <gtk/gtk.h> and not a handful ofTor Lillqvist2005-12-182-27/+61
| | | | | | | | | | | | | | | | | | 2005-12-13 Tor Lillqvist <tml@novell.com> * mail-mt.c: Add copyright blurb. Include just <gtk/gtk.h> and not a handful of individual gtk headers. Harmonize #include order and syntax. Use pthread_equal() to compare pthread_t values. Use separate flag field to indicate whether a pthread_t field is valid or not. Use e_util_pthread_id() in debugging output. (em_channel_setup): Call g_io_channel_win32_new_socket() on Win32 instead of g_io_channel_unix_new(). This avoids the occasional "giowin32.c:1661: 12 is both a file descriptor and a socket, file descriptor interpretation assumed." style warnings, which indicate a real problem in this case. svn path=/trunk/; revision=30835
* filter-file.c Use libedataserver's e_xml_parse_file(). Use gstdioTor Lillqvist2005-12-183-23/+25
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * filter-file.c * rule-context.c: Use libedataserver's e_xml_parse_file(). Use gstdio wrappers. Use g_file_test(). svn path=/trunk/; revision=30834
* Use gstdio wrappers.Tor Lillqvist2005-12-182-5/+13
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * filter-file.c: Use gstdio wrappers. svn path=/trunk/; revision=30833
* Include <gtk/gtk.h> instead of attempting to hand-pick individual GTKTor Lillqvist2005-12-182-14/+16
| | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-msg-composer-attachment.c: Include <gtk/gtk.h> instead of attempting to hand-pick individual GTK headers. Use gstdio wrappers. Use GDir instead of dirent. Use g_mkstemp() instead of mkstemp(). Construct xml file names at run-time. svn path=/trunk/; revision=30832
* Use GLib to construct filenames from URIs and vice versa.Tor Lillqvist2005-12-182-3/+6
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-cal-component-preview.c: Use GLib to construct filenames from URIs and vice versa. svn path=/trunk/; revision=30831
* Include libedataserver/e-xml-utils.h, too.Tor Lillqvist2005-12-181-10/+9
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/component/addressbook-migrate.c: Include libedataserver/e-xml-utils.h, too. svn path=/trunk/; revision=30830
* Nah, don't include <libedataserver/e-xml-utils.h> here. Just edit theTor Lillqvist2005-12-182-4/+0
| | | | | | | users of the functions that moved there include it instead of, or in addition to, "e-util/e-xml-utils.h". svn path=/trunk/; revision=30829
* Link with bootstrap libs on Win32. Use E_WIDGETS_CFLAGS instead ofTor Lillqvist2005-12-182-5/+24
| | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * Makefile.am: Link with bootstrap libs on Win32. Use E_WIDGETS_CFLAGS instead of GNOME_BONOBO_CFLAGS, GNOME_INCLUDEDIR, ICONV_CFLAGS and GNOME_FULL_CFLAGS. Link with all required libraries. Use -no-undefined on Win32. svn path=/trunk/; revision=30828
* For building on Win32 against GTK+ 2.8, include a copy of theTor Lillqvist2005-12-183-0/+1978
| | | | | | | | | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * eggtrayicon.c: For building on Win32 against GTK+ 2.8, include a copy of the GtkStatusIcon code from GTK+ HEAD (i.e., what will be GTK+ 2.10) and some helper functions from gdk/win32. Eventually when GTK+ 2.10 is released and Evo no longer needs to support older GTK+ versions, eggtrayicon.[ch] can be removed completely from here, as the use of eggtrayicon in ../calendar/gui/ alarm-notify/alarm-queue.c will automatically switch to using GtkStatusIcon instead. * eggtrayicon.h: Ditto, for building on Win32 against GTK+ 2.8, include a copy of gtkstatusicon.h from GTK+ HEAD. svn path=/trunk/; revision=30827
* Remove these functions that are now in libedataserver/e-xml-utils.cTor Lillqvist2005-12-183-94/+8
| | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-xml-utils.c (e_xml_get_child_by_name, e_xml_save_file): Remove these functions that are now in libedataserver/e-xml-utils.c * e-xml-utils.h: Include libedataserver/e-xml-utils.h. svn path=/trunk/; revision=30826
* Use GLib API where applicable for portability.Tor Lillqvist2005-12-182-20/+55
| | | | | | | | | | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-plugin.c: Use GLib API where applicable for portability. * e-plugin.c: Use e_xml_parse_file() and e_xml_save_file() instead of using libxml directly. * e-plugin.c: Add copyright header. (epl_construct): [Win32 only:] Remap the plugin location from the compile-time path to to a run-time path, to handle the common case where the location in the .eplug file is in Evo's compile-time prefix. Use libedataserver's e_util_get_prefix() and e_util_replace_prefix(). We could alternatively use relative paths in the .eplug files on Win32, like we do for .server files. svn path=/trunk/; revision=30825
* Use e_xml_parse_file() and e_xml_save_file() instead of using libxmlTor Lillqvist2005-12-172-6/+10
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-pilot-map.c: Use e_xml_parse_file() and e_xml_save_file() instead of using libxml directly. svn path=/trunk/; revision=30824
* Use GLib API where applicable for portability.Tor Lillqvist2005-12-172-21/+17
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-mktemp.c: Use GLib API where applicable for portability. svn path=/trunk/; revision=30823
* Use GLib API where applicable for portability.Tor Lillqvist2005-12-172-29/+31
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-icon-factory.c: Use GLib API where applicable for portability. svn path=/trunk/; revision=30822
* e-error.c Use gstdio wrappers. Use GDir instead of dirent.Tor Lillqvist2005-12-174-33/+42
| | | | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-error.c * e-fsutils.c: Use gstdio wrappers. Use GDir instead of dirent. * e-error.c * e-folder-map.c: Use e_xml_parse_file() instead of using libxml directly. svn path=/trunk/; revision=30821
* Don't need EXTRA_GNOME_CFLAGS or GNOME_FULL_CFLAGS.Tor Lillqvist2005-12-172-2/+3
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * Makefile.am (INCLUDES): Don't need EXTRA_GNOME_CFLAGS or GNOME_FULL_CFLAGS. svn path=/trunk/; revision=30820
* Include <gtk/gtk.h> instead of attempting to hand-pick individual GTKTor Lillqvist2005-12-172-36/+47
| | | | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-msg-composer.c: Include <gtk/gtk.h> instead of attempting to hand-pick individual GTK headers. Use gstdio wrappers. Use GDir instead of dirent. Use g_mkstemp() instead of mkstemp(). Construct xml file names at run-time. (autosave_manager_unregister): Close file before unlinking so we don't leave stray autosave files laying around on Win32. svn path=/trunk/; revision=30819
* Use g_build_filename(), g_filename_from_uri(), g_usleep().Tor Lillqvist2005-12-172-10/+47
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * importers/icalendar-importer.c: Use g_build_filename(), g_filename_from_uri(), g_usleep(). svn path=/trunk/; revision=30818
* : Use gstdio wrappers. Use g_filename_from_uri()Tor Lillqvist2005-12-172-5/+16
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/dialogs/comp-editor.c: : Use gstdio wrappers. Use g_filename_from_uri() svn path=/trunk/; revision=30817
* gui/dialogs/cal-attachment.h Remove unused files from CVS.Tor Lillqvist2005-12-173-740/+2
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/dialogs/cal-attachment.h * gui/dialogs/cal-attachment.c: Remove unused files from CVS. svn path=/trunk/; revision=30816
* gui/dialogs/cal-attachment-bar.h Remove unused files from CVS.Tor Lillqvist2005-12-173-1201/+3
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/dialogs/cal-attachment-bar.h * gui/dialogs/cal-attachment-bar.c: Remove unused files from CVS. svn path=/trunk/; revision=30815
* When building against GTK+ 2.9.0 or later, and always on Win32, use theTor Lillqvist2005-12-172-3/+102
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/alarm-notify/alarm-queue.c: When building against GTK+ 2.9.0 or later, and always on Win32, use the GtkStatusIcon API instead of EggTrayIcon. svn path=/trunk/; revision=30814
* Use gstdio wrappers. Use GDir API instead of dirent. UseTor Lillqvist2005-12-172-31/+39
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/migration.c: Use gstdio wrappers. Use GDir API instead of dirent. Use g_filename_{to,from}_uri(). Open files in binary mode. Use e_xml_parse_file() instead of xmlParseFile(). svn path=/trunk/; revision=30813
* Use gstdio wrappers.Tor Lillqvist2005-12-172-3/+6
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-memo-table.c: Use gstdio wrappers. svn path=/trunk/; revision=30812
* Use e_util_utf8_strcasecmp() to do proper casefolded comparison ofTor Lillqvist2005-12-172-19/+21
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-meeting-store.c: Use e_util_utf8_strcasecmp() to do proper casefolded comparison of translated (UTF-8) strings. svn path=/trunk/; revision=30811
* Use gstdio wrappers.Tor Lillqvist2005-12-172-3/+6
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-itip-control.c: Use gstdio wrappers. svn path=/trunk/; revision=30810
* Use gstdio wrappers.Tor Lillqvist2005-12-172-2/+5
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-calendar-view.c: Use gstdio wrappers. svn path=/trunk/; revision=30809
* Use gstdio wrappers.Tor Lillqvist2005-12-172-3/+6
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-calendar-table.c: Use gstdio wrappers. svn path=/trunk/; revision=30808
* Use e_util_utf8_strcasecmp() to do proper comparison of translated (UTF-8)Tor Lillqvist2005-12-172-5/+9
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-cal-model-tasks.c: Use e_util_utf8_strcasecmp() to do proper comparison of translated (UTF-8) strings. svn path=/trunk/; revision=30807
* Use gstdio wrappers.Tor Lillqvist2005-12-172-1/+4
| | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-cal-list-view.c: Use gstdio wrappers. svn path=/trunk/; revision=30806
* Combine my last two entries.Tor Lillqvist2005-12-171-5/+3
| | | | svn path=/trunk/; revision=30805
* Use g_filename_to_uri() to construct a file: URI.Tor Lillqvist2005-12-172-2/+7
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/e-cal-component-memo-preview.c (write_html): Use g_filename_to_uri() to construct a file: URI. svn path=/trunk/; revision=30804
* Use GLib to construct filenames from URIs and back.Tor Lillqvist2005-12-172-3/+15
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * conduits/calendar/calendar-conduit.c: Use GLib to construct filenames from URIs and back. svn path=/trunk/; revision=30803
* Use gstdio wrappers. Use GDir API instead of dirent. Use GLib to convertTor Lillqvist2005-12-172-2/+4
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * tools/evolution-addressbook-export-list-folders.c: Use gstdio wrappers. Use GDir API instead of dirent. Use GLib to convert file names to URIs and back. Open files in binary mode. svn path=/trunk/; revision=30802
* Use gstdio wrappers. No fork() on Windows, but the fork-to-backgroundTor Lillqvist2005-12-172-2/+17
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * tools/evolution-addressbook-export-list-cards.c: Use gstdio wrappers. No fork() on Windows, but the fork-to-background functionality doesn't seem essential? svn path=/trunk/; revision=30801
* gui/widgets/gal-view-minicard.c Use libedataserver's e_xml_parse_file()Tor Lillqvist2005-12-173-8/+26
| | | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/widgets/gal-view-minicard.c * printing/e-contact-print.c: Use libedataserver's e_xml_parse_file() and e_xml_save_file() instead of calling libxml functions directly, as they don't understand the GLib file name encoding (UTF-8) on Win32. svn path=/trunk/; revision=30800
* Use gstdio wrappers. Use GDir API instead of dirent. Use GLib to convertTor Lillqvist2005-12-172-9/+28
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * importers/evolution-vcard-importer.c: Use gstdio wrappers. Use GDir API instead of dirent. Use GLib to convert file names to URIs and back. Open files in binary mode. svn path=/trunk/; revision=30799
* ** Fixes bug #324094Srinivasa Ragavan2005-12-172-2/+11
| | | | | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bug #324094 * gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Added comments to few strings for translation. svn path=/trunk/; revision=30798
* Use gstdio wrappers. Use GDir API instead of dirent. Use GLib API toTor Lillqvist2005-12-172-24/+40
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * gui/component/addressbook-migrate.c: Use gstdio wrappers. Use GDir API instead of dirent. Use GLib API to convert file names to URIs and back. Open files in binary mode. svn path=/trunk/; revision=30797
* e-util-private.h (fsync) Don't bother with a Win32 implementation ofTor Lillqvist2005-12-173-32/+8
| | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-util-private.h (fsync) * e-util.c: Don't bother with a Win32 implementation of fsync() as the uses of fsync() in evo are pretty irrelevant. Just #define fsync() away on Win32. svn path=/trunk/; revision=30796
* Use g_ascii_strcasecmp() instead of g_strcasecmp() for well-definedness.Tor Lillqvist2005-12-172-1/+7
| | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-table/gal-a11y-e-cell.c (gal_a11y_e_cell_remove_action_by_name): Use g_ascii_strcasecmp() instead of g_strcasecmp() for well-definedness. svn path=/trunk/; revision=30795
* evolution-plugin.pc.in Use @privsolibdir@ to set privlibdir.Tor Lillqvist2005-12-173-3/+6
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * evolution-plugin.pc.in * evolution-shell.pc.in: Use @privsolibdir@ to set privlibdir. svn path=/trunk/; revision=30794
* Include libedataserver-$EDS_PACKAGE in the requirement list for E_WIDGETS.Tor Lillqvist2005-12-179-26/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | 2005-12-06 Tor Lillqvist <tml@novell.com> * configure.in: Include libedataserver-$EDS_PACKAGE in the requirement list for E_WIDGETS. Set bindir_in_server_file, privlibexecdir_in_server_file and componentdir_in_server_file. On Unix, they are the same as bindir, privlibexecdir and componentdir respectively. On Win32, use paths relative from lib/bonobo/servers. AC_SUBST these variables. * server.mk: Substitute the values above new variables for the corresponding @..._IN_SERVER_FILE@ strings in the .server.in.in files. * addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in * calendar/gui/GNOME_Evolution_Calendar.server.in.in * calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in * mail/GNOME_Evolution_Mail.server.in.in * shell/GNOME_Evolution_Shell.server.in.in * shell/GNOME_Evolution_Test.server.in.in: Correspondingly, use the @..._IN_SERVER_FILE@ strings. svn path=/trunk/; revision=30793
* Updated TranslationAnkitkumar Rameshchandra Patel2005-12-162-2206/+2794
| | | | svn path=/trunk/; revision=30792
* Fix #315901, Add shortcut to mark spam. Committed on behalf on AndreShreyas Srinivasan2005-12-162-2/+7
| | | | | | | | | 2005-12-16 Shreyas Srinivasan <sshreyas@novell.com> * evolution-mail-message.xml: Fix #315901, Add shortcut to mark spam. Committed on behalf on Andre Klapper svn path=/trunk/; revision=30791
* ** Fixes bugs #322499 and #227853Srinivasa Ragavan2005-12-165-4/+13
| | | | | | | | | | | | | 2005-12-16 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bugs #322499 and #227853 * evolution-addressbook.xml: Modified shortcut for preview * evolution-mail-global.xml: Modified shortcut for preview * evolution-tasks.xml: Modified shortcut for preview * evolution.xml: Removed Shortcut to hide status bar. svn path=/trunk/; revision=30790
* *** empty log message ***Ignacio Casal Quinteiro2005-12-162-180/+189
| | | | svn path=/trunk/; revision=30789
* Updated Finnish translationIlkka Tuohela2005-12-162-1206/+1305
| | | | svn path=/trunk/; revision=30788
* Committing the missed e-week-view.c in my prev commit, where i did justSrinivasa Ragavan2005-12-161-3/+3
| | | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Committing the missed e-week-view.c in my prev commit, where i did just the ChangeLog svn path=/trunk/; revision=30787
* Fixed a possible crash with the tooltip impl in calendarSrinivasa Ragavan2005-12-161-0/+7
| | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Fixed a possible crash with the tooltip impl in calendar svn path=/trunk/; revision=30786
* Committed Rajeev's fix.Srinivasa Ragavan2005-12-162-10/+7
| | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Committed Rajeev's fix. svn path=/trunk/; revision=30785
* Commited my right email address in ChangeLogSrinivasa Ragavan2005-12-151-1/+1
| | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Commited my right email address in ChangeLog svn path=/trunk/; revision=30784
* Commited fix to remove markup from translation and added few notes toSrinivasa Ragavan2005-12-152-1/+16
| | | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Commited fix to remove markup from translation and added few notes to translaters, on what will be displayed. svn path=/trunk/; revision=30783
* fixes #324058Chenthill Palanisamy2005-12-152-18/+13
| | | | svn path=/trunk/; revision=30782
* Added a visual cue to search bar to indicate search filter active.Srinivasa Ragavan2005-12-155-1/+71
| | | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Added a visual cue to search bar to indicate search filter active. svn path=/trunk/; revision=30781
* Corrected the commit dateChenthill Palanisamy2005-12-151-1/+1
| | | | svn path=/trunk/; revision=30780
* fixes #321739Chenthill Palanisamy2005-12-154-7/+159
| | | | svn path=/trunk/; revision=30779
* Added code to make the tooltips strings translatable. Also picked up theSrinivasa Ragavan2005-12-152-24/+15
| | | | | | | | | | | 2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Added code to make the tooltips strings translatable. Also picked up the color from the theme for the tooltip instead of hardcoded colors. svn path=/trunk/; revision=30778
* *** empty log message ***Ignacio Casal Quinteiro2005-12-152-50/+58
| | | | svn path=/trunk/; revision=30777
* Committed Johnny's patch for adding the FOR time implementationSrinivasa Ragavan2005-12-143-16/+180
| | | | | | | | 2005-12-14 Srinivasa Ragavan <sragavan@novell.com> * Committed Johnny's patch for adding the FOR time implementation svn path=/trunk/; revision=30776
* Committed Johnny's patch.Srinivasa Ragavan2005-12-142-1/+7
| | | | | | | | 2005-12-14 Srinivasa Ragavan <sragavan@novell.com> * Committed Johnny's patch. svn path=/trunk/; revision=30775
* Committed Johnny Patch to fix bug #324060Srinivas Ragavan2005-12-142-2/+22
| | | | | | | | 2005-12-14 Srinivas Ragavan <sragavan@novell.com> * Committed Johnny Patch to fix bug #324060 svn path=/trunk/; revision=30773
* Proceeding with the import activity only if the book is writable.Sushma Rai2005-12-143-0/+22
| | | | | | Fixes #266003. svn path=/trunk/; revision=30772
* ** Refixes the bug #320210Srinivasa Ragavan2005-12-142-1/+9
| | | | | | | | | | | | 2005-11-28 Srinivasa Ragavan <sragavan@novell.com> ** Refixes the bug #320210 * calendar.error.xml : Default button is changed to GTK_RESPONSE_YES in "prompt-delete-appointment". It was missed out in the earlier patch. svn path=/trunk/; revision=30771
* Committing Johnny Jacob's patch for bug #320210Srinivasa Ragavan2005-12-142-1/+8
| | | | | | | | 2005-12-14 Srinivasa Ragavan <sragavan@novell.com> * Committing Johnny Jacob's patch for bug #320210 svn path=/trunk/; revision=30770
* Updated Lithuanian translation.Žygimantas Beručka2005-12-142-310/+278
| | | | | | | | 2005-12-14 Žygimantas Beručka <zygis@gnome.org> * lt.po: Updated Lithuanian translation. svn path=/trunk/; revision=30769
* update for HEAD with Punjabi LanguageAmanpreet Singh Alam2005-12-141-2197/+2778
| | | | svn path=/trunk/; revision=30768
* *** empty log message ***Ignacio Casal Quinteiro2005-12-142-245/+160
| | | | svn path=/trunk/; revision=30767
* Add ellipsis characters to various menu items that are commands/actionsDavid Malcolm2005-12-142-10/+16
| | | | | | | | | | 2005-12-13 David Malcolm <dmalcolm@redhat.com> * evolution-mail-message.xml: Add ellipsis characters to various menu items that are commands/actions requiring further user interaction, fixing bug #323951 svn path=/trunk/; revision=30766
* Fix to build in Suse 93Chenthill Palanisamy2005-12-133-7/+21
| | | | svn path=/trunk/; revision=30765
* Removed the pruned files from POTFILES.inChenthill Palanisamy2005-12-132-2/+5
| | | | svn path=/trunk/; revision=30764
* Comitting guenther's patchSrinivasa Ragavan2005-12-132-1/+6
| | | | | | | | 2005-12-13 Srinivasa Ragavan <sragavan@novell.com> * Comitting guenther's patch svn path=/trunk/; revision=30763
* Release updates, version bump. ***** Release 2.5.3 *****Harish Krishnaswamy2005-12-133-1/+66
| | | | | | | | | 2005-12-12 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Release updates, version bump. ***** Release 2.5.3 ***** svn path=/trunk/; revision=30761
* escape the string when generating XML UI description of component switcherDavid Malcolm2005-12-132-2/+14
| | | | | | | | | | | 2005-12-12 David Malcolm <dmalcolm@redhat.com> * e-shell-window.c (setup_widgets): escape the string when generating XML UI description of component switcher menu item, to avoid it being non-well-formed when a translation contains a quote character. Fixes #322001 svn path=/trunk/; revision=30760
* Remove dead files. ReferHarish Krishnaswamy2005-12-1316-2747/+0
| | | | | | | | 2005-12-12 Harish Krishnaswamy <kharish@novell.com> Remove dead files. Refer http://cvs.gnome.org/bonsai/cvsquery.cgi?branch=&dir=evolution&who=vvaradan&date=explicit&mindate=2005-12-12%2011:23&maxdate=2005-12-12%2011:25 for more information. svn path=/trunk/; revision=30759
* Patch from Irene Huang <Irene.Huang@sun.com>.Veerapuram Varadhan2005-12-1310-25/+51
| | | | | | | | * Remove files that have an identical counterpart in libedataserver. * Replace the use of such files with appropriate counterpart path. svn path=/trunk/; revision=30758
* Mail Context Menu re-ordered correctly, fixes bug #323140.Karsten Bräckelmann2005-12-122-2/+7
| | | | | | | | | 2005-12-12 Karsten Bräckelmann <guenther@rudersport.de> * em-folder-view.c: Mail Context Menu re-ordered correctly, fixes bug #323140. svn path=/trunk/; revision=30757
* Fix #47857Shreyas Srinivasan2005-12-122-1/+5
| | | | | | | | 2005-12-12 Shreyas Srinivasan <sshreyas@novell.com> * mail.error.xml: Fix #47857 svn path=/trunk/; revision=30756
* Using the proper error code, and also removed hard coded URL fromSushma Rai2005-12-123-4/+15
| | | | | | translatable string. svn path=/trunk/; revision=30755
* Fix mnemonic keyKwok-Koon Cheung2005-12-122-9/+13
| | | | | | * zh_TW.po: Fix mnemonic key svn path=/trunk/; revision=30753
* Added bug in to ChangeLogSushma Rai2005-12-121-0/+1
| | | | svn path=/trunk/; revision=30751
* Fix make-clean issues.Harish Krishnaswamy2005-12-1222-1/+71
| | | | | | | | 2005-12-12 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Fix make-clean issues. svn path=/trunk/; revision=30750
* Fix make-clean issues.Harish Krishnaswamy2005-12-122-0/+7
| | | | | | | | 2005-12-12 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Fix make-clean issues. svn path=/trunk/; revision=30749
* Add primary CLEANFILES, fix BUILT_SOURCES, make-clean issues.Harish Krishnaswamy2005-12-122-1/+8
| | | | | | | | | 2005-12-12 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Add primary CLEANFILES, fix BUILT_SOURCES, make-clean issues. svn path=/trunk/; revision=30748
* Updated Czech translation.Miloslav Trmac2005-12-122-1961/+2884
| | | | | | | | 2005-12-11 Miloslav Trmac <mitr@volny.cz> * cs.po: Updated Czech translation. svn path=/trunk/; revision=30747
* Not inserting new line at the end and also placing the cursor at theSushma Rai2005-12-102-4/+16
| | | | | | beginning of the widget. Fixes #300300. svn path=/trunk/; revision=30745
* Fixed substitutions that I missed in the last commit.Harish Krishnaswamy2005-12-104-4/+4
| | | | | | | 2005-12-10 Harish Krishnaswamy <kharish@novell.com> Fixed substitutions that I missed in the last commit. svn path=/trunk/; revision=30744
* Updated evo translation.Funda Wang2005-12-101-714/+761
| | | | svn path=/trunk/; revision=30743
* Updated Traditional Chinese translation.Chao-Hsiung Liao2005-12-102-224/+245
| | | | | | | | 2005-12-10 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw> * zh_TW.po: Updated Traditional Chinese translation. svn path=/trunk/; revision=30741
* Updated Spanish translation.Francisco Javier F. Serrador2005-12-092-122/+137
| | | | | | | | 2005-12-09 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=30740
* prefix the wrapper functions with e - do not use g lest it is assumed toHarish Krishnaswamy2005-12-0910-17/+34
| | | | | | | | | | | | | | | | 2005-12-09 Harish Krishnaswamy <kharish@novell.com> * e-util.[ch] (e_str_compare), (e_str_case_compare), (e_collate_compare), (e_int_compare): prefix the wrapper functions with e - do not use g lest it is assumed to be a glib function. * e-table-example-2.c (create_table), e-table-extras.c (ete_init): * e-table-size-test.c (create_table), test-check.c (check_test): * test-cols.c (multi_cols_test), test-table.c (table_browser_test): s/g_*_compare/e_*_compare. svn path=/trunk/; revision=30739
* fixes the tool tip crash.Chenthill Palanisamy2005-12-099-69/+267
| | | | svn path=/trunk/; revision=30738
* *** empty log message ***Ignacio Casal Quinteiro2005-12-082-761/+779
| | | | svn path=/trunk/; revision=30737
* Fixes #322740. change the condition expression for GDK_RIGHT and GDK_LEFT.Boby Wang2005-12-072-2/+8
| | | | | | | | | | 2005-12-07 Boby Wang <boby.wang@sun.com> Fixes #322740. * e-tree.c: (item_key_press): change the condition expression for GDK_RIGHT and GDK_LEFT. svn path=/trunk/; revision=30736
* Add menu item for prioritising messageParthasarathi Susarla2005-12-072-2/+12
| | | | | | | | | 2005-12-07 Parthasarathi Susarla <sparthasarathi@novell.com> * evolution-message-composer.xml: Add menu item for prioritising message svn path=/trunk/; revision=30735
* Add support for setting priority of a message.Parthasarathi Susarla2005-12-073-0/+79
| | | | | | | | | | | | | | 2005-12-07 Parthasarathi Susarla <sparthasarathi@novell.com> * e-msg-composer.[ch]: (build_message): (menu_insert_priority_cb): (setup_ui): (e_msg_composer_get_priority): (e_msg_composer_set_priority): Add support for setting priority of a message. svn path=/trunk/; revision=30734
* Mark various plugins translatable.Funda Wang2005-12-0710-12/+32
| | | | svn path=/trunk/; revision=30733
* Updated Lithuanian translation.Žygimantas Beručka2005-12-072-97/+103
| | | | | | | | 2005-12-02 Žygimantas Beručka <zygis@gnome.org> * lt.po: Updated Lithuanian translation. svn path=/trunk/; revision=30732
* Load the widget pointer before using it. Fixes a compiler warning as wellVeerapuram Varadhan2005-12-062-1/+7
| | | | | | | | * menus/gal-view-new-dialog.c (gal_view_new_dialog_set_property): Load the widget pointer before using it. Fixes a compiler warning as well as #313219 svn path=/trunk/; revision=30731
* Authenticate by reading the store-password for calendars that has "auth"Veerapuram Varadhan2005-12-062-2/+68
| | | | | | | | | | * conduits/addressbook-conduit.c: (pre_sync): Authenticate by reading the store-password for calendars that has "auth" property set. * conduits/addressbook-conduit.c: (addressbook_authenticate): Implement authentication using e-passwords. svn path=/trunk/; revision=30730
* Authenticate by reading the stored-password for tasks that has "auth"Veerapuram Varadhan2005-12-062-7/+57
| | | | | | | | | | | * conduits/todo/todo-conduit.c (start_calendar_server): Authenticate by reading the stored-password for tasks that has "auth" property set. (pre_sync): Moved setting of timezone to start_calendar_server as per the current e-d-s requirements. ** Fixes #316315 svn path=/trunk/; revision=30729
* Authenticate by reading the stored-password for calendar that has "auth"Veerapuram Varadhan2005-12-062-15/+60
| | | | | | | | | | | * conduits/calendar/calendar-conduit.c (start_calendar_server): Authenticate by reading the stored-password for calendar that has "auth" property set. (pre_sync): Moved setting of timezone to start_calendar_server as per the current e-d-s requirements. ** Fixes #316315 svn path=/trunk/; revision=30728
* See bug ** 323253Shi Pu2005-12-062-1/+9
| | | | | | | | | | | | 2005-12-05 Shi Pu <shi.pu@sun.com> See bug ** 323253 * mail-send-recv.c: (format_url): If url->host is NULL or it is emtpy, don't print it out in send & receive dialog. svn path=/trunk/; revision=30727
* Updated Belarusian translation.Ales Nyakhaychyk2005-12-06