diff --git a/c_sharp/GladeSharp2/AssemblyInfo.cs b/c_sharp/GladeSharp2/AssemblyInfo.cs deleted file mode 100644 index 177a4f0e..00000000 --- a/c_sharp/GladeSharp2/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -// -[assembly: AssemblyTitle("")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.0.*")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] diff --git a/c_sharp/GladeSharp2/Bitmap.bmp b/c_sharp/GladeSharp2/Bitmap.bmp deleted file mode 100644 index e439f685..00000000 Binary files a/c_sharp/GladeSharp2/Bitmap.bmp and /dev/null differ diff --git a/c_sharp/GladeSharp2/Driver.cs b/c_sharp/GladeSharp2/Driver.cs deleted file mode 100644 index d94ac573..00000000 --- a/c_sharp/GladeSharp2/Driver.cs +++ /dev/null @@ -1,786 +0,0 @@ -using System; -using System.Text; -using System.Collections.Specialized; -using Gtk; -using Glade; - -using Novell.CASA; -using Novell.SecretStore.NSSSWrapper; - -namespace GladeSharp2 -{ - /// - /// Summary description for Driver. - /// - class Driver - { - #region Glade Widgets - - [Widget] Gtk.Window window1; - [Widget] Gtk.TreeView treeview1; - - [Widget] Gtk.Window addSecretWindow; - [Widget] Gtk.Window displaySecretWindow; - - [Widget] Gtk.Entry entrySecretID; - [Widget] Gtk.Entry entryUsername; - [Widget] Gtk.Entry entryPassword; - [Widget] Gtk.Entry entryNDAP; - [Widget] Gtk.Entry entryLDAP; - [Widget] Gtk.Entry entryEMAIL; - - [Widget] Gtk.Entry entryLoginUser; - [Widget] Gtk.Entry entryLoginPassword; - [Widget] Gtk.Entry entryLoginServer; - - [Widget] Gtk.Label label11; - [Widget] Gtk.Label label22; - - [Widget] Gtk.Label labelCreated; - [Widget] Gtk.Label labelAccessed; - [Widget] Gtk.Label labelModified; - - [Widget] Gtk.TreeView listActivity; - [Widget] Gtk.TreeView tvKeyValue; - [Widget] Gtk.Statusbar statusbar1; - [Widget] Gtk.Image image1; - - [Widget] Gtk.Entry entryHost; - [Widget] Gtk.Entry entryHostPort; - - [Widget] Gtk.Entry entryServerPort; - [Widget] Gtk.Label labelServerStatus; - - #endregion - - - Novell.CASA.SecretStore ss = Novell.CASA.SecretStore.getInstance(); - - private RemoteStore m_rs = null; - private bool b_isAuthenticated = false; - - //private RemoteServer m_remoteServer = null; - - TreeStore tsActivityStore; - TreeIter tIter = new TreeIter(); - - // used for secret list - TreeStore store; - TreeIter secretIter = new TreeIter(); - - private static string SHS_PASSWORD = "Password"; - private static string SHS_USERNAME = "Username"; - private static string SHS_OTHER = "Other"; - private static string SHS_BINARY = "Binary"; - private static string SHS_CN = "CN"; - private static string SHS_DN_LDAP = "DN_LDAP"; - private static string SHS_DN_NDAP = "DN_NDAP"; - private static string SHS_EMAIL = "EMAIL"; - - private DateTime date1970 = new DateTime(1970, 1, 1); - - - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main(string[] args) - { - new Driver(args); - } - - - public Driver(string[] args) - { - Application.Init(); - - Glade.XML gxml = new Glade.XML (null, "gladesharp1.glade", "window1", null); - gxml.Autoconnect (this); - - treeview1.AppendColumn ("Secrets", new CellRendererText (), "text", 0); - store = new TreeStore (typeof (string)); - store.SetSortColumnId(0, Gtk.SortType.Ascending); - treeview1.Model = store; - - - - listActivity.AppendColumn("Demo", new CellRendererText (), "text", 0); - tsActivityStore = new TreeStore (typeof (string)); - listActivity.Model = tsActivityStore; - - logActivity("SecretStore Started"); - //image1.Pixbuf = new Gdk.Pixbuf (null, "./Bitmap.bmp"); - //image1.Pixbuf = "c:/Bitmap.bmp"; - showSecrets(); - - // set Network login id - entryLoginUser.Text = "cn="+getNetworkUserID()+",o=novell"; - - // get config - //System.Configuration.ConfigurationSettings.AppSettings.Set("Jim", "Jim Value"); - - - Application.Run(); - } - - - private void logActivity(string message) - { - tsActivityStore.Append (out tIter); - tsActivityStore.SetValue (tIter, 0, "[" + DateTime.Now.ToShortTimeString() + "] "+ message); - } - // Connect the Signals defined in Glade - public void on_window1_delete_event (object o, DeleteEventArgs args) - { - Application.Quit(); - args.RetVal = true; - } - - - #region Button Click Event handlers - - protected void on_toolbutton1_clicked(object o, EventArgs args) - { - return; - } - - protected void on_toolbutton2_clicked(object o, EventArgs args) - { - FileSelection fDlg = new FileSelection("Choose a File"); - fDlg.Modal = true; - - int nRc = fDlg.Run(); - fDlg.Hide(); - - if(nRc == (int)ResponseType.Ok) - { - } - return; - } - - protected void on_toolbutton3_clicked(object o, EventArgs args) - { - Application.Quit(); - return; - } - - #endregion - - #region Menu item handlers - - - - protected void on_quit1_activate(object o, EventArgs args) - { - Application.Quit(); - return; - } - - protected void on_create_sample_credential1_activate(object o, EventArgs args) - { - Secret secret = ss.getSecret(0, "SampleCredential", Secret.SS_CREDSET, ""); - secret.setKeyValuePair(SHS_CN,"userCN"); - secret.setKeyValuePair(SHS_DN_LDAP, "cn=admin,o=novell"); - secret.setKeyValuePair(SHS_DN_NDAP, "admin.novell"); - secret.setKeyValuePair(SHS_EMAIL, "admin@novell.com"); - secret.setKeyValuePair(SHS_PASSWORD, "userPassword"); - - ss.setSecret(0, secret, Secret.SS_CREDSET); - showSecrets(); - } - - - protected void on_cut1_activate(object o, EventArgs args) - { - return; - } - - protected void on_copy1_activate(object o, EventArgs args) - { - return; - } - - protected void on_delete1_activate(object o, EventArgs args) - { - return; - } - - protected void on_paste1_activate(object o, EventArgs args) - { - return; - } - - protected void on_about1_activate(object o, EventArgs args) - { - System.Text.StringBuilder AuthorStringBuild = new System.Text.StringBuilder (); - - AuthorStringBuild.Append ("SecretStore Client Version 4.0\n\n"); - AuthorStringBuild.Append ("Sample GUI Application.\n"); - AuthorStringBuild.Append ("Copyright (c) 2004\n\n"); - - Gtk.MessageDialog md = new Gtk.MessageDialog ( - this.window1, - DialogFlags.DestroyWithParent, - MessageType.Info, - ButtonsType.Ok, - AuthorStringBuild.ToString () - ); - - int result = md.Run (); - md.Hide(); - - return; - } - - #endregion - - // Common functions use by buttons and menu items - - - - - public void on_button8_clicked(object o, EventArgs args) - { - Console.WriteLine("Sync Called"); - } - - private void showSecrets() - { - store.Clear(); - StringCollection sc = ss.enumerateSecretIDs(); - if (sc != null) - { - StringEnumerator se = sc.GetEnumerator(); - se.Reset(); - while (se.MoveNext()) - { - //listBox2.Items.Add(se.Current); - store.Append(out secretIter); - store.SetValue(secretIter, 0, se.Current); - } - } - } - - public void on_button10_clicked (object o, EventArgs args) - { - - showSecrets(); - - /* - for (int i=0; i<10; i++) - { - store.AppendValues("[ " + System.DateTime.Now.ToString() + " ]"); - treeview1.ShowAll(); - treeview1.Show(); - - System.Threading.Thread.Sleep(100); - - } - */ - } - - public void on_btnDeleteSecret_clicked(object o, EventArgs args) - { - Console.WriteLine("on_btnDeleteSecret_clicked"); - - TreeModel model; - TreeIter iter; - string selected = "no selection"; - - // you get the iter and the model if something is selected - if (treeview1.Selection.GetSelected (out model, out iter)) - selected = (string) model.GetValue (iter, 0); - - Console.WriteLine (selected); - ss.removeSecret(selected.Substring(11), 2); - showSecrets(); - - } - - public void on_btnAddSecret_clicked(object o, EventArgs args) - { - Glade.XML gxml = new Glade.XML (null, "gladesharp1.glade", "addSecretWindow", null); - gxml.Autoconnect (this); - - addSecretWindow.Show(); - } - - public void on_btnOKAddSecret_clicked(object o, EventArgs args) - { - // add this secret - string sSecretID = entrySecretID.Text; - if (sSecretID != null && sSecretID.Length > 0) - { - string sUsername = entryUsername.Text; - string sPassword = entryPassword.Text; - if ((sUsername != null) && (sPassword != null)) - { - Secret secret = ss.getSecret(0, sSecretID, Secret.SS_CREDSET, ""); - secret.setKeyValuePair(SHS_CN, sUsername); - secret.setKeyValuePair(SHS_PASSWORD, sPassword); - - // get the rest - if (entryNDAP.Text != null && entryNDAP.Text.Length > 0) - secret.setKeyValuePair(SHS_DN_NDAP, entryNDAP.Text); - - if (entryLDAP.Text != null && entryLDAP.Text.Length > 0) - secret.setKeyValuePair(SHS_DN_LDAP, entryLDAP.Text); - - if (entryEMAIL.Text != null && entryEMAIL.Text.Length > 0) - secret.setKeyValuePair(SHS_EMAIL, entryEMAIL.Text); - - - - ss.setSecret(0, secret, Secret.SS_CREDSET); - showSecrets(); - addSecretWindow.HideAll(); - } - } - else - { - System.Text.StringBuilder AuthorStringBuild = new System.Text.StringBuilder (); - - AuthorStringBuild.Append ("You must enter a SecretID\n\n"); - - Gtk.MessageDialog md = new Gtk.MessageDialog ( - this.window1, - DialogFlags.DestroyWithParent, - MessageType.Warning, - ButtonsType.Ok, - AuthorStringBuild.ToString () - ); - - int result = md.Run (); - md.Hide(); - } - } - public void on_btnCancelAddSecret_clicked(object o, EventArgs args) - { - addSecretWindow.HideAll(); - } - - public void on_btnEditSecret_clicked(object o, EventArgs args) - { - // edit the selected secret - TreeModel model; - TreeIter iter; - string selected = null; //"no selection"; - - // you get the iter and the model if something is selected - if (treeview1.Selection.GetSelected (out model, out iter)) - selected = (string) model.GetValue (iter, 0); - - if (selected != null && selected.Length > 0) - { - selected = selected.Substring(11); - Secret secret = ss.getSecret(0, selected, Secret.SS_CREDSET, ""); - Glade.XML gxml = new Glade.XML (null, "gladesharp1.glade", "displaySecretWindow", null); - gxml.Autoconnect (this); - - TreeStore storeKeyValue = new TreeStore(typeof (string), typeof (string)); - storeKeyValue.SetSortColumnId(0, Gtk.SortType.Ascending); - - TreeIter iterKV = new TreeIter(); - - NameValueCollection nvc = secret.getKeyValueCollection(); - - for (int i=0; i 0) - { - selected = selected.Substring(11); - Secret secret = ss.getSecret(0, selected, Secret.SS_CREDSET, ""); - - Glade.XML gxml = new Glade.XML (null, "gladesharp1.glade", "addSecretWindow", null); - gxml.Autoconnect (this); - - entrySecretID.Text = selected; - entrySecretID.Editable = false; - - if (secret.getKeyValue("CN") !=null) - entryUsername.Text = secret.getKeyValue("CN"); - - if (secret.getKeyValue("password") !=null) - entryPassword.Text = secret.getKeyValue("password"); - - addSecretWindow.Title = "Edit Secret"; - addSecretWindow.Show(); - - } - } - - public void on_btnRemoveAll_clicked(object o, EventArgs args) - { - - System.Text.StringBuilder AuthorStringBuild = new System.Text.StringBuilder (); - - AuthorStringBuild.Append ("Remove All\n\n Are you sure?"); - - Gtk.MessageDialog md = new Gtk.MessageDialog ( - this.window1, - DialogFlags.DestroyWithParent, - MessageType.Question, - ButtonsType.YesNo, - AuthorStringBuild.ToString () - ); - - int result = md.Run (); - md.Hide(); - - - if (result == -8) - { - //enum the secrets and remove - StringCollection sc = ss.enumerateSecretIDs(); - if (sc != null) - { - StringEnumerator se = sc.GetEnumerator(); - se.Reset(); - while (se.MoveNext()) - { - ss.removeSecret(se.Current.Substring(11),2); - } - } - showSecrets(); - } - } - - private void getRemoteSecrets() - { - if (b_isAuthenticated) - { - logActivity("Getting remote secrets"); - string[] saSecrets = m_rs.enumerateSecrets(); - // add these secrets to our local cache - if (saSecrets != null) - { - if (ss == null) - ss = new SecretStore(); - - for (int i=0; i - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/c_sharp/GladeSharp2/GladeSharp2.csproj.user b/c_sharp/GladeSharp2/GladeSharp2.csproj.user deleted file mode 100644 index f0dd8860..00000000 --- a/c_sharp/GladeSharp2/GladeSharp2.csproj.user +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - diff --git a/c_sharp/GladeSharp2/GladeSharp2.sln b/c_sharp/GladeSharp2/GladeSharp2.sln deleted file mode 100644 index 9a1608f6..00000000 --- a/c_sharp/GladeSharp2/GladeSharp2.sln +++ /dev/null @@ -1,37 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GladeSharp2", "GladeSharp2.csproj", "{DC9434D2-9868-40BE-8AFA-F5CF9B6D5BC3}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Novell.CASA.miCASAWrapper", "..\NSSCSWrapper\Novell.CASA.miCASAWrapper.csproj", "{E21DD887-22F4-4935-9851-409715F663B0}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Novell.SecretStore.NSSSWrapper", "..\NSSSWrapper\Novell.SecretStore.NSSSWrapper.csproj", "{7D8C5C67-C1B9-486A-8F7B-1D915FD2048E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {DC9434D2-9868-40BE-8AFA-F5CF9B6D5BC3}.Debug.ActiveCfg = Debug|.NET - {DC9434D2-9868-40BE-8AFA-F5CF9B6D5BC3}.Debug.Build.0 = Debug|.NET - {DC9434D2-9868-40BE-8AFA-F5CF9B6D5BC3}.Release.ActiveCfg = Release|.NET - {DC9434D2-9868-40BE-8AFA-F5CF9B6D5BC3}.Release.Build.0 = Release|.NET - {E21DD887-22F4-4935-9851-409715F663B0}.Debug.ActiveCfg = Debug|.NET - {E21DD887-22F4-4935-9851-409715F663B0}.Debug.Build.0 = Debug|.NET - {E21DD887-22F4-4935-9851-409715F663B0}.Release.ActiveCfg = Release|.NET - {E21DD887-22F4-4935-9851-409715F663B0}.Release.Build.0 = Release|.NET - {7D8C5C67-C1B9-486A-8F7B-1D915FD2048E}.Debug.ActiveCfg = Debug|.NET - {7D8C5C67-C1B9-486A-8F7B-1D915FD2048E}.Debug.Build.0 = Debug|.NET - {7D8C5C67-C1B9-486A-8F7B-1D915FD2048E}.Release.ActiveCfg = Release|.NET - {7D8C5C67-C1B9-486A-8F7B-1D915FD2048E}.Release.Build.0 = Release|.NET - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/c_sharp/GladeSharp2/GladeSharp2.suo b/c_sharp/GladeSharp2/GladeSharp2.suo deleted file mode 100644 index 2a2d384b..00000000 Binary files a/c_sharp/GladeSharp2/GladeSharp2.suo and /dev/null differ diff --git a/c_sharp/GladeSharp2/gladesharp1.glade b/c_sharp/GladeSharp2/gladesharp1.glade deleted file mode 100644 index 727ee020..00000000 --- a/c_sharp/GladeSharp2/gladesharp1.glade +++ /dev/null @@ -1,1954 +0,0 @@ - - - - - - - True - SecretStore Client Service - GTK_WINDOW_TOPLEVEL - GTK_WIN_POS_CENTER_ALWAYS - False - 400 - 300 - True - False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - - - - - True - False - 0 - - - - True - False - 0 - - - - True - - - - True - _File - True - - - - - - - True - gtk-quit - True - - - - - - - - - - - True - _Edit - True - - - - - - - True - Create Sample Credential - True - - - - - - - - - - - True - _View - True - - - - - - True - _Help - True - - - - - - - True - _About - True - - - - - - - - - - 0 - False - False - - - - - 0 - False - True - - - - - - True - /Bitmap.bmp - 0.5 - 0.5 - 0 - 0 - - - 0 - True - True - - - - - - True - True - True - True - GTK_POS_TOP - False - False - - - - True - False - 0 - - - - 10 - True - 0 - 0.5 - GTK_SHADOW_ETCHED_IN - - - - True - 0.5 - 0.5 - 1 - 1 - 0 - 0 - 12 - 0 - - - - True - 3 - 2 - False - 3 - 0 - - - - True - User ID - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - Password - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 0 - 1 - 5 - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 1 - 2 - 5 - - - - - - - - - - - 30 - True - <b>Local User Information</b> (TBD) - False - True - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - label_item - - - - - 0 - False - True - - - - - - 10 - True - 0 - 0.5 - GTK_SHADOW_ETCHED_IN - - - - True - 0.5 - 0.5 - 1 - 1 - 0 - 0 - 12 - 0 - - - - True - 5 - 2 - False - 3 - 0 - - - - True - Username - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - Password - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - Server - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 2 - 3 - fill - - - - - - - True - True - True - True - 0 - cn=admin,o=novell - True - * - False - - - 1 - 2 - 0 - 1 - 5 - - - - - - - True - True - True - True - 0 - secretstore.novell.com - True - * - False - - - 1 - 2 - 2 - 3 - 5 - - - - - - - True - True - True - False - 0 - novell - True - * - False - - - 1 - 2 - 1 - 2 - 5 - - - - - - - True - True - Login - True - GTK_RELIEF_NORMAL - True - - - - 1 - 2 - 4 - 5 - 120 - 10 - fill - fill - - - - - - - - - - 30 - True - <b>Server Information</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - label_item - - - - - 0 - True - True - - - - - - - - - False - True - - - - - - True - Account Information - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - - - - - True - False - 0 - - - - True - False - 0 - - - - 289 - True - True - GTK_POLICY_ALWAYS - GTK_POLICY_ALWAYS - GTK_SHADOW_IN - GTK_CORNER_TOP_LEFT - - - - True - True - False - False - False - True - - - - - 5 - True - True - - - - - - 9 - 323 - True - True - 35 - - - - True - True - Refresh Local - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - Add Credential - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - Delete Credential - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - View Credential - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - Remove All - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - Refresh Remote - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - 10 - False - False - - - - - 4 - False - False - GTK_PACK_END - - - - - False - True - - - - - - True - Manage Secrets - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - - - - - True - False - 0 - - - - True - False - 0 - - - - True - False - 0 - - - - True - True - Sync to Server - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - Sync from Server - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - Clear activity - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - 0 - True - True - - - - - 0 - False - False - - - - - - True - True - GTK_POLICY_ALWAYS - GTK_POLICY_ALWAYS - GTK_SHADOW_IN - GTK_CORNER_TOP_LEFT - - - - True - True - False - False - False - False - - - - - 0 - True - True - - - - - False - True - - - - - - True - View Activity - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - - - - - True - False - 0 - - - - 16 - True - 0 - 0.5 - GTK_SHADOW_ETCHED_IN - - - - True - 0.5 - 0.5 - 1 - 1 - 0 - 0 - 12 - 0 - - - - 33 - True - False - 0 - - - - True - False - 0 - - - - True - This option starts a Server on this machine. - -Once the server is started, you can connect -to this machine from other computers and -retrieve your secrets - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 16 - False - False - - - - - - True - Server status: - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - True - Stopped - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 9 - 0 - - - 0 - False - False - - - - - 0 - True - True - - - - - - True - False - 0 - - - - 51 - True - True - True - True - 0 - 8080 - True - * - False - - - 15 - True - True - - - - - - 6 - True - True - Start Server - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - 0 - True - True - - - - - - - - - - True - <b>DotNet Server Setup</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - label_item - - - - - 0 - True - True - - - - - - 13 - 102 - True - 0 - 0.5 - GTK_SHADOW_ETCHED_IN - - - - True - 0.5 - 0.5 - 1 - 1 - 0 - 0 - 12 - 0 - - - - True - 2 - 3 - False - 0 - 0 - - - - True - Host - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - Port - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 1 - 2 - 0 - 1 - fill - - - - - - - 71 - 32 - True - True - Sync now - True - GTK_RELIEF_NORMAL - True - - - - 2 - 3 - 1 - 2 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 0 - 1 - 1 - 2 - 10 - - - - - - - True - True - True - True - 0 - 8080 - True - * - False - - - 1 - 2 - 1 - 2 - 2 - - - - - - - - - - - True - <b>Connect to server at:</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - label_item - - - - - 38 - False - False - - - - - False - True - - - - - - True - Preferences - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - - - - 0 - True - True - - - - - - True - True - - - 0 - False - False - - - - - - - - 22 - 250 - 230 - True - Add Credential - GTK_WINDOW_TOPLEVEL - GTK_WIN_POS_CENTER_ALWAYS - True - False - False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_CENTER - - - - True - 0.5 - 0.5 - 1 - 1 - 0 - 0 - 0 - 0 - - - - True - 7 - 2 - False - 5 - 5 - - - - True - SecretID - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 0 - 1 - - - - - - - True - Username - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 1 - 2 - - - - - - - True - False - 0 - - - - True - True - gtk-add - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - - True - True - gtk-cancel - True - GTK_RELIEF_NORMAL - True - - - - 0 - False - False - - - - - 1 - 2 - 6 - 7 - fill - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 2 - 3 - - - - - - - True - Password - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 2 - 3 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 3 - 4 - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 5 - 6 - - - - - - - True - DN_NDAP - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 3 - 4 - fill - - - - - - - True - eMail - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 5 - 6 - fill - - - - - - - True - DN_LDAP - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 4 - 5 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 4 - 5 - - - - - - - - - - - 300 - 400 - True - Secret - GTK_WINDOW_TOPLEVEL - GTK_WIN_POS_CENTER - True - True - True - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_CENTER - - - - True - False - 0 - - - - True - False - 0 - - - - True - SecretID - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 17 - 16 - - - 0 - False - False - - - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 20 - 0 - - - 0 - False - False - - - - - 0 - False - False - - - - - - True - True - GTK_POLICY_ALWAYS - GTK_POLICY_ALWAYS - GTK_SHADOW_IN - GTK_CORNER_TOP_LEFT - - - - 20 - True - True - True - False - False - True - - - - - 0 - True - True - - - - - - 17 - True - 4 - 2 - False - 6 - 6 - - - - True - Date created - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - Last accessed - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - Last modified - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 2 - 3 - fill - - - - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 1 - 2 - 0 - 1 - fill - - - - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 1 - 2 - 1 - 2 - fill - - - - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 1 - 2 - 2 - 3 - fill - - - - - - 0 - True - True - - - - - - - - - - - - True - window3 - GTK_WINDOW_TOPLEVEL - GTK_WIN_POS_NONE - False - True - False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - - - - - - - diff --git a/c_sharp/GladeSharp2/gladesharp1.gladep b/c_sharp/GladeSharp2/gladesharp1.gladep deleted file mode 100644 index e429f891..00000000 --- a/c_sharp/GladeSharp2/gladesharp1.gladep +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - FALSE - diff --git a/c_sharp/GladeSharp2/gladesharp1.xsx b/c_sharp/GladeSharp2/gladesharp1.xsx deleted file mode 100644 index c4149bf9..00000000 --- a/c_sharp/GladeSharp2/gladesharp1.xsx +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/c_sharp/GladeSharp2/pixmaps/Bitmap.bmp b/c_sharp/GladeSharp2/pixmaps/Bitmap.bmp deleted file mode 100644 index e439f685..00000000 Binary files a/c_sharp/GladeSharp2/pixmaps/Bitmap.bmp and /dev/null differ diff --git a/c_sharp/GladeSharp2/pixmaps/Thumbs.db b/c_sharp/GladeSharp2/pixmaps/Thumbs.db deleted file mode 100644 index c07706de..00000000 Binary files a/c_sharp/GladeSharp2/pixmaps/Thumbs.db and /dev/null differ diff --git a/c_sharp/GladeSharp2/pixmaps/banner.bmp b/c_sharp/GladeSharp2/pixmaps/banner.bmp deleted file mode 100644 index 85c1a1c2..00000000 Binary files a/c_sharp/GladeSharp2/pixmaps/banner.bmp and /dev/null differ