2004-09-29 Vinay M R <[email protected]>
authorvinaymr
Wed, 29 Sep 2004 11:16:11 +0000
changeset 4090 5d9d632625d2
parent 4089 5be72faa283a
child 4091 bf0b12de4ccc
2004-09-29 Vinay M R <[email protected]> * gnome-applets.spec: Update. * pathes/gnome-applets-10-save-password.diff: Make "Save the password to disk" work. Fixes bug #5103157.
ChangeLog
gnome-applets.spec
patches/gnome-applets-10-save-password.diff
--- a/ChangeLog	Wed Sep 29 09:25:02 2004 +0000
+++ b/ChangeLog	Wed Sep 29 11:16:11 2004 +0000
@@ -1,3 +1,9 @@
+2004-09-29  Vinay M R  <[email protected]>
+
+	* gnome-applets.spec: Update.
+	* pathes/gnome-applets-10-save-password.diff:
+	Make "Save the password to disk" work. Fixes bug #5103157.
+
 2004-09-29  Padraig O'Briain <[email protected]>
 
 	* gnopernicus-spec: Bump to 0.9.13
--- a/gnome-applets.spec	Wed Sep 29 09:25:02 2004 +0000
+++ b/gnome-applets.spec	Wed Sep 29 11:16:11 2004 +0000
@@ -2,7 +2,7 @@
 License:      GPL
 Group:        System/GUI/GNOME 
 Version:      2.6.2.1
-Release:      19 
+Release:      20 
 Distribution: Cinnabar
 Vendor:	      Sun Microsystems, Inc.
 Summary:      GNOME Applets
@@ -20,6 +20,7 @@
 Patch7:       gnome-applets-07-docs_figures.diff
 Patch8:       gnome-applets-08-disable-wireless.diff
 Patch9:       gnome-applets-09-accessx-dtconfig.diff
+Patch10:      gnome-applets-10-save-password.diff
 
 URL:          http://www.gnome.org
 BuildRoot:    %{_tmppath}/%{name}-%{version}-build
@@ -61,6 +62,7 @@
 %patch7 -p1
 %patch8 -p1
 %patch9 -p1
+%patch10 -p1
 
 %build
 libtoolize --force
@@ -171,6 +173,10 @@
 %{_libdir}/pkgconfig/*.pc
 
 %changelog
+* Wed Sep 29 2004 [email protected]
+- Added patch gnome-applets-10-save-password.diff to make
+  "Save the password to disk" work. Fixes bug #5103157.
+ 
 * Wed Sep 08 2004 [email protected]
 - Bumped tarball to 2.6.2.1 for a11y bug fixes
 - Removed patch gnome-applets-07-accessx-xkb-check.diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/gnome-applets-10-save-password.diff	Wed Sep 29 11:16:11 2004 +0000
@@ -0,0 +1,10 @@
+--- gnome-applets-2.6.1/mailcheck/mailcheck.c	2004-09-23 12:07:34.000000000 +0530
++++ gnome-applets-2.6.1-new/mailcheck/mailcheck.c	2004-09-27 12:45:39.000000000 +0530
+@@ -774,6 +774,7 @@ password_response_cb (GtkWidget  *dialog
+ 	case GTK_RESPONSE_OK:
+ 		entry = g_object_get_data (G_OBJECT (dialog), "password_entry");
+ 		mc->real_password = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
++		remote_password_changed (GTK_ENTRY (entry), mc);
+ 		save_toggle_button = g_object_get_data (G_OBJECT (dialog), "save_password");
+ 		if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (save_toggle_button)))
+ 			 remote_password_save_toggled (GTK_TOGGLE_BUTTON (save_toggle_button), mc);