aboutsummaryrefslogtreecommitdiffstats
path: root/print/yatex
diff options
context:
space:
mode:
Diffstat (limited to 'print/yatex')
-rw-r--r--print/yatex/Makefile18
-rw-r--r--print/yatex/distinfo2
-rw-r--r--print/yatex/files/DEINSTALL.tmpl3
-rw-r--r--print/yatex/files/INSTALL.tmpl21
4 files changed, 22 insertions, 22 deletions
diff --git a/print/yatex/Makefile b/print/yatex/Makefile
index f65192dcf2b1..bcc0a53a84fb 100644
--- a/print/yatex/Makefile
+++ b/print/yatex/Makefile
@@ -1,13 +1,13 @@
# New ports collection makefile for: YaTeX
-# Version required: 1.65.6
-# Date created: Oct 9 1998
+# Version required: 1.66
+# Date created: 98/11/17
# Whom: Satoshi Taoka <taoka@infonets.hiroshima-u.ac.jp>
#
-# $Id: Makefile,v 1.3 1998/11/11 14:33:01 kuriyama Exp $
+# $Id: Makefile,v 1.4 1998/11/15 12:21:56 kuriyama Exp $
#
-DISTNAME= yatex9805062331
-PKGNAME?= yatex-1.65.6
+DISTNAME= yatex1.66
+PKGNAME?= yatex-1.66
CATEGORIES?= print elisp
MASTER_SITES= http://www.comp.ae.keio.ac.jp/~yuuji/yatex/ \
http://www.comp.ae.keio.ac.jp/~yuuji/tmp/
@@ -25,18 +25,20 @@ BUILD_DEPENDS= xemacs:${PORTSDIR}/editors/xemacs-mule \
bash:${PORTSDIR}/shells/bash2
.endif
-VERSION= 1.65.6
+VERSION= 1.66
TARGETNAME= YaTeX
DIRSECTION= The Emacs editor and associated tools
+ADDSITESTART=
+SITESTARTDIR=
# Note that 'INFODIR' is defined in bsd.info.mk
.if !defined(XEMACS-MULE)
INFODIR= ${PREFIX}/info
.endif
+.if defined(MULE)
# The value of ADDSITESTART should follow a format of printf(1)
ADDSITESTART= (setq load-path (append (list \\n\
\\t\\"${ELISPDIR}/yatex\\"\\n\
\\t) load-path))\\n
-.if defined(MULE)
EMACSDIR= ${PREFIX}/share/mule
SITESTARTDIR= ${EMACSDIR}/19.34/site-lisp
.endif
@@ -45,8 +47,6 @@ EMACS= xemacs
EMACSDIR= ${PREFIX}/lib/xemacs
#
INFODIR= ${EMACSDIR}/info
-ADDSITESTART=
-SITESTARTDIR=
.endif
.if defined(MULE) || defined(XEMACS-MULE)
NEW= yatex.new
diff --git a/print/yatex/distinfo b/print/yatex/distinfo
index 66a3a4afcc86..78b6d5250146 100644
--- a/print/yatex/distinfo
+++ b/print/yatex/distinfo
@@ -1 +1 @@
-MD5 (yatex9805062331.tar.gz) = d3043e678e4b919e1f5795b422dac5b9
+MD5 (yatex1.66.tar.gz) = a112d4762f25ceb3b89480e51ae022d1
diff --git a/print/yatex/files/DEINSTALL.tmpl b/print/yatex/files/DEINSTALL.tmpl
index 30807e5099a1..169e15519733 100644
--- a/print/yatex/files/DEINSTALL.tmpl
+++ b/print/yatex/files/DEINSTALL.tmpl
@@ -21,7 +21,8 @@ if [ "X$2" = X"DEINSTALL" ]; then
for file in `echo ${infofiles} | ${SED} "s,:, ,g"`; do
install-info --delete ${infodir}/${file} ${infodir}/dir
done
- if [ "`grep \"^${OptionStart}\" ${sitestartdir}/site-start.el`" ]; then
+ if [ X"${sitestartdir}" != X ] && \
+ [ "`grep \"^${OptionStart}\" ${sitestartdir}/site-start.el`" ]; then
${ECHO} "Deleting entry for \"${pkgname}\" from ${sitestartdir}/site-start.el"
${SED} -e "/^${OptionStart}/,/^${OptionEnd}/d" \
${sitestartdir}/site-start.el > ${sitestartdir}/site-start.el.bak
diff --git a/print/yatex/files/INSTALL.tmpl b/print/yatex/files/INSTALL.tmpl
index f3dea6f828d0..20b9036c31a0 100644
--- a/print/yatex/files/INSTALL.tmpl
+++ b/print/yatex/files/INSTALL.tmpl
@@ -49,17 +49,16 @@ if [ "X$2" = X"POST-INSTALL" ]; then
for file in `${ECHO} ${infofiles} | ${SED} "s,:, ,g"`; do
install-info ${infodir}/${file} ${infodir}/dir
done
- if [ X'%ADDSITESTART%' != X ]; then
- if [ "`${GREP} \"^${OptionStart}\" ${sitestartdir}/site-start.el`" ]; then
- ${SED} -e "/^${OptionStart}/,/^${OptionEnd}/d" \
- ${sitestartdir}/site-start.el > ${sitestartdir}/site-start.el.bak
- ${CP} ${sitestartdir}/site-start.el.bak ${sitestartdir}/site-start.el
- fi
- ${ECHO} "Adding entry for \"${pkgname}\" to ${sitestartdir}/site-start.el"
- ${ECHO} "${OptionStart}" >> ${sitestartdir}/site-start.el
- /usr/bin/printf "%ADDSITESTART%" | \
- ${SED} "s/^ //" >> ${sitestartdir}/site-start.el
- ${ECHO} "${OptionEnd}" >> ${sitestartdir}/site-start.el
+ if [ X"${sitestartdir}" != X ] && \
+ [ "`${GREP} \"^${OptionStart}\" ${sitestartdir}/site-start.el`" ]; then
+ ${SED} -e "/^${OptionStart}/,/^${OptionEnd}/d" \
+ ${sitestartdir}/site-start.el > ${sitestartdir}/site-start.el.bak
+ ${CP} ${sitestartdir}/site-start.el.bak ${sitestartdir}/site-start.el
+ ${ECHO} "Adding entry for \"${pkgname}\" to ${sitestartdir}/site-start.el"
+ ${ECHO} "${OptionStart}" >> ${sitestartdir}/site-start.el
+ /usr/bin/printf "%ADDSITESTART%" | \
+ ${SED} "s/^ //" >> ${sitestartdir}/site-start.el
+ ${ECHO} "${OptionEnd}" >> ${sitestartdir}/site-start.el
fi
exit 0
else
mitgraph'>| | | | | | | | | | 2005-07-25 Srinivasa Ragavan <sragavan@novell.com> * e-message-composer.c: Added Shortcut for Save Draft (Ctrl+Shift+s) and a toolbar button for the same. Fixes #219242. Commited Devasish patch. svn path=/trunk/; revision=29872 * Added Shortcut for Save Draft -(Ctrl+Shift+S) and a toolbar button for theSrinivasa Ragavan2005-07-252-1/+11 | | | | | | | | | | 2005-07-25 Srinivasa Ragavan <sragavan@novell.com> * evolution-message-composer.xml: Added Shortcut for Save Draft -(Ctrl+Shift+S) and a toolbar button for the same. Fixes #219242. Commiting Devashish Sharma's patch svn path=/trunk/; revision=29871 * Added the new file process-meeting.c and widgets/misc to include headers.Chenthill Palanisamy2005-07-255-6/+306 | | | | | | | | | | | | | 2005-07-23 Chenthill Palanisamy <pchenthill@novell.com> * Makefile.am: Added the new file process-meeting.c and widgets/misc to include headers. * org-gnome-groupwise-features.eplug.xml: Added the hook for processing meetings. * org-gnome-shared-folder.errors.xml: Added the message for asking for error svn path=/trunk/; revision=29870 * Added a mask to check if the meeting needs to be accepted. Increased theChenthill Palanisamy2005-07-255-13/+56 | | | | | | | | | | | | | | | | | 2005-07-23 Chenthill Palanisamy <pchenthill@novell.com> * gui/e-cal-popup.[ch]: (needs_to_accept), (e_cal_popup_target_new_select): Added a mask to check if the meeting needs to be accepted. * gui/e-calendar-view.c: Increased the index of the labels. * gui/e-day-view.c: (set_text_as_bold): * gui/e-week-view.c: (set_text_as_bold): Show as bold even if the attendee property is not found, since it might be a mailing list. The attendee will be added once he accepts meeting. svn path=/trunk/; revision=29869 * Fixes a bug where it allows just builtin views to be edited and not userSrinivasa Ragavan2005-07-252-2/+8 | | | | | | | | | | 2005-07-21 Srinivasa Ragavan <sragavan@novell.com> * menus/gal-define-views-dialog.c: (etable_selection_change_forall_cb) Fixes a bug where it allows just builtin views to be edited and not user added one. It should have been the other way around. svn path=/trunk/; revision=29868 * Added code to use stock icons instead of -> and <-Srinivasa Ragavan2005-07-252-8/+262 | | | | | | | | | 2005-07-25 Srinivasa Ragavan <sragavan@novell.com> * e-table-config.glade: Added code to use stock icons instead of -> and <- svn path=/trunk/; revision=29867 * Added code to create a attachment bar.Srinivasa Ragavan2005-07-257-36/+542 | | | | | | | | | | | | | | | | | | | | | 2005-07-25 Srinivasa Ragavan <sragavan@novell.com> * em-format-html-display.c: (efhd_init) (efhd_finalise) () (efhd_attachment_image) (efhd_attachment_button) (efhd_format_attachment) Added code to create a attachment bar. * em-format-html.c: (efh_format_message) Added code to add bar at the beginning of the message. * em-popup.[ch]: (em_popup_target_new_attachments) (emp_part_popup_set_background) (emp_standard_menu_factory) Added code to handle the popup menu inside the attachment bar. * em-utils.[ch]: (em_utils_edit_filters) (emu_get_save_filesel) (em_utils_save_part) (em_utils_save_messages) Added code to handle save selected and save all options of the attachment bar. svn path=/trunk/; revision=29866 * Updated Finnish translationIlkka Tuohela2005-07-252-7/+12 | | | | svn path=/trunk/; revision=29865 * Updated Finnish translationIlkka Tuohela2005-07-252-1582/+3335 | | | | svn path=/trunk/; revision=29864 * Updated Norwegian bokmÃ¥l translation. SameKjartan Maraas2005-07-243-2514/+3919 | | | | | | | | | 2005-07-24 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Updated Norwegian bokmÃ¥l translation. * no.po: Same svn path=/trunk/; revision=29863 * Updated pt_BR translationRaphael Higino2005-07-241-0/+4 | | | | svn path=/trunk/; revision=29862 * Updated Simplified Chinese translationFunda Wang2005-07-241-324/+407 | | | | svn path=/trunk/; revision=29861 * vi.po: Updated Vietnamese translation.Clytie Siddall2005-07-242-319/+407 | | | | svn path=/trunk/; revision=29860 * Updated Spanish translation.Francisco Javier F. Serrador2005-07-242-343/+451 | | | | | | | | 2005-07-23 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=29859 * Added many files, sorted. Updated Canadian English translation.Adam Weinberger2005-07-244-343/+450 | | | | | | | | | 2005-07-23 Adam Weinberger <adamw@gnome.org> * POTFILES.in, POTFILES.skip: Added many files, sorted. * en_CA.po: Updated Canadian English translation. svn path=/trunk/; revision=29858 * Updated Canadian English translation.Adam Weinberger2005-07-242-17/+35 | | | | | | | | 2005-07-23 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation. svn path=/trunk/; revision=29857 * Marking "Novell GroupWise Address Book" for offline usage, by default.Sushma Rai2005-07-232-1/+11 | | | | svn path=/trunk/; revision=29856 * Updated Lithuanian translation.Žygimantas Beručka2005-07-232-1733/+2353 | | | | | | | | 2005-07-23 Žygimantas Beručka <uid0@akl.lt> * lt.po: Updated Lithuanian translation. svn path=/trunk/; revision=29855 * Updated Japanese translation for v2.3.5 (not completed yet).Takeshi AIHANA2005-07-232-1479/+2096 | | | | | | | | 2005-07-23 Takeshi AIHANA <aihana@gnome.gr.jp> * ja.po: Updated Japanese translation for v2.3.5 (not completed yet). svn path=/trunk/; revision=29854 * Updated Simplified Chinese translationFunda Wang2005-07-232-347/+460 | | | | svn path=/trunk/; revision=29853 * vi.po: Updated Vietnamese translation.Clytie Siddall2005-07-232-42/+61 | | | | svn path=/trunk/; revision=29852 * Translation updated by Ivar Smolin.Priit Laes2005-07-232-107/+141 | | | | | | | | 2005-07-23 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29851 * Fixes #309991Chenthill Palanisamy2005-07-223-0/+60 | | | | | | | | | | | | | 2005-07-22 Chenthill Palanisamy <pchenthill@novell.com> Fixes #309991 * gui/e-cal-model.c: (ensure_dates_are_in_default_zone), (e_cal_view_objects_added_cb): * gui/gnome-cal.c: (ensure_dates_are_in_default_zone), (dn_e_cal_view_objects_added_cb): If the start date and end date are in UTC convert them to default zone while displaying. svn path=/trunk/; revision=29850 * Using autocompletion stock icon instead of contacts icon, forSushma Rai2005-07-222-1/+7 | | | | | | autocompletion. Fixes #257329. svn path=/trunk/; revision=29849 * Showing the file_as name in the contact editor dialog title. Patch bySushma Rai2005-07-222-6/+37 | | | | | | "Arunprakash <arunp@novell.com>". Fixes #235830. svn path=/trunk/; revision=29848 * added plugins/exchange-operations/org-gnome-exchange-*-subscription.xmlShakti Sen2005-07-222-0/+9 | | | | | | | | | | 2005-07-22 Shakti Sen <shprasad@novell.com> * POTFILES.in : added plugins/exchange-operations/org-gnome-exchange-*-subscription.xml files. svn path=/trunk/; revision=29847 * Included files org-gnome-exchange-ab-subscription.xml,Shakti Sen2005-07-227-9/+117 | | | | | | | | | | | | | | | | | 2005-07-20 Shakti Sen <shprasad@novell.com> * Makefile.am: Included files org-gnome-exchange-ab-subscription.xml, org-gnome-exchange-tasks-subscription.xml and org-gnome-exchange-cal-subscription.xml. * org-gnome-exchange-ab-subscription.xml: Added newly to add "Subscribe to Other User's Contacts' menu-item in 'File' menu for address book. * org-gnome-exchange-tasks-subscription.xml: Same for 'Tasks'. * org-gnome-exchange-cal-subscription.xml: Same for 'Calendar'. Fixes bug #310985. svn path=/trunk/; revision=29846 * Updated Canadian English translation.Adam Weinberger2005-07-222-217/+245 | | | | | | | | 2005-07-22 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation. svn path=/trunk/; revision=29845 * Changed the strings to be more interactive and consistent with theSankar P2005-07-222-2/+7 | | | | | | | | | 2005-07-22 Sankar P <psankar@novell.com> * shell.error.xml : Changed the strings to be more interactive and consistent with the exisiting dialog prompts. svn path=/trunk/; revision=29844 * Put back the fix I committed on 2005-03-31, not sure when it got reverted.Vivek Jain2005-07-222-14/+46 | | | | | | | | | | 2005-07-22 Vivek Jain <jvivek@novell.com> * share-folder.c : Put back the fix I committed on 2005-03-31, not sure when it got reverted. **Fixes #311217 svn path=/trunk/; revision=29843 * Handling the rename of calendars. This addresses the bug 310433 RemovedPraveen Kumar2005-07-226-319/+136 | | | | | | | | | | | | | | | | | | 2005-07-22 Praveen Kumar <kpraveen@novell.com> * exchange-calendar.c : Handling the rename of calendars. This addresses the bug 310433 * exchange-config-listener.c : Removed the functions add_folder_esource and remove_folder_esource * exchange-contacts.c : Handling the rename of addressbooks. Also modified the way of Exchange addressbook ESource URI handling to be the same way as calendar ESource URI handling * exchange-operations.c (exchange_operations_update_child_esources) : Added new to handle the rename of the ESources of all child folders in the case of parent folder being renamed. * exchange-operations.h : Added prototype for the new function svn path=/trunk/; revision=29842 * Creating the tasks-menu. Activated/deactivated the menu. In brief, addedShakti Sen2005-07-223-0/+27 | | | | | | | | | | | | | 2005-07-21 Shakti Sen <shprasad@novell.com> * gui/e-tasks.c (e_tasks_init): Creating the tasks-menu. * gui/tasks-control.c (tasks_control_activate, tasks_control_deactivate): Activated/deactivated the menu. In brief, added support for 'Tasks' menu creation. Fixes bug #310985. svn path=/trunk/; revision=29841 * vi.po: Updated Vietnamese translation.Clytie Siddall2005-07-222-308/+330 | | | | svn path=/trunk/; revision=29840 * Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>Alexander Shopov2005-07-222-1214/+1595 | | | | | | | | | 2005-07-22 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org> svn path=/trunk/; revision=29839 * Fixes #309602Chenthill Palanisamy2005-07-223-2/+90 | | | | | | | | | | | | | | | | 2005-07-21 Chenthill Palanisamy <pchenthill@novell.com> Fixes #309602 * gui/e-day-view.c: (set_text_as_bold), (e_day_view_update_event_label), (e_day_view_update_long_event_label), (e_day_view_ensure_rows_visible): * gui/e-week-view.c: (set_text_as_bold), (e_week_view_update_event_cb): Check if the backend allows to adding the unaccepted appointments to calendar and show its summary as bold text. svn path=/trunk/; revision=29838 * Updated Slovak translation.Marcel Telka2005-07-222-474/+1002 | | | | | | | | 2005-07-21 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation. svn path=/trunk/; revision=29837 * Updated Spanish translation.Francisco Javier F. Serrador2005-07-222-330/+423 | | | | | | | | 2005-07-21 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=29836 * Translation updated by Ivar Smolin.Priit Laes2005-07-222-347/+419 | | | | | | | | 2005-07-21 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29835 * Rescan the tree before fetching the folder list. Similar Dont add theSarfraaz Ahmed2005-07-215-5/+17 | | | | | | | | | | | | | | 2005-07-21 Sarfraaz Ahmed <asarfraaz@novell.com> * exchange-calendar.c (e_exchange_calendar_get_calendars): Rescan the tree before fetching the folder list. * exchange-contacts.c (e_exchange_contacts_get_contacts): Similar * exchange-config-listener.c (account_added): Dont add the sources here now. Its now taken care while the folders are being created in e-d-s. * exchange-folder.c (org_gnome_exchange_folder_subscription): Dont add the esources here. svn path=/trunk/; revision=29834 * Not prompting the delete confirmation dialog for cut contact operation.Sushma Rai2005-07-214-6/+18 | | | | | | Fixes #311090 svn path=/trunk/; revision=29833 * Fixes #245331. Keybindings for switching b/w calendar views.Harish Krishnaswamy2005-07-213-2/+63 | | | | | | | | | | | | | 2005-07-21 Harish Krishnaswamy <kharish@novell.com> * gui/gnome-cal.c (gnome_calendar_class_init), (adjust_e_cal_view_sexp), (display_view), (gnome_calendar_change_view): * gui/gnome-cal.h: Fixes #245331. Keybindings for switching b/w calendar views. svn path=/trunk/; revision=29832 * updated by rranjan@redhat.comRajesh Ranjan2005-07-211-485/+394 | | | | svn path=/trunk/; revision=29830 * Translation updated by Tino Meinen.Vincent van Adrighem2005-07-212-1233/+2077 | | | | | | | | 2005-07-21 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated by Tino Meinen. svn path=/trunk/; revision=29829 * Added string for forget password prompt.Sankar P2005-07-213-1/+17 | | | | | | | | | | | | 2005-07-21 Sankar P <psankar@novell.com> * shell.error.xml : Added string for forget password prompt. * e-shell-window-commands.c: (command_forget_passwords) Added call to a confirmation dialog before forgetting passwords. Fixes bug #216021 svn path=/trunk/; revision=29828 * fix the pixmap location for the settings menu.Not Zed2005-07-213-3/+12 | | | | | | | | | | | | 2005-07-21 Not Zed <NotZed@Ximian.com> * e-shell-window-commands.c: fix the pixmap location for the settings menu. * e-shell-window.c (setup_widgets): reverted dobey's patch to put the components in the useless tools window. svn path=/trunk/; revision=29827 * reverted dobey's busted view->hide* menu stuff.Not Zed2005-07-212-12/+8 | | | | | | | | | | | | | | 2005-07-21 Not Zed <NotZed@Ximian.com> * em-folder-browser.c: reverted dobey's busted view->hide* menu stuff. * em-account-editor.c (emae_option_entry): if we get a null default, then set "" on the entry. (emae_option_entry): set the default value on the url if it doesn't exist already. svn path=/trunk/; revision=29826 * removed the useless tools menu.Not Zed2005-07-214-31/+17 | | | | | | | | | | 2005-07-21 Not Zed <NotZed@Ximian.com> * evolution.xml: removed the useless tools menu. * evolution-mail-list.xml: reverted dobey's broken hide menus. svn path=/trunk/; revision=29825 * Remove the tools menu which someone was too lazy to remove.Not Zed2005-07-212-4/+5 | | | | | | | | | 2005-07-21 Not Zed <NotZed@Ximian.com> * org-gnome-plugin-manager.xml: Remove the tools menu which someone was too lazy to remove. svn path=/trunk/; revision=29824 * Use camel_object_unref instead of g_object_unref.Shreyas Srinivasan2005-07-212-5/+10 | | | | | | | | | 2005-07-21 Shreyas Srinivasan <sshreyas@novell.com> * e-msg-composer-hdrs.c (account_can_send): Use camel_object_unref instead of g_object_unref. svn path=/trunk/; revision=29823 * if we get a null default, then set "" on the entry. (emae_option_entry):Not Zed2005-07-2112-32/+253 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2005-07-21 Not Zed <NotZed@Ximian.com> * em-account-editor.c (emae_option_entry): if we get a null default, then set "" on the entry. (emae_option_entry): set the default value on the url if it doesn't exist already. 2005-07-20 Not Zed <NotZed@Ximian.com> * mail-send-recv.c (refresh_folders_desc, refresh_folders_get) (refresh_folders_got, refresh_folders_free, get_folders) (receive_update_got_folderinfo, receive_update_got_store): refresh all the folders manually and directly. * mail-folder-cache.c (setup_folder): propagate even -1 unread counts, they get ignored later. * em-composer-utils.c (emu_handle_receipt_message) (em_utils_handle_receipt): use getmessagex too, so we can always clear any error. * em-folder-view.c (emfv_message_selected_timeout) (emfv_list_done_message_selected): use getmessagex and do something meaninful with the error. * mail-ops.c (mail_get_messagex): added new get message which returns an exception. 2005-07-19 Not Zed <NotZed@Ximian.com> * mail-tools.c (mail_tool_uri_to_folder): dont get the service connected, it will connect if it needs to. * mail-ops.c (get_folderinfo_get): * em-folder-utils.c (emft_copy_folders__copy) (emfu_delete_folders): * em-folder-tree.c (emft_get_folder_info__get): Always request subscribed folders, if the backend doesn't implement it it will ignore it. 2005-07-13 Not Zed <NotZed@Ximian.com> * mail-send-recv.c (mail_autoreceive_init, auto_online): listen to session online events, and if we are online, trigger an auto-receive of all auto-check accounts. 2005-07-11 Not Zed <NotZed@Ximian.com> * mail-send-recv.c (auto_account_commit): force an update immediately if we're setting up the timeout to start with. * em-folder-tree-model.c (em_folder_tree_model_set_unread_count): noop if the unread count < 0. (em_folder_tree_model_set_folder_info): only set the unread count if we actually have one. * em-folder-tree.c (emft_tree_row_expanded): get the folder list 'fast'. * mail-ops.c (get_folderinfo_get): get the folder list 'fast'. svn path=/trunk/; revision=29822 * Translation updated by Ivar Smolin.Priit Laes2005-07-212-113/+81 | | | | | | | | 2005-07-20 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29821 * Fixed a memory leak and a crash when start date does is not present.Chenthill Palanisamy2005-07-202-3/+8 | | | | | | | | | 2005-07-20 Chenthill Palanisamy <pchenthill@novell.com> * itip-formatter.c: (format_itip_object): Fixed a memory leak and a crash when start date does is not present. svn path=/trunk/; revision=29820 * Fix #310710. Make code little smart. Stop adding tabs continously. StillShreyas Srinivasan2005-07-202-51/+76 | | | | | | | | | | 2005-07-20 Shreyas Srinivasan <sshreyas@novell.com> * proxy.c: Fix #310710. Make code little smart. Stop adding tabs continously. Still does not reuse structures on multiple invocations though. svn path=/trunk/; revision=29819 * udtaed by rranjan@redhat.comRajesh Ranjan2005-07-201-1189/+1605 | | | | svn path=/trunk/; revision=29818 * connect to sod-signal and get the input data in the callbackVivek Jain2005-07-202-52/+73 | | | | | | | | | | 2005-07-20 Vivek Jain <jvivek@novell.com> * mail-send-options.c: connect to sod-signal and get the input data in the callback "feed_input_data" ** Fixes #310854 svn path=/trunk/; revision=29817 * Fixes #310340 Check if the backend supports having master object forChenthill Palanisamy2005-07-202-7/+18 | | | | | | | | | | | | 2005-07-20 Chenthill Palanisamy <pchenthill@novell.com> Fixes #310340 * gui/e-calendar-view.c (e_calendar_view_delete_selected_occurrence): Check if the backend supports having master object for recurrences and set the recurrence id accordingly. svn path=/trunk/; revision=29816 * ESendOptionsDialogClass: has a member new virtual method for defaultVivek Jain2005-07-203-1/+27 | | | | | | | | | | | | 2005-07-20 Vivek Jain <jvivek@novell.com> * e-send-options.h : ESendOptionsDialogClass: has a member new virtual method for default callback of "sod_response" * e-send-options.c : introduced a new signal "sod_response" captures the response for the child dialog and makes it available at the object level (useful for the external members invoking the dialog) svn path=/trunk/; revision=29815 * made it use e_attachment_bar_get_parts instead of the old apiSrinivasa Ragavan2005-07-202-2/+7 | | | | | | | | | 2005-07-20 Srinivasa Ragavan <sragavan@novell.com> * gui/dialogs/comp-editor.c: (get_attachment_list) (comp_editor_get_mime_attach_list) made it use e_attachment_bar_get_parts instead of the old api svn path=/trunk/; revision=29814 * Cleaned up most of it. Added the DnD.Srinivasa Ragavan2005-07-205-131/+407 | | | | | | | | | | | | | | | 2005-07-20 Srinivasa Ragavan <sragavan@novell.com> * e-attachment-bar.[ch]:(remove_attachment) (update) (e_attachment_bar_get_selector) (e_attachment_bar_get_attachment) (destroy) (init) (e_attachment_bar_new) (e_attachment_bar_add_attachment) (e_attachment_bar_attach_remote_file) Cleaned up most of it. Added the DnD. * e-attachment.[ch]: (real_changed) (class_init) (init) (e_attachment_new) (e_attachment_new_remote_file) (e_attachment_build_remote_file): Moved the remote download code from bar to here and few cleanups. svn path=/trunk/; revision=29813 * Use privsolib here, too. Link with libeutil and CERT_UI_LIBS. UseTor Lillqvist2005-07-202-1/+10 | | | | | | | | | 2005-07-20 Tor Lillqvist <tml@novell.com> * lib/Makefile.am: Use privsolib here, too. Link with libeutil and CERT_UI_LIBS. Use NO_UNDEFINED. svn path=/trunk/; revision=29812 * Use privsolib so the DLL gets installed in bindir on Win32. (See ChangeLogTor Lillqvist2005-07-202-1/+9 | | | | | | | | | | 2005-07-20 Tor Lillqvist <tml@novell.com> * gui/Makefile.am: Use privsolib so the DLL gets installed in bindir on Win32. (See ChangeLog entry in .. from 2005-06-18.) Link with libeshell. Use NO_UNDEFINED. svn path=/trunk/; revision=29811 * Add AC_LIBTOOL_WIN32_DLL. It is apparently required when using bleedingTor Lillqvist2005-07-202-5/+22 | | | | | | | | | | | | | | | | 2005-07-20 Tor Lillqvist <tml@novell.com> * configure.in: Add AC_LIBTOOL_WIN32_DLL. It is apparently required when using bleeding edge libtool. Enable building with Mozilla nspr and nss on Win32. No -ldl on Win32. No import library for softokn3.dll provided by the Mozilla people for some reason. Add libedataserverui, libglade and gtk+ to the dependencies of CERT_UI, as the libraries in smime call functions from them. svn path=/trunk/; revision=29810 * vi.po: Updated Vietnamese translation.CVS: ↵Clytie Siddall2005-07-202-141/+211 | | | | | | ---------------------------------------------------------------------- svn path=/trunk/; revision=29809 * calling the wrong api to move a folder. Infact it was copying for move.Srinivasa Ragavan2005-07-202-1/+6 | | | | | | | | | 2005-07-19 Srinivasa Ragavan <sragavan@novell.com> * em-folder-tree.c: (emft_popup_move) calling the wrong api to move a folder. Infact it was copying for move. svn path=/trunk/; revision=29808 * Fixes #309680 Remove the recurrence id only from e_cal_comp.Chenthill Palanisamy2005-07-202-3/+7 | | | | | | | | | | 2005-07-20 Chenthill Palanisamy <pchenthill@novell.com> Fixes #309680 * gui/e-calendar-view.c (on_unrecur_appointment): Remove the recurrence id only from e_cal_comp. svn path=/trunk/; revision=29807 * Removed the proxy and proxy-login plugins as they are merged into theSankar P2005-07-2015-2952/+0 | | | | | | | | | 2005-07-19 Sankar P <psankar@novell.com> * Removed the proxy and proxy-login plugins as they are merged into the groupwise-features plugin. svn path=/trunk/; revision=29806 * Removed the proxy and proxy-login plugins as they are merged into theSankar P2005-07-2016-28/+2935 | | | | | | | | | 2005-07-19 Sankar P <psankar@novell.com> * configure.in : Removed the proxy and proxy-login plugins as they are merged into the groupwise-features plugin. svn path=/trunk/; revision=29805 * Updated Canadian English translation.Adam Weinberger2005-07-202-107/+157 | | | | | | | | 2005-07-20 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation. svn path=/trunk/; revision=29804 * Translation updated by Ivar Smolin.Priit Laes2005-07-202-132/+94 | | | | | | | | 2005-07-20 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29803 * Set the reccurrence id for the reccurring appointment. Set the MOD-TYPEChenthill Palanisamy2005-07-192-25/+78 | | | | | | property only while accepting all instances. svn path=/trunk/; revision=29802 * Translation updated by Ivar Smolin.Priit Laes2005-07-192-9/+13 | | | | | | | | 2005-07-19 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29801 * Marked strings for translationVivek Jain2005-07-193-6/+10 | | | | | | | | 2005-07-19 Vivek Jain <jvivek@novell.com> * junk-mail-settings.c: Marked strings for translation svn path=/trunk/; revision=29800 * Translation updated by Ivar Smolin.Priit Laes2005-07-192-76/+46 | | | | | | | | 2005-07-19 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29799 * Added a label named 'Custom' to show appropriate role in the 'Role:' comboShakti Sen2005-07-192-2/+25 | | | | | | | | | | | | 2005-07-19 Shakti Sen <shprasad@novell.com> * exchange-permissions-dialog.c (display_role, get_widgets): Added a label named 'Custom' to show appropriate role in the 'Role:' combo box. Fixes bug#310837 svn path=/trunk/; revision=29798 * added plugins/groupwise-features/junk-mail filesVivek Jain2005-07-192-0/+7 | | | | | | | | | 2005-07-19 Vivek Jain <jvivek@novell.com> * POTFILES.in : added plugins/groupwise-features/junk-mail files svn path=/trunk/; revision=29797 * This is no longer needed. gtk_widget_destroy will take care of destroyingSarfraaz Ahmed2005-07-193-11/+11 | | | | | | | | | | | | 2005-07-18 Sarfraaz Ahmed <asarfraaz@novell.com> * exchange-folder-size-display.c (parent_destroyed) : This is no longer needed. gtk_widget_destroy will take care of destroying it. Fixes #310699 * exchange-account-setup.c (org_gnome_exchange_settings) : Fixed a warning. Alignment cannot be set for a radio button svn path=/trunk/; revision=29796 * Patch by Arunprakash to add missed error messages and marking themSushma Rai2005-07-192-2/+10 | | | | | | for translation. Fixes #310343. svn path=/trunk/; revision=29795 * Fixes #310136 #310138. The first items of e-table are column-header. So weLi Yuan2005-07-192-7/+17 | | | | | | | | | | | | | | 2005-07-18 Li Yuan <li.yuan@sun.com> Fixes #310136 #310138. * e-table/gal-a11y-e-table-item.c: (eti_get_index_at), (eti_get_row_at_index), (eti_get_n_rows), (eti_rows_inserted), (eti_rows_deleted), (eti_header_structure_changed): The first items of e-table are column-header. So we should add number of columns when change (row, col) to index, or subtract when change index to (row, col). svn path=/trunk/; revision=29794 * Updated Greek translationNikos Charonitakis2005-07-192-844/+1442 | | | | svn path=/trunk/; revision=29793 * Translation updated by Ivar Smolin.Priit Laes2005-07-182-233/+142 | | | | | | | | 2005-07-18 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29792 * Added the functions org_gnome_exchange_calendar_permissions() andShakti Sen2005-07-184-13/+127 | | | | | | | | | | | | | | | | 2005-07-15 Shakti Sen <shprasad@novell.com> * exchange-folder-permission.c: Added the functions org_gnome_exchange_calendar_permissions() and org_gnome_exchange_addressbook_permissions() to support 'Folder Permissions' for 'Calendar', 'Tasks' and 'Contacts' components. Also taken care of a bug #310493. * org-gnome-exchange-operations.eplug.in: Added the class hooks. Fixes bug#310479. Fixes bug#310493 as well. svn path=/trunk/; revision=29791 * Handle the case of user clicking "Cancel" button in "Change Password"Praveen Kumar2005-07-182-1/+12 | | | | | | | | | | | | 2005-07-18 Praveen Kumar <kpraveen@novell.com> * exchange-account-setup.c (btn_chpass_clicked) : Handle the case of user clicking "Cancel" button in "Change Password" dialog. Fixes bug 310356. (org_gnome_exchange_setting) : Removed the duplicate signal handler registered for "Change Password" button. svn path=/trunk/; revision=29790 * Updated Canadian English translation.Adam Weinberger2005-07-182-696/+1170 | | | | | | | | 2005-07-18 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation. svn path=/trunk/; revision=29789 * Updated Simplified Chinese translationFunda Wang2005-07-182-817/+1284 | | | | svn path=/trunk/; revision=29788 * Translation updated by Ivar Smolin.Priit Laes2005-07-182-1151/+1660 | | | | | | | | 2005-07-18 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29787 * Updated pt_BR translationRaphael Higino2005-07-172-786/+602 | | | | svn path=/trunk/; revision=29786 * vi.po: Updated Vietnamese translation.CVS: ↵Clytie Siddall2005-07-172-2/+473 | | | | | | ---------------------------------------------------------------------- svn path=/trunk/; revision=29785 * Updated Spanish translation.Francisco Javier F. Serrador2005-07-172-85/+573 | | | | | | | | 2005-07-17 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=29784 * Fixed a silly extra space.Ahmed Sarfraaz2005-07-161-1/+1 | | | | svn path=/trunk/; revision=29783 * Updated Serbian translation by Igor Nestorovic.Danilo Šegan2005-07-163-1240/+1966 | | | | svn path=/trunk/; revision=29782 * vi.po: Updated Vietnamese translation.CVS: ↵Clytie Siddall2005-07-162-85/+102 | | | | | | ---------------------------------------------------------------------- svn path=/trunk/; revision=29781 * Added missing exchange files.Sarfraaz Ahmed2005-07-162-0/+18 | | | | | | | | 2005-07-16 Sarfraaz Ahmed <asarfraaz@novell.com> * POTFILES.in : Added missing exchange files. svn path=/trunk/; revision=29780 * Removed. Is no longer being usedSarfraaz Ahmed2005-07-162-357/+4 | | | | | | | | 2005-07-16 Sarfraaz Ahmed <asarfraaz@novell.com> * exchange-ask-password.c : Removed. Is no longer being used svn path=/trunk/; revision=29779 * unref the store which was being leaked.Shreyas Srinivasan2005-07-152-6/+11 | | | | | | | | | 2005-07-15 Shreyas Srinivasan <sshreyas@novell.com> * e-msg-composer-hdrs.c: (account_can_send) unref the store which was being leaked. svn path=/trunk/; revision=29778 * Removed the permissions from the structure, since it is no longer needed.Sankar P2005-07-152-4/+6 | | | | | | | | | 2005-07-15 Sankar P <psankar@novell.com> * proxy-login.h: Removed the permissions from the structure, since it is no longer needed. svn path=/trunk/; revision=29777 * Put permissions on the store instead of the global structure as it getsSankar P2005-07-152-9/+13 | | | | | | | | | 2005-07-15 Sankar P <psankar@novell.com> * proxy-login.c: Put permissions on the store instead of the global structure as it gets unref before store_add. svn path=/trunk/; revision=29776 * *plugins/mail-account-disable/org-gnome-mail-account-disable.eplug.xml :Shreyas Srinivasan2005-07-152-0/+6 | | | | | | | | | 2005-07-15 Shreyas Srinivasan <sshreyas@novell.com> *plugins/mail-account-disable/org-gnome-mail-account-disable.eplug.xml : Add file for translation. svn path=/trunk/; revision=29775 * Unrefing the query.Sushma Rai2005-07-153-3/+13 | | | | svn path=/trunk/; revision=29774 * Included the e-foreign-folder-dialog.glade file. Added newly.Shakti Sen2005-07-153-1/+261 | | | | | | | | | | | 2005-07-15 Shakti Sen <shprasad@novell.com> * Makefile.am: Included the e-foreign-folder-dialog.glade file. * e-foreign-folder-dialog.glade: Added newly. Fixes bug #310369. svn path=/trunk/; revision=29773 * included missing header file camel-multipart.h **Fixes #310330Vivek Jain2005-07-152-0/+7 | | | | | | | | | | 2005-07-14 Vivek Jain <jvivek@novell.com> * em-composer-utils.c : included missing header file camel-multipart.h **Fixes #310330 svn path=/trunk/; revision=29772 * NULL checks before we do anything else here (quite likely to be NULL)Vivek Jain2005-07-142-1/+13 | | | | | | | | | | 2005-07-14 Vivek Jain <jvivek@novell.com> * proxy.c: (proxy_commit),(proxy_abort): NULL checks before we do anything else here (quite likely to be NULL) **Fixes #310347 svn path=/trunk/; revision=29771 * Translation updated by Ivar Smolin.Priit Laes2005-07-142-52/+41 | | | | | | | | 2005-07-14 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=29770 * Fixed some compile time warningsSarfraaz Ahmed2005-07-145-19/+17 | | | | | | | | | | | 2005-07-14 Sarfraaz Ahmed <asarfraaz@novell.com> * exchange-account-setup.c : * exchange-calendar.c : * exchange-folder-size-display.c : * exchange-permissions-dialog.c : Fixed some compile time warnings svn path=/trunk/; revision=29769 * Checked for if the exchange account exist/configured. Replaced all theShakti Sen2005-07-146-80/+93 | | | | | | | | | | | | | | | | | | | 2005-07-13 Shakti Sen <shprasad@novell.com> * exchange-operations.c: Checked for if the exchange account exist/configured. * exchange-folder-permission.c: Replaced all the occurences of function exchange_config_listener_get_accounts() with exchange_operations_get_exchange_account() and returns if it doesn't exist. Also took care to avoid some compile time warnings. * exchange-folder.c: Same. Also took care to avoid some compile time warnings. * exchange-folder-subscription.c: Included exchange-folder-subscription.h file to avoid compilation warning. Fixes bug #310233. svn path=/trunk/; revision=29768 * add casts in previous patch to fix warnings. (account_can_send): fix theNot Zed2005-07-142-4/+10 | | | | | | | | | | 2005-07-14 Not Zed <NotZed@Ximian.com> * e-msg-composer-hdrs.c (address_button_clicked_cb): add casts in previous patch to fix warnings. (account_can_send): fix the permission mode name. svn path=/trunk/; revision=29766 * Why is this a separate plugin, shouldn't it be part of groupwise????Not Zed2005-07-142-3/+8 | | | | | | | | | 2005-07-14 Not Zed <NotZed@Ximian.com> * proxy-login.c (proxy_login_add_new_store): fixed the store permission names. svn path=/trunk/; revision=29765 * Added a doc commentMichael Zucci2005-07-141-0/+7 | | | | svn path=/trunk/; revision=29764 * ** See bug #309869S.Antony Vincent Pandian2005-07-142-0/+16 | | | | | | | | | | | 2005-07-13 S.Antony Vincent Pandian <santony@gmail.com> ** See bug #309869 * e-msg-composer-hdrs.c: moves the focus to the corresponding header buttons' entry fields. svn path=/trunk/; revision=29763 * Updated Slovak translation.Marcel Telka2005-07-142-1054/+643 | | | | | | | | 2005-07-13 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation. svn path=/trunk/; revision=29762 * Updated pt_BR translationRaphael Higino2005-07-132-593/+780 | | | | svn path=/trunk/; revision=29761 * Modified the eplug file to add the "commit" code for folder hierarchyPraveen Kumar2005-07-132-11/+20 | | | | | | | | | | 2005-07-13 Praveen Kumar <kpraveen@novell.com> * org-gnome-exchange-operations.eplug.in : Modified the eplug file to add the "commit" code for folder hierarchy plugins for calendar and contacts svn path=/trunk/; revision=29760 * Free font name Free font name and name of citation color. Free searchKjartan Maraas2005-07-134-2/+19 | | | | | | | | | | | | | 2005-07-13 Kjartan Maraas <kmaraas@gnome.org> * em-mailer-prefs.c: (em_mailer_prefs_construct): Free font name * mail-config.c: (config_write_style): Free font name and name of citation color. * message-list.c: (regen_list_regened), (regen_list_free): Free search string. Thanks to Michael Zucchi for walking me through this one. My brain wasn't running on all it's cylinders... svn path=/trunk/; revision=29759 * Free the style here.Kjartan Maraas2005-07-132-0/+5 | | | | | | | | 2005-07-07 Kjartan Maraas <kmaraas@gnome.org> * e-shell-window.c: (setup_widgets): Free the style here. svn path=/trunk/; revision=29758 * Don't leak the file name here.Kjartan Maraas2005-07-133-2/+12 | | | | | | | | | 2005-07-13 Kjartan Maraas <kmaraas@gnome.org> * e-msg-composer-select-file.c: (select_attach_response): Don't leak the file name here. svn path=/trunk/; revision=29757 * Free the uri to the source in a few cases. Free the timezone location.Kjartan Maraas2005-07-133-2/+13 | | | | | | | | | | | 2005-07-08 Kjartan Maraas <kmaraas@gnome.org> * gui/alarm-notify/alarm-notify.c: (alarm_notify_add_calendar): Free the uri to the source in a few cases. * gui/calendar-config.c: (calendar_config_get_icaltimezone): Free the timezone location. svn path=/trunk/; revision=29756 * There are no camel or addressbook/backend directories in evolution.Tor Lillqvist2005-07-132-4/+5 | | | | | | | | | 2005-07-13 Tor Lillqvist <tml@novell.com> * Makefile.am (INCLUDES): There are no camel or addressbook/backend directories in evolution. svn path=/trunk/; revision=29755 * Add libedataserverui to the IMPORTERS dependency list.Tor Lillqvist2005-07-132-1/+6 | | | | | | | | | 2005-07-13 Tor Lillqvist <tml@novell.com> * configure.in: Add libedataserverui to the IMPORTERS dependency list. svn path=/trunk/; revision=29754 * Don't return a value from a void funtion.Tor Lillqvist2005-07-1314-7/+62 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2005-07-13 Tor Lillqvist <tml@novell.com> * calendar-weather/calendar-weather.c (e_calendar_weather_migrate): Don't return a value from a void funtion. * groupwise-account-setup/org-gnome-gw-account-setup.eplug.xml: Use SOEXT. * groupwise-features/Makefile.am (NO_UNDEFINED_REQUIRED_LIBS): As the code does use functions from libevolution-mail, link with it. But OK, let's do it (at build time) only on Win32, then. * mail-account-disable/Makefile.am (INCLUDES): Remove duplicated line. (LDFLAGS): Use NO_UNDEFINED. (LIBADD): Link with the required libraries, but let's do it only on Win32. * mail-account-disable/org-gnome-mail-account-disable.eplug.xml: Use SOEXT. * proxy/Makefile.am (LIBADD): Link with libeutil. * proxy-login/Makefile.am (LIBADD): Link with libeutil. Link with libevolution-mail on Win32 only. (Have I understood correctly that it isn't considered a good idea on Unix to link plugins at link-time with libevolution-mail?) * proxy-login/org-gnome-proxy-login.eplug.xml: Use SOEXT. svn path=/trunk/; revision=29753 * fix typoHarish Krishnaswamy2005-07-131-1/+1 | | | | svn path=/trunk/; revision=29751 * Fix for address book import problems.Sushma Rai2005-07-133-5/+17 | | | | svn path=/trunk/; revision=29750 * vi.po: Updated Vietnamese translation.CVS: ↵Clytie Siddall2005-07-132-5618/+5598 | | | | | | ---------------------------------------------------------------------- svn path=/trunk/; revision=29749 * remove the reference to shell/importer/libevolution-importer.la inHarish Krishnaswamy2005-07-134-2/+11 | | | | | | | | | 2005-07-13 Harish Krishnaswamy <kharish@novell.com> remove the reference to shell/importer/libevolution-importer.la in startup-wizard. ***** Release 2.3.5.1 ***** svn path=/trunk/; revision=29748 * re-write the importer stuff to use the eplugin stuff.Not Zed2005-07-132-104/+89 | | | | | | | | | | 2005-07-13 Not Zed <NotZed@Ximian.com> * startup-wizard.c (startup_wizard_importer_page) (startup_wizard_commit): re-write the importer stuff to use the eplugin stuff. svn path=/trunk/; revision=29747 * Don't attempt to build the sa-junk-plugin on Win32, it's veryTor Lillqvist2005-07-132-1/+6 | | | | | | | | | 2005-07-13 Tor Lillqvist <tml@novell.com> * configure.in: Don't attempt to build the sa-junk-plugin on Win32, it's very Unix-specific. svn path=/trunk/; revision=29746 * Add more entries.Tor Lillqvist2005-07-132-0/+8 | | | | | | | | 2005-07-13 Tor Lillqvist <tml@novell.com> * win32/libevolution-mail.def: Add more entries. svn path=/trunk/; revision=29745 * Updated Spanish translation.Francisco Javier F. Serrador2005-07-132-668/+763 | | | | | | | | 2005-07-13 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=29744 * Expand the mailing list by getting the contact back from the server.Chenthill Palanisamy2005-07-122-17/+68 | | | | svn path=/trunk/; revision=29743 * removed all the importer stuff. fixed the copyright.Not Zed2005-07-122-199/+28 | | | | | | | | | 2005-07-12 Not Zed <NotZed@Ximian.com> * startup-wizard.c: removed all the importer stuff. fixed the copyright. svn path=/trunk/; revision=29742 * NEWS update of 2.3.5 releaseHarish Krishnaswamy2005-07-121-0/+2 | | | | svn path=/trunk/; revision=29740 * Remove groupwise-features plugin as it is already listed as a base pluginHarish Krishnaswamy2005-07-122-7/+12 | | | | | | | | | 2005-07-12 Harish Krishnaswamy <kharish@novell.com> * plugins/Makefile.am : Remove groupwise-features plugin as it is already listed as a base plugin svn path=/trunk/; revision=29739 * Added CLEANFILES element and glade and error files to EXTRA_DIST.Sankar P2005-07-122-2/+18 | | | | | | | | | 2005-07-12 Sankar P <psankar@novell.com> * Makefile.am : Added CLEANFILES element and glade and error files to EXTRA_DIST. svn path=/trunk/; revision=29738 * Removed the shell importer from configure.inChenthill Palanisamy2005-07-122-1/+5 | | | | svn path=/trunk/; revision=29737 * Added org-gnome-proxy-errors.xml file to the EXTRA_DIST and addedSankar P2005-07-122-2/+14 | | | | | | | | | | 2005-07-12 Sankar P <psankar@novell.com> * Makefile.am : Added org-gnome-proxy-errors.xml file to the EXTRA_DIST and added CLEANFILES. svn path=/trunk/; revision=29736 * bump version ***** Release 2.3.5 *****Harish Krishnaswamy2005-07-123-1/+59 | | | | | | | | | 2005-07-12 Harish Krishnaswamy <kharish@novell.com> * configure.in: bump version ***** Release 2.3.5 ***** svn path=/trunk/; revision=29735 * correted twice inclusion of sa-junk-plugin in "plugins_base"sectionVivek Jain2005-07-122-1/+6 | | | | | | | | | 2005-07-12 Vivek Jain <jvivek@novell.com> * configure.in : correted twice inclusion of sa-junk-plugin in "plugins_base"section svn path=/trunk/; revision=29734 * Fixed some compiler warning and checked some negative casesSrinivasa Ragavan2005-07-122-5/+18 | | | | | | | | | | 2005-07-12 Srinivasa Ragavan <sragavan@novell.com> * gui/dialogs/comp-editor.c: (get_attachment_list) (attachment_guess_mime_type) (comp_editor_close) (comp_editor_get_mime_attach_list) Fixed some compiler warning and checked some negative cases svn path=/trunk/; revision=29733 * Added missed header files to the SOURCES.Sankar P2005-07-124-2/+11 | | | | | | | | | 2005-07-12 Sankar P <psankar@novell.com> * Makefile.am : Added missed header files to the SOURCES. svn path=/trunk/; revision=29732 * included missing header fileVivek Jain2005-07-122-0/+13 | | | | | | | | | | | | | | | | 2005-07-12 Vivek Jain <jvivek@novell.com> * Makefile.am: included missing header file 2005-07-12 Vivek Jain <jvivek@novell.com> have a ChangeLog and transfer the changelog entry from the main ChangeLog (2005-07-10 Shreyas Srinivasan <sshreyas@novell.com>) * groupwise-account-setup/*: Make the camel-groupwise-listener load on startup. (new plugin) svn path=/trunk/; revision=29731 * transferred ChangeLog entry here (2005-07-10 Shreyas SrinivasanVivek Jain2005-07-121-0/+7 | | | | | | | | | | | 2005-07-12 Vivek Jain <jvivek@novell.com> transferred ChangeLog entry here (2005-07-10 Shreyas Srinivasan <sshreyas@novell.com>) * plugins/groupwise-features/*: Remove the camel-groupwise-listener code as it runs in a different plugin. svn path=/trunk/; revision=29730 * have a ChangeLog and transfer the changelog entry from the main ChangeLogVivek Jain2005-07-121-0/+9 | | | | | | | | | | | | | 2005-07-12 Vivek Jain <jvivek@novell.com> have a ChangeLog and transfer the changelog entry from the main ChangeLog (2005-07-10 Shreyas Srinivasan <sshreyas@novell.com>) * plugins/mail-account-disable/*: Plugin to add Disable/ Proxy Logout to a store menu on right click. svn path=/trunk/; revision=29729 * (put the changelog entry here 2005-07-10 Shreyas SrinivasanVivek Jain2005-07-121-0/+7 | | | | | | | | | | | 2005-07-12 Vivek Jain <jvivek@novell.com> (put the changelog entry here 2005-07-10 Shreyas Srinivasan <sshreyas@novell.com>) * POTFILES.in: Add files which need to be translated. svn path=/trunk/; revision=29728 * added sa-junk-plugin to base plugins and AC_OUTPUT sectionVivek Jain2005-07-122-12/+7 | | | | | | | | | 2005-07-12 Vivek Jain <jvivek@novell.com> * configure.in : added sa-junk-plugin to base plugins and AC_OUTPUT section svn path=/trunk/; revision=29727 * Added some e-import stuff.Not Zed2005-07-123-0/+156 | | | | | | | | | | 2005-07-12 Not Zed <NotZed@Ximian.com> * build-eplugin-manual.pl: * evolution-plugin-manual.xml: Added some e-import stuff. svn path=/trunk/; revision=29726 * Merge back eplugin-import-branch.Michael Zucci2005-07-1241-2360/+1649 | | | | svn path=/trunk/; revision=29725 * Updated Slovak translation.Marcel Telka2005-07-122-881/+1274 | | | | | | | | 2005-07-11 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation. svn path=/trunk/; revision=29724 * Updated Brazilian Portuguese translation by Afonso Celso Medina, with someGuilherme de S. Pastore2005-07-122-4375/+1710 | | | | | | | * pt_BR.po: Updated Brazilian Portuguese translation by Afonso Celso Medina, with some fixes by myself. svn path=/trunk/; revision=29723 * Added support for opening a calendar-item in the editor when its ESourceVeerapuram Varadhan2005-07-124-9/+74 | | | | | | * Added support for opening a calendar-item in the editor when its ESource id and ECalComponent id/rid are passed in the invocation URI. svn path=/trunk/; revision=29722 * added a idle handler that calls ec_rebuild after callback operations areVivek Jain2005-07-112-2/+34 | | | | | | | | | | | 2005-07-11 Vivek Jain <jvivek@novell.com> * e-config.c: (e_config_target_changed): added a idle handler that calls ec_rebuild after callback operations are completed. **Fixes #307794 svn path=/trunk/; revision=29721 * Updated Serbian translation by Igor Nestorovic.Danilo Šegan2005-07-113-6062/+6568 | | | | svn path=/trunk/; revision=29720 * // uris. Also, opens a contact in the editor if the contact-uid in the urlVeerapuram Varadhan2005-07-114-0/+151 | | | | | | | * Implementation to handle contacts:// uris. * Also, opens a contact in the editor if the contact-uid in the url is valid. svn path=/trunk/; revision=29719 * Check that the result is not a success and only then print the error CallSarfraaz Ahmed2005-07-114-2/+15 | | | | | | | | | | | | 2005-07-11 Sarfraaz Ahmed <asarfraaz@novell.com> * exchange-operations.c (exchange_operations_report_error) : Check that the result is not a success and only then print the error * exchange-account-setup.c (btn_chpass_clicked) : Call the error reporting routine only if there is a failure. * exchange-config-listener.c (account_added) : Similar svn path=/trunk/; revision=29718 * relocated camel-gw-listener.cVivek Jain2005-07-112-1/+5 | | | | | | | | 2005-07-11 Vivek Jain <jvivek@novell.com> * POTFILES.in : relocated camel-gw-listener.c svn path=/trunk/; revision=29717 * Removed em-attachment* from the build. Remains in the CVS, just incase toSrinivasa Ragavan2005-07-114-43/+204 | | | | | | | | | | | | | | | | | 2005-07-11 Srinivasa Ragavan <sragavan@novell.com> * Makefile.am: Removed em-attachment* from the build. Remains in the CVS, just incase to revert in case of issues. Should go away after 2.3.5. * e-msg-composer.c: (add_inlined_images) (build_message) (menu_file_close_cb) (setup_ui) (attach_message) (drop_action) (e_msg_composer_unrealize) (create_composer) (handle_mailto) (e_msg_composer_add_header) Changed the code to use e_attachment_* from em_attachment* * e-msg-composer.h: Added removed old header includes svn path=/trunk/; revision=29716 * Fixed huge memory leak, and come compile warnings. Also fixed a crash,Srinivasa Ragavan2005-07-112-26/+42 | | | | | | | | | | | 2005-07-11 Srinivasa Ragavan <sragavan@novell.com> * gui/dialogs/comp-editor.c:(get_attachment_list) (attachment_bar_changed_cb) (attachment_bar_icon_clicked_cb) (cab_popups_free) (setup_widgets) (set_attachment_list) (comp_editor_get_mime_attach_list) Fixed huge memory leak, and come compile warnings. Also fixed a crash, when double click on attachments. svn path=/trunk/; revision=29715 * Made changes so that the proxy list will be loaded only when the accountSankar P2005-07-112-28/+49 | | | | | | | | | | | | 2005-07-11 Sankar P <psankar@novell.com> * proxy.c : (org_gnome_proxy) Made changes so that the proxy list will be loaded only when the account edited is enabled. So a new connection need not be created, when an account is edited and a connection is not present. Fixes #309999 svn path=/trunk/; revision=29714 * Added the proxy.c file to the list.Sankar P2005-07-11