diff --git a/CASA.changes b/CASA.changes index 06a48fa7..d469ee6b 100644 --- a/CASA.changes +++ b/CASA.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Dec 2 16:35:38 MST 2005 - jnorman@novell.com + +- Bug 136527. Add handlers on KDEStore and GNOME Store code + ------------------------------------------------------------------- Fri Dec 2 15:11:49 MST 2005 - cmashayekhi@novell.com diff --git a/c_gui/GnomeKeyring.cs b/c_gui/GnomeKeyring.cs index b6c4c2ae..9940e962 100644 --- a/c_gui/GnomeKeyring.cs +++ b/c_gui/GnomeKeyring.cs @@ -472,8 +472,19 @@ public class GnomeKeyring : Store { } + + public void on_buttonhelpEditSecret_clicked(object obj, EventArgs args) + { + Common.ShowHelpUrl("EditingSecrets.html"); + } + public void on_helpbuttonAuthentication_clicked(object obj, EventArgs args) + { + Common.ShowHelpUrl("CASAMasterPasswordAuthentication.htm"); + } + + } } ///################################################################## /// END OF FILE -///################################################################## \ No newline at end of file +///################################################################## diff --git a/c_gui/KdeWallet.cs b/c_gui/KdeWallet.cs index c22445e9..bbfd20f3 100644 --- a/c_gui/KdeWallet.cs +++ b/c_gui/KdeWallet.cs @@ -238,7 +238,6 @@ public class KdeWallet : Store tsKeyValue = new TreeStore(typeof(string),typeof(string), typeof(string), typeof(bool)); tvKeyValue.AppendColumn("Key",new CellRendererText(),"text",0); tvKeyValue.AppendColumn("Value",cellEditable,"text",2); - entrySecretID.Text = selected; for( int i=0; i< keys.Length; i++ ) { @@ -473,9 +472,18 @@ public class KdeWallet : Store public void OnDeleteActivated(object obj, EventArgs args) { - } + } + + public void on_buttonhelpEditSecret_clicked(object obj, EventArgs args) + { + Common.ShowHelpUrl("EditingSecrets.html"); + } + public void on_helpbuttonAuthentication_clicked(object obj, EventArgs args) + { + Common.ShowHelpUrl("CASAMasterPasswordAuthentication.htm"); + } } } ///################################################################## /// END OF FILE -///################################################################## \ No newline at end of file +///##################################################################