Help files and code to launch them added
This commit is contained in:
		| @@ -1,3 +1,8 @@ | ||||
| ------------------------------------------------------------------- | ||||
| Fri Nov 11 08:26:50 MST 2005 - jnorman@novell.com | ||||
|  | ||||
| - Added help files, and code to launch help files to GUI  | ||||
|  | ||||
| ------------------------------------------------------------------- | ||||
| Thu Nov 10 12:32:38 MST 2005 - jnorman@novell.com | ||||
|  | ||||
|   | ||||
							
								
								
									
										2547
									
								
								c_gui/CasaMain.cs
									
									
									
									
									
								
							
							
						
						
									
										2547
									
								
								c_gui/CasaMain.cs
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -82,6 +82,10 @@ public class Common | ||||
| 							INDEX_NATIVEINFO_SYNCTYPE 	 	= 3, | ||||
| 							INDEX_NATIVEINFO_MODIFIEDTIME 	= 4; | ||||
|  | ||||
|  | ||||
| 	public static string	LINUX_HELP_PATH		= "file:///opt/novell/CASA/help/"; | ||||
| 	public static string	WINDOWS_HELP_PATH	= "..\\help\\"; | ||||
|     	 | ||||
| 	///############################################################## | ||||
| 	/// ARG CONSTANTS | ||||
| 	public static string	ARG_SHOW_TRAY_ICON			= "-tray"; | ||||
| @@ -267,6 +271,60 @@ public class Common | ||||
| 		return false; | ||||
| 	} | ||||
|  | ||||
| 	private static string GetLocale() | ||||
| 	{ | ||||
| 		if (IS_LINUX) | ||||
| 			return "en/"; | ||||
| 		else | ||||
| 			return "en\\"; | ||||
| 	} | ||||
|  | ||||
| 	private static string GetHelpPath() | ||||
| 	{ | ||||
| 		if (IS_LINUX) | ||||
| 			return LINUX_HELP_PATH; | ||||
| 		else | ||||
| 			return WINDOWS_HELP_PATH; | ||||
| 	} | ||||
|  | ||||
| 	public static bool ShowHelpUrl(string sHelpFilename) | ||||
| 	{ | ||||
| 		// get absolute path and locale | ||||
| 		string sUrl = GetHelpPath() + GetLocale() + sHelpFilename; | ||||
| 		return ShowUrl(sUrl); | ||||
| 	} | ||||
|  | ||||
|  | ||||
| 	public static bool ShowUrl(string url) | ||||
| 	{ | ||||
| 		 | ||||
| 		Process urlShowProcess = new Process(); | ||||
| 			 | ||||
| 		if (Common.IS_LINUX) | ||||
| 		{ | ||||
| 			urlShowProcess.StartInfo.FileName = "gnome-open"; | ||||
| 			urlShowProcess.StartInfo.Arguments = url; | ||||
| 		} | ||||
| 		else | ||||
| 			urlShowProcess.StartInfo.FileName = url;		 | ||||
| 			 | ||||
| 		try | ||||
| 		{ | ||||
| 			urlShowProcess.Start(); | ||||
| 			urlShowProcess.WaitForExit(); | ||||
| 		} | ||||
| 		catch (Exception e) | ||||
| 		{ | ||||
| 			Logger.DbgLog(e.Message);						 | ||||
| 			Logger.DbgLog(e.StackTrace); | ||||
| 			return false; | ||||
| 		} | ||||
|  | ||||
| 		if (urlShowProcess.ExitCode == 0) | ||||
| 			return true; | ||||
| 		else | ||||
| 			return false; | ||||
| 	} | ||||
| } | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -71,6 +71,11 @@ namespace Novell.CASA.GUI | ||||
| 			dialogLogin.Show();	 | ||||
| 		} | ||||
|  | ||||
| 		public void on_helpbuttonAuthentication_clicked(object sender, EventArgs args) | ||||
| 		{ | ||||
| 			Common.ShowHelpUrl("CASAMasterPasswordAuthentication.htm"); | ||||
| 		} | ||||
|  | ||||
| 		internal void menuDestroyMiCasa_Activated(CasaMain casaMain, CasaTray tray) | ||||
| 		{ | ||||
| 			mCasaInstance = casaMain; | ||||
|   | ||||
| @@ -377,6 +377,11 @@ public class MiCasa : Store | ||||
| 		Logger.DbgLog("GUI:MiCasa.OnKeyValueEdited() - END"); | ||||
| 	} | ||||
|  | ||||
| 	public void on_buttonhelpEditSecret_clicked(object obj, EventArgs args) | ||||
| 	{ | ||||
| 		Common.ShowHelpUrl("EditingSecrets.html"); | ||||
| 	} | ||||
| 	 | ||||
| 	/// <summary> | ||||
| 	/// ADD BUTTON CLICKED  | ||||
| 	/// </summary> | ||||
| @@ -541,6 +546,11 @@ public class MiCasa : Store | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	public void on_helpbuttonAuthentication_clicked(object obj, EventArgs args) | ||||
| 	{ | ||||
| 		Common.ShowHelpUrl("CASAMasterPasswordAuthentication.htm");		 | ||||
| 	} | ||||
| 	 | ||||
| 	/// <summary> | ||||
| 	/// MANAGE SECRET-ID DIALOG OK-BUTTON CLICKED  | ||||
| 	/// </summary> | ||||
| @@ -797,12 +807,15 @@ public class MiCasa : Store | ||||
| 	} | ||||
| 		 | ||||
| 		 | ||||
| 	 | ||||
| 	public void on_buttonNewCancel_clicked(object obj, EventArgs args) | ||||
| 	{		 | ||||
| 		dialogNewSecret.Destroy(); | ||||
| 	} | ||||
|  | ||||
| 	public void on_helpbuttonNewSecret_clicked(object obj, EventArgs args) | ||||
| 	{ | ||||
| 		Common.ShowHelpUrl("AddNewSecrets.htm"); | ||||
| 	} | ||||
| 		 | ||||
| 		 | ||||
| 	///####################################################################### | ||||
| @@ -830,6 +843,10 @@ public class MiCasa : Store | ||||
| 		 | ||||
| 	}   | ||||
| 	 | ||||
| 	public void on_helpbuttonLinkKeys_clicked(object obj, EventArgs args) | ||||
| 	{ | ||||
| 		Common.ShowHelpUrl("LinkingSecrets.htm"); | ||||
| 	} | ||||
| 	 | ||||
| 	 | ||||
| 	///####################################################################### | ||||
|   | ||||
							
								
								
									
										63
									
								
								c_gui/help/en/AddNewSecrets.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								c_gui/help/en/AddNewSecrets.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Adding New Secrets</div> | ||||
|  | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">CASA enables you to manually create new secrets or to  | ||||
|     manage secrets that have been previously created by programs that integrate  | ||||
|     with CASA. To manually create a new secret, use the following procedure:</p> | ||||
|   <ol> | ||||
|     <li>In CASA Manager, click File > New > New Secret</li> | ||||
|     <li>Type the identifying name of the new secret in the Secret ID field, for  | ||||
|       example, “Example Secret.”</li> | ||||
|     <li>Type the name of the key and its value in the Key and Value fields,  | ||||
|       for example, Key: “Password,” and Value: “testpassword.”  | ||||
|       The asterisk (*) is the only restricted character in both the Key and Value fields.</li> | ||||
|     <li>Click the + button to add the newly formed Key-Value pair for the  | ||||
|       new secret. </li> | ||||
|     <li>By default, to safe guard secrets, values are shown as asterisks (*).  | ||||
|       To show values in clear text, select "Show Values in clear text", and  | ||||
|       enter your master password to enable a single instance display  | ||||
|       of the value in the Value field.</li> | ||||
|     <li>Click OK to add the new secret, with its corresponding Key-Value pair,  | ||||
|       to the credential store. The secret will now display in the Secret-ID window,  | ||||
|       indicating that it has been added to the miCASA credential store.</li> | ||||
|   </ol> | ||||
|   <p>See also <a href="EditingSecrets.html" target="_parent">Editing Secrets</a>.</p> | ||||
|   <!--This adds space before first level 1 heading--> | ||||
| <div class="margintop3"></div> | ||||
|  | ||||
|   <span class="head3">Refreshing Credentials Stores</span>  | ||||
|   <p class="margintop2">Refresh Stores in CASA Manager is used to reload all Secrets from the configured stores.  | ||||
|     The miCASA store is supported on Windows* and Linux*. KDE Wallet and GNOME*  | ||||
|     Keyring are additional stores supported in Linux*.</p>      | ||||
|   <p class="margintop2">A trademark symbol (<28>, TM, etc.) denotes a Novell trademark.  | ||||
|     An asterisk (*) denotes a third-party trademark. For information on trademarks,  | ||||
|     see <a | ||||
| href="legal_notices_en.html">Legal Notices</a>. | ||||
|      | ||||
|   <p class="marginleft1"> | ||||
|     <!--End Content --> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										54
									
								
								c_gui/help/en/CASAMasterPasswordAuthentication.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										54
									
								
								c_gui/help/en/CASAMasterPasswordAuthentication.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,54 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
| <!-- #BeginEditable "doctitle" --> | ||||
| <title>Novell® CASA Manager</title> | ||||
| <!-- #EndEditable --> | ||||
| <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Setting Master Password</div> | ||||
|  | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">When you start CASA Manager, you are prompted to  | ||||
| 	enter a master password. You are prompted for your master password when  | ||||
| 	displaying the values of secrets. The master password must be at least 8 characters | ||||
| 	long.</p> | ||||
| 	Your desktop password and master password are used to encypt your secrets  | ||||
| 	and store them on your computer. When you login to the computer, CASA will decrypt | ||||
| 	the saved secrets using your desktop password and make them available for  | ||||
| 	applications integrated with CASA. | ||||
| 	If your desktop password changes, you must run CASA Manager and enter your master | ||||
| 	password before CASA can decrypt your saved secrets.  | ||||
| 	 | ||||
| 	You can change the master password by using the following procedure from the main CASA Manager  | ||||
|     screen:</p> | ||||
|   <ol> | ||||
|     <li>Click Options > Change Master Password.</li> | ||||
|     <li>Enter your current master password, Enter your new master password, re-enter  | ||||
|       your new master password, then click OK.</li> | ||||
|    </ol> | ||||
|  | ||||
|      | ||||
|   <p><b>Important:</b> To prevent unauthorized access to your credential stores,  | ||||
|     always create confidential passwords that are not easily discovered.</p> | ||||
|    | ||||
|     <!--End Content --> | ||||
|     <br> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										61
									
								
								c_gui/help/en/Contents.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										61
									
								
								c_gui/help/en/Contents.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,61 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent">  | ||||
|   <!--Begin Content --> | ||||
|   <div class="head3b">Contents</div> | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">Common Authentication Service Adapter (CASA) is the common  | ||||
|     cross-platform foundation for authentication and single sign-on services for  | ||||
|     Novell® Linux* Desktop, Microsoft* Windows*, and Macintosh* OS 10 operating  | ||||
|     systems. CASA Manageris the graphical user interface that enables you to access  | ||||
|     and manage the authentication credentials (secrets) of the programs and services  | ||||
|     installed any any of these platforms.</p> | ||||
|   <p class="margintop2">This Help file contains the following topics:</p> | ||||
|    | ||||
|   | ||||
|   <ul> | ||||
|     <li><a href="AddNewSecrets.htm" target="_blank">Adding New Secrets</a></li> | ||||
|     <li><a href="DestroyingSecrets.htm" target="_blank">Destroying Secrets</a></li> | ||||
|     <li><a href="EditingSecrets.html" target="_blank">Editing Secrets</a></li> | ||||
|     <li><a href="LinkingSecrets.htm" target="_blank">Linking Secrets</a></li> | ||||
|     <li><a href="UnlockSecrets.htm" target="_blank">Locking and Unlocking Secrets</a></li> | ||||
|     <li><a href="Persistent%20Storage.htm" target="_blank">Persistent Storage</a></li> | ||||
|     <li><a href="Preferences.htm" target="_blank">Setting CASA Preferences</a></li> | ||||
|     <li><a href="CASAMasterPasswordAuthentication.htm" target="_blank">Setting  | ||||
|       Master Password</a></li> | ||||
|     <li><a href="ViewSecrets.htm" target="_blank">Viewing Secrets</a></li> | ||||
|     <!--End Content --> | ||||
|     <br> | ||||
|   </ul> | ||||
|   <p><b>Important:</b> Because CASA Manager collects and displays security credentials  | ||||
|     from secure applications running on your system, this software should not  | ||||
|     be used in any public environment where security might be compromised. In  | ||||
|     addition, because CASA is integrated with your workstation login and other  | ||||
|     resident applications that require authentication credentials, you should  | ||||
|     create confidential passwords that are not easily broken in order to prevent  | ||||
|     unauthorized access.</p> | ||||
|    | ||||
|   <div class="smalltext">A trademark symbol (<28>, TM, etc.) denotes a Novell trademark.  | ||||
|     An asterisk (*) denotes a third-party trademark. For information on trademarks,  | ||||
|     see <a | ||||
| href="legal_notices_en.html">Legal Notices</a>.</div> | ||||
|   <p></p> | ||||
|   <div class="ruleabove"></div> | ||||
| </div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										34
									
								
								c_gui/help/en/DestroyingSecrets.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								c_gui/help/en/DestroyingSecrets.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Destroying Secrets</div> | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">Use the following procedure to clear your cache and destroy  | ||||
|     all credentials that are stored in memory:</p> | ||||
|   <ul> | ||||
|     <li>Click File > Destroy Secrets, then click OK.</li> | ||||
|   </ul> | ||||
|   <p class="margintop2">You can restore your secrets manually by creating new  | ||||
|     secrets or automatically by rebooting your system, or by installing new applications  | ||||
|     and refreshing credential stores.</p> | ||||
|   </div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										47
									
								
								c_gui/help/en/EditingSecrets.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								c_gui/help/en/EditingSecrets.html
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Editing Secrets</div> | ||||
|  | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">You edit a secret by adding new Key-Value pairs or changing  | ||||
|     existing Key-Value pairs:<br> | ||||
|   </p> | ||||
|   <ol> | ||||
|     <li>In the main Secret-ID window, double-click the secret you want to edit.<br> | ||||
|     </li> | ||||
|     <li>Type a second password key and corresponding password value (for example,  | ||||
|       Password2 and testpassword2) in the Key and Value fields, then click the  | ||||
|       + button. <br> | ||||
|       In this example, from the new Password2 key, the value is encrypted and  | ||||
|       displays as asterisks. To show the value in clear text, click Show Values  | ||||
|       in Clear Text, then enter your master password.<br> | ||||
|     </li> | ||||
|     <li>To edit the password value, click the Value field in the Key-Value pairs  | ||||
|       window, type your new value, then click OK. The new password value is saved  | ||||
|       in the miCASA credential store.<br> | ||||
|       After they are created, Secret ID names cannot be edited.</li> | ||||
|   </ol> | ||||
|   <!--End Content --> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										
											BIN
										
									
								
								c_gui/help/en/LinkA.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								c_gui/help/en/LinkA.gif
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 53 KiB | 
							
								
								
									
										57
									
								
								c_gui/help/en/LinkingSecrets.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										57
									
								
								c_gui/help/en/LinkingSecrets.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,57 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Linking Secrets</div> | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">You can link two or more secrets so that their respective  | ||||
|     passwords or key values are synchronized simultaneously. For example, you  | ||||
|     can link the password of one secret to the password of another secret, all of the  | ||||
|     keys with one secret to each other, or any combination to synchronize management  | ||||
|     of all your secrets. </p> | ||||
|   <p class="margintop2">Currently, CASA provides only the ability to link keys  | ||||
|     within the miCASA store. Link secrets by using the Link feature from the  | ||||
|     CASA Manager:</p> | ||||
|   <ol> | ||||
|     <li>Press the F2 key or click Edit > Link to open the Manage Secrets and  | ||||
|       Key-Value pairs window.</li> | ||||
|     <li>Double click on the Key field to open the Link management  | ||||
|       window. This utility enables you to link the keys of any secrets contained  | ||||
|       in your miCASA store.  | ||||
|     <li>Click the Secret-ID component you want to link.</li> | ||||
|     <li>Click the Key you want to link, click the Key value you want to link,  | ||||
|       then click the + Button to link the selected Key-Value pair.</li> | ||||
|     <li>Repeat Step 4 to add and link as many secrets as you want. The status  | ||||
|       of your linked secrets is displayed in the Existing Linked Keys window.</li> | ||||
|     <li>To verify if a secret is linked, view its status in the Key-Value pairs  | ||||
|       window. The Link field displays either Yes or No. Verify by following any  | ||||
|       one of these steps:<br> | ||||
|       * Double-click the secret. <br> | ||||
|       * Right-click the secret > Click View.<br> | ||||
|       * Press F2.</li> | ||||
|     <li>To unlink selected secrets, click any of the Secret-ID components listed  | ||||
|       in the Existing Linked Keys window, then click the — button. The selected  | ||||
|       secret is deleted from the Existing Linked Keys window.</li> | ||||
|   </ol> | ||||
|     <!--End Content --> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										37
									
								
								c_gui/help/en/Persistent Storage.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								c_gui/help/en/Persistent Storage.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,37 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Persistent Storage</div> | ||||
|  | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">CASA automatically saves your secrets on your computer | ||||
| 	and retrieves them the next time you login.  Your secrets are encrypted using | ||||
| 	the password used for login, as well as the master password required to use | ||||
| 	CASA Manager.  Should the desktop password change, you will need to enter your | ||||
| 	master password to decrypt your saved secrets.		 | ||||
|     See also <a href="CASAMasterPasswordAuthentication.htm" target="_parent">Setting  | ||||
|     Master Password</a>.</p> | ||||
|  | ||||
|   <!--This adds space before first level 1 heading--> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										46
									
								
								c_gui/help/en/Preferences.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								c_gui/help/en/Preferences.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,46 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
| <!-- #BeginEditable "doctitle" --> | ||||
| <title>Novell® CASA Manager</title> | ||||
| <!-- #EndEditable --> | ||||
| <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Preferences</div> | ||||
|  | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">This option is active only when CASA is installed in a  | ||||
|     Linux* environment. Linux provides support for miCASA, KDE Wallet, GNOME*  | ||||
|     Keyring, or all three credential stores. </p> | ||||
|   <p class="margintop2">Use the following procedure to specify which credential  | ||||
|     stores you want to use:</p> | ||||
|   <ol> | ||||
|     <li>From the CASA Manager page, Click Options > Preferences</li> | ||||
|     <li>Select which credential stores you wish to use (miCASA, KDE Wallet, GNOME  | ||||
|       Keyring).</li> | ||||
|   </ol> | ||||
|   <p>In Windows*, miCASA is the only credential store available, so references  | ||||
|     to KDE Wallet and GNOME Keyring are inactive. | ||||
|   <p>A trademark symbol (<28>, TM, etc.) denotes a Novell trademark. An asterisk  | ||||
|     (*) denotes a third-party trademark. For information on trademarks, see <a | ||||
| href="legal_notices_en.html">Legal Notices</a>.  | ||||
|   <!--This adds space before first level 1 heading--> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										38
									
								
								c_gui/help/en/UnlockSecrets.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								c_gui/help/en/UnlockSecrets.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Locking and Unlocking Secrets</div> | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">To prevent individuals and other applications from viewing  | ||||
|     or manipulating your secrets, CASA enables you to lock secrets, which temporarily  | ||||
|     disables the functionality of CASA.</p> | ||||
|   <ol> | ||||
|     <li>Click File > Lock Secrets. The credential store tab (miCASA) and cached  | ||||
|       secrets are dimmed when CASA is locked. </li> | ||||
|     <li>To unlock and restore functionality to CASA:</li> | ||||
|     <li>Click File > Unlock Secrets.</li> | ||||
|     <li>Enter your master password.</li> | ||||
|   </ol> | ||||
|      <!--End Content --> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										38
									
								
								c_gui/help/en/ViewSecrets.htm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								c_gui/help/en/ViewSecrets.htm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| <html> | ||||
| <head> | ||||
|    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
|    <title>Novell® CASA Manager</title> | ||||
|    <link href="hf_style.css" rel="styleSheet" type="text/css"> | ||||
|    <style type="text/css" media="screen"> | ||||
|       <!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
|    </style> | ||||
| </head> | ||||
|  | ||||
| <body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| <div id="headgraphic"> | ||||
| <img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| <div id="helpcontent"> | ||||
|  | ||||
| <!--Begin Content --> | ||||
|  | ||||
|   <div class="head3b">Viewing Secret Values</div> | ||||
|  | ||||
|   <!--Remove this section if you do not need introductory text for this topic --> | ||||
|   <p class="margintop2">You can view the Key-Value pairs of all secrets cached  | ||||
|     in the miCASA credential store.</p> | ||||
|   <ol> | ||||
|     <li>In the main Secret-ID window, click the secret you want to view.</li> | ||||
|     <li>Click Edit > View or Press F2.</li> | ||||
|     <li>By default, the key values are encrypted and displayed as asterisks. To  | ||||
|       show the value in clear text, click Show Values in Clear Text, then enter  | ||||
|       your master password.</li> | ||||
|   </ol> | ||||
|   <!--End Content --> | ||||
|   <p></p> | ||||
| <div class="ruleabove"></div></div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										
											BIN
										
									
								
								c_gui/help/en/en.zip
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								c_gui/help/en/en.zip
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								c_gui/help/en/h1_help_zcc.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								c_gui/help/en/h1_help_zcc.gif
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 490 B | 
							
								
								
									
										
											BIN
										
									
								
								c_gui/help/en/help_zcc_bg.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								c_gui/help/en/help_zcc_bg.gif
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 5.3 KiB | 
							
								
								
									
										157
									
								
								c_gui/help/en/hf_style.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										157
									
								
								c_gui/help/en/hf_style.css
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,157 @@ | ||||
| a { color: #039; text-decoration: underline } | ||||
| body  { color: black; font-family: "Trebuchet MS", Arial, Helvetica, Geneva, Swiss, SunSans-Regular; background-color: white } | ||||
| th, tr, td, table { font-family: "Trebuchet MS", Arial, Helvetica, Geneva, Swiss, SunSans-Regular } | ||||
| p, li, ol, ul, td  { font-size: 0.9em } | ||||
| td label   { font-size: 0.85em } | ||||
| label { font-size: 0.765em; } | ||||
|  | ||||
| h1  { font-weight: bold; font-size: 1.3em; line-height: 1.3em; margin-bottom: 0.6em } | ||||
| h2  { font-weight: bold; font-size: 1.2em; line-height: 1.2em; margin-bottom: 0.4em } | ||||
| h3  { font-weight: bold; font-size: 1em; line-height: 1.1em; margin-bottom: 0.2em } | ||||
| h4  { font-weight: bold; font-size: 0.85em; line-height: 1em; margin-bottom: 0.1em } | ||||
|  | ||||
| img.floatright { float: right } | ||||
| img.margin1 { margin: 1px } | ||||
| img.margin2 { margin: 2px } | ||||
| img.margin4 { margin: 4px } | ||||
| img.margin5r { margin-right: 5px } | ||||
| img.margin5l { margin-left: 5px } | ||||
| img.margin6 { margin: 6px } | ||||
| img.margin8 { margin: 8px } | ||||
| img.margin10 { margin: 10px } | ||||
| img.margin10r { margin-right: 10px } | ||||
| img.margin10l { margin-left: 10px; margin-right: 5px } | ||||
|  | ||||
| span.tab1u  { color: black; } | ||||
| span.tab2u { text-decoration: underline } | ||||
| span.tab2s { text-decoration: underline } | ||||
|  | ||||
| .activitycolor { background-color: #e8e887 } | ||||
| .allcaps { color: black; font-style: normal; font-weight: 500; font-size: 0.7em; text-transform: uppercase; letter-spacing: 0.2em } | ||||
| .errorlink   { color: #c82727; font-weight: normal; margin-top: 2px } | ||||
| .linktrialversion { color: #c82727; font-style: normal; font-weight: normal; font-size: 0.85em; text-decoration: underline } | ||||
| .errorhead { color: #c82727; font-style: normal; font-weight: 800; font-size: 1.2em; line-height: 1.5em; margin-bottom: 0.7em } | ||||
|  | ||||
| .formcolumnhead1  { color: black; font-weight: bold; font-size: 0.7em; text-align: center } | ||||
| .formhead1    { color: white; font-weight: bold; font-size: 1em; background-color: #458ab9; text-align: left; text-indent: 0.2em; letter-spacing: 0.05em; vertical-align: middle; padding: 0.2em } | ||||
| .formhead2  { color: white; font-weight: bold; font-size: 0.8em; line-height: 1.1em; background-color: #458ab9; text-align: left; text-indent: 0.5em; letter-spacing: 0.1em; vertical-align: middle } | ||||
| .menuhead1  { color: white; font-weight: 600; font-size: 0.7em; line-height: 1em; background-color: #458ab9; text-align: center; text-transform: uppercase; letter-spacing: 0.1em; vertical-align: middle; padding: 0.2em } | ||||
| .formhead1b  { color: white; font-weight: bold; font-size: 1em; line-height: 1.2em; background-color: #458ab9; text-align: left; text-indent: 0.5em; vertical-align: middle } | ||||
| .formdescriptext  { color: #4d6d8b; font-size: 0.8em; margin-left: 1em } | ||||
| .formdescriptextml0   { color: #4d6d8b; font-size: 0.8em } | ||||
| .instructions  { color: #4d6d8b; font-size: 0.8em } | ||||
| .head1 { color: black; font-weight: bold; font-size: 1.3em; line-height: 1.3em; margin-bottom: 0.6em } | ||||
| .head1a { color: #663; font-weight: bold; font-size: 1.3em; line-height: 1.3em; margin-bottom: 0.6em; margin-left: 1em } | ||||
| .head1b { color: black; font-weight: bold; font-size: 1.3em; line-height: 1.3em } | ||||
| .head1r   { color: #e10000; font-weight: normal; font-size: 1.3em } | ||||
| .head1w { color: white; font-weight: bold; font-size: 1.3em; line-height: 1.3em } | ||||
|  | ||||
| .head2  { color: black; font-weight: bold; font-size: 1.2em; margin-top: 0.4em; margin-bottom: 1.2em } | ||||
| .head2a { color: #663; font-weight: bold; font-size: 1.2em; margin-top: 0.4em } | ||||
| .head2b   { color: black; font-weight: 600; font-size: 1.2em; letter-spacing: 0.1em; margin-top: 0.4em; margin-bottom: 0.4em; border-bottom: 2px solid #458ab9 } | ||||
| .head2tm6 { color: black; font-weight: bold; font-size: 1.2em; margin-top: 0.6em } | ||||
| .head2tm8 { color: black; font-weight: bold; font-size: 1.2em; margin-top: 0.8em } | ||||
| .head2w { color: #fff; font-weight: bold; font-size: 1.2em; } | ||||
| .head2r   { color: #e10000; font-weight: normal; font-size: 1.2em; margin-top: 0.5em } | ||||
| .head2indent { color: black; font-weight: bold; font-size: 1.2em; margin-top: 0.4em; margin-left: 0.5em } | ||||
|  | ||||
| .head3  { color: black; font-weight: bold; font-size: 1em; margin-top: 0.3em; margin-bottom: 1em } | ||||
| .head3a { color: #663; font-weight: bold; font-size: 1em; margin-top: 0.3em } | ||||
| .head3b   { color: black; font-weight: bold; font-size: 1em; letter-spacing: 0.1em; margin-top: 0.4em; margin-bottom: 0.4em; border-bottom: 2px solid #458ab9 } | ||||
| .head3d { color: black; font-weight: bold; font-size: 1em } | ||||
| .head3center { color: black; font-weight: bold; font-size: 1em; text-align: center } | ||||
| .head3indent { color: black; font-weight: bold; font-size: 1em; margin-top: 0.3em; margin-left: 1em } | ||||
| .head3tm6  { color: black; font-weight: bold; font-size: 1em; margin-top: 0.6em; margin-bottom: 0.1em } | ||||
| .head3tm8  { color: black; font-weight: bold; font-size: 1em; margin-top: 0.8em; margin-bottom: 0.2em } | ||||
| .head3w { color: #fff; font-weight: bold; font-size: 1em } | ||||
| .head3r   { color: #e10000; font-weight: bold; font-size: 1em; letter-spacing: 0.05em; margin-top: 0.75em } | ||||
|  | ||||
| .head4 { color: black; font-weight: bold; font-size: 0.85em; margin-top: 0.5em; margin-bottom: 0.2em; margin-left: 1em;} | ||||
| .head4center { color: black; font-weight: bold; font-size: 0.85em; text-align: center } | ||||
| .head4b { color: #663; font-weight: bold; font-size: 0.85em; margin-top: 0.2em } | ||||
| .head4tm6   { color: black; font-weight: bold; font-size: 0.85em; margin-top: 0.6em; margin-bottom: 0.1em } | ||||
| .head4tm8  { color: black; font-weight: bold; font-size: 0.85em; margin-top: 0.8em; margin-bottom: 0.2em } | ||||
| .head4margin4 { color: black; font-weight: bold; font-size: 0.85em; background-color: #dfddd5; margin: 0.4em } | ||||
|  | ||||
| .head5  { color: black; font-weight: 600; font-size: 0.75em; margin-top: 0.2em; margin-left: 2em; } | ||||
| .head5a { color: black; font-weight: 600; font-size: 0.75em; margin-top: 0.2em } | ||||
| .head5b  { color: #663; font-weight: 600; font-size: 0.75em; margin-top: 0.2em; margin-left: 1em } | ||||
| .head5tm6 { color: black; font-weight: 600; font-size: 0.75em; margin-top: 0.6em; margin-left: 1em } | ||||
| .head5tm8 { color: black; font-weight: 600; font-size: 0.75em; margin-top: 0.8em; margin-left: 1em } | ||||
| .hint1 { color: #663; font-size: 12px; line-height: 14px } | ||||
|  | ||||
| .inactive  { color: #6c8899 } | ||||
| .margintop1 { margin-left: 1em; margin-top: 0.3em } | ||||
| .margintop2 { margin-top: 0.5em } | ||||
| .margintop3 { margin-top: 1em } | ||||
| .marginleft1 { margin-left: 1.5em; margin-top: 0.3em } | ||||
| .marginleft1b { font-size: 0.85em; margin-left: 1em } | ||||
| .marginleft2 { margin-left: 2em } | ||||
| .marginleft3 { margin-left: 3em } | ||||
| .marginleft4 { margin-left: 4em } | ||||
|  | ||||
| .nonproportional  { font-size: 10pt; font-family: "Courier New", Courier, Monaco } | ||||
| .padding8 { padding: 8px } | ||||
| .padding2x4 { padding-top: 2px; padding-bottom: 2px; padding-right: 4px; padding-left: 4px } | ||||
| .padding2 { padding: 2px } | ||||
| .padding4 { padding: 4px } | ||||
| .rowaltcolor   { background-color: #f4f4f4 } | ||||
| .scroll1 { background-color: #efeee9; padding: 10px 12px 10px 10px; overflow: auto } | ||||
| .ruleblue  { color: #458ab9 } | ||||
| .rulebelow  { padding-bottom: 5px; border-bottom: 2px solid #458ab9 } | ||||
| .rulebelow2  { padding-bottom: 3px; border-bottom: 1px solid #babdb6 } | ||||
| .ruleabove   { padding-top: 5px; border-top: 2px solid #458ab9 } | ||||
|  | ||||
| .breadcrumb   { color: #848582; font-size: 0.65em; line-height: 1em; text-decoration: none; margin-bottom: 1em } | ||||
| .smalltext { color: black; font-size: 0.75em; line-height: 1em } | ||||
| .smalltext2a { color: #663; font-size: 0.75em; line-height: 1em } | ||||
| .smalltext2b { color: black; font-weight: bold; font-size: 0.75em; line-height: 1em } | ||||
| .smalltext2c  { color: #355263; font-size: 0.75em; line-height: 1.1em; width: 480px } | ||||
| .smalltext2d  { color: #355263; font-size: 0.75em } | ||||
| .mediumtext { color: black; font-size: 0.85em; line-height: 1.1em } | ||||
| .largetext { color: black; font-style: normal; font-weight: normal; font-size: 1em; line-height: 1.1em } | ||||
| .textblue1  { color: #4d6d8b; font-size: 0.9em; line-height: 1.2em } | ||||
| .typegold1  { color: #663; font-size: 1em; line-height: 1.1em } | ||||
| .typegold2 { color: #663; font-size: 0.85em; line-height: 1.1em } | ||||
|  | ||||
| .tablecolumnhead1    { color: black; font-weight: bold; font-size: 0.75em; background-color: #efeeec; border-bottom: 1px solid black } | ||||
| .tablecolumnhead1b { color: black; font-weight: bold; font-size: 0.75em; border-bottom: 1px solid black } | ||||
| .tablecolumnhead2  { color: #663; font-weight: 600; font-size: 0.75em; text-align: center } | ||||
| .tablehead1    { color: white; font-weight: bold; font-size: 0.95em; background-color: #458ab9; text-align: left; text-indent: 0.2em; padding: 0.2em } | ||||
| .tablehead2  { color: black; font-weight: 600; font-size: 0.9em; line-height: 1.1em; background-color: #cc9; text-align: left; text-indent: 0.5em; letter-spacing: 0.1em } | ||||
| .tablehead1b { font-weight: bold; font-size: 1em; line-height: 1.1em; background-color: #cc9; text-align: left; text-indent: 0.5em } | ||||
| .tablesubhead1    { color: black; font-weight: bold; font-size: 0.85em; background-color: #efeeec; text-align: left; text-indent: 0.2em; padding: 0.2em } | ||||
| .tablesubhead3      { color: black; font-weight: 600; font-size: 0.75em; background-color: #dfddd5; text-align: left; padding: 0.2em } | ||||
| .tablesubhead2  { color: black; font-weight: normal; font-size: 0.85em; background-color: #efeeec; text-align: left; padding: 0.2em } | ||||
| .tabb { font-weight: bold; font-size: 14pt;} | ||||
| .tabw { color: white; font-weight: bold; font-size: 14pt; } | ||||
|  | ||||
| .task1    { font-size: 0.7em; margin-top: 0.35em; margin-left: 1.3em } | ||||
| .grouphead  { color: #333; font-weight: 600; font-size: 0.8em; line-height: 0.9em; margin-top: 0.7em; margin-left: 1.2em } | ||||
| .task1a    { font-size: 0.7em; margin-top: 0.35em } | ||||
| .task2    { font-size: 0.7em; margin-top: 0.35em; margin-left: 2.3em } | ||||
| .task3   { color: #003399; font-size: 0.6em; line-height: 1em; text-decoration: none; margin-top: 0.5em; margin-bottom: 0.5em; margin-left: 0.5em } | ||||
| .task3b { color: #003399; font-size: 0.75em; line-height: 1em; text-decoration: none; margin-top: 0.5em; margin-bottom: 0.5em; margin-left: 0.5em } | ||||
| .navhead     { color: black; font-weight: bold; font-size: 0.85em; line-height: 0.9em; background-color: #cfcdc6; vertical-align: middle; padding: 4px } | ||||
| .role1    { color: black; font-weight: bold; font-size: 0.75em; line-height: 0.85em; text-decoration: none; margin-top: 0.6em } | ||||
|  | ||||
| .windowheaddgrey { color: #5a5958; font-weight: bold; font-size: 18pt; line-height: 18pt; letter-spacing: 1px } | ||||
| .windowheadblack { color: #5a5958; font-weight: bold; font-size: 18pt; line-height: 18pt; letter-spacing: 1px } | ||||
| .windowheadwhite { color: white; font-weight: bold; font-size: 18pt; line-height: 18pt; letter-spacing: 1px } | ||||
| .width350 { width: 350px } | ||||
| .width300 { width: 300px } | ||||
| .width400 { width: 400px } | ||||
| .width450 { width: 450px } | ||||
| .width500 { width: 500px } | ||||
|  | ||||
| .headcapwide { color: #663; font-weight: 600; font-size: 0.6em; letter-spacing: 0.2em } | ||||
| .subtitle1 { color: black; font-weight: bold; font-size: 14px; line-height: 14px } | ||||
| .subtitle2 { color: white; font-weight: bold; font-size: 14px; line-height: 14px } | ||||
|  | ||||
| .headpb { color: black; font-weight: bold; font-size: 15px; text-align: left; vertical-align: top; letter-spacing: 2px } | ||||
| .tab1s  { color: white; font-weight: bold; font-size: 12px; line-height: 17px; text-decoration: none; background-color: #458ab9; text-align: center; white-space: nowrap  } | ||||
| .tab1u { color: black; background-color: #DFDDD5; font-size: 12px; text-decoration: none; font-weight: bold; text-align: center; white-space: nowrap } | ||||
| .tab2s { color: white; font-weight: bold; font-size: 11px; text-decoration: none; background-color: #458ab9; white-space: nowrap   } | ||||
| .tab2u { color: white; font-weight: normal; font-size: 11px; text-decoration: none; background-color: #458ab9; white-space: nowrap  } | ||||
|  | ||||
| .copyright  { color: #cfcdc6; font-size: 0.55em } | ||||
							
								
								
									
										62
									
								
								c_gui/help/en/legal_notices_en.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								c_gui/help/en/legal_notices_en.html
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,62 @@ | ||||
| <html> | ||||
|  | ||||
| 	<head> | ||||
| 		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||||
| 		<title>Novell ZENworks Control Center</title> | ||||
| 		<link href="../hf_style.css" rel="styleSheet" type="text/css"> | ||||
| 		<style type="text/css" media="screen"> | ||||
| 		<!-- | ||||
|       body            { font-family: "Trebuchet MS", Arial, Helvetica, Geneva; background: white url(help_zcc_bg.gif) repeat-x 0% 0% } | ||||
|       #headgraphic    { position: absolute; z-index: 0; top: 0px; left: 0px; width: 380px; visibility: visible } | ||||
|       #helpcontent    { position: absolute; top: 37px; left: 10px; width: 93%; visibility: visible } | ||||
|       --> | ||||
| 		</style> | ||||
| 	</head> | ||||
|  | ||||
| 	<body bgcolor="white" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | ||||
| 		<div id="headgraphic"> | ||||
| 			<img src="h1_help_zcc.gif" width="221" height="26" border="0"></div> | ||||
| 		<div id="helpcontent"> | ||||
| 			 | ||||
|   <div class="head3b">Legal Notices</div> | ||||
|  | ||||
| <p><b>Disclaimer</b> <br> | ||||
| Novell, Inc. makes no representations or warranties with respect to the contents or use of | ||||
| this documentation and specifically disclaims any express or implied warranties of | ||||
| merchantability or fitness for any particular purpose. Further, Novell, Inc. reserves the | ||||
| right to revise this publication and to make changes to its content, at any time, without | ||||
| obligation to notify any person or entity of such revisions or changes.</p> | ||||
|  | ||||
| <p>Further, Novell, Inc. makes no representations or warranties with respect to any Novell | ||||
| software, and specifically disclaims any express or implied warranties of merchantability | ||||
| or fitness for any particular purpose. Further, Novell, Inc. reserves the right to make | ||||
| changes to any and all parts of Novell software, at any time, without any obligation to | ||||
| notify any person or entity of such changes.</p> | ||||
|  | ||||
| <p><b>Export Notice</b> <br> | ||||
|     You may not use, export, or re-export this product in violation of any applicable  | ||||
|     laws or regulations including, without limitation, U.S. export regulations  | ||||
|     or the laws of the country in which you reside. | ||||
|   <p><b>Copyright</b> <br> | ||||
|     Copyright © 2005 Novell, Inc. All rights reserved. No part of this publication  | ||||
|     may be reproduced, photocopied, stored on a retrieval system, or transmitted  | ||||
|     without the express written consent of the publisher.</p> | ||||
|  | ||||
| <p><b>Patents</b> <br> | ||||
|     Novell, Inc. has intellectual property rights relating to technology embodied  | ||||
|     in the product that is described in this document. In particular, and without  | ||||
|     limitation, these intellectual property rights may include one or more of  | ||||
|     the U.S. patents listed at <a href="http://www.novell.com/company/legal/patents/">http://www.novell.com/company/legal/patents/</a>  | ||||
|     and one or more additional patents or pending patent applications in the U.S.  | ||||
|     and in other countries.</p> | ||||
|  | ||||
| <p><b>Novell Trademarks</b> <br> | ||||
| Novell, NetWare, and ZENworks are registered trademarks of Novell, Inc. in the United States and | ||||
| other countries. | ||||
|   <p>eDirectory and Red Carpet are trademarks of Novell, Inc.</p> | ||||
|  | ||||
| <p><b>Third-Party Trademarks</b> <br> | ||||
| All third-party trademarks are the property of their respective owners.</p> | ||||
| </div> | ||||
| </body> | ||||
| </html> | ||||
| @@ -52,7 +52,7 @@ | ||||
| 			  <property name="use_underline">True</property> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2740"> | ||||
| 			    <widget class="GtkImage" id="image2757"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-new</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -74,7 +74,7 @@ | ||||
| 				  <signal name="activate" handler="OnNewSecretActivated" last_modification_time="Tue, 27 Sep 2005 06:02:26 GMT"/> | ||||
|  | ||||
| 				  <child internal-child="image"> | ||||
| 				    <widget class="GtkImage" id="image2741"> | ||||
| 				    <widget class="GtkImage" id="image2758"> | ||||
| 				      <property name="visible">True</property> | ||||
| 				      <property name="stock">gtk-new</property> | ||||
| 				      <property name="icon_size">1</property> | ||||
| @@ -95,7 +95,7 @@ | ||||
| 				  <signal name="activate" handler="OnNewKeyActivated" last_modification_time="Tue, 27 Sep 2005 06:02:36 GMT"/> | ||||
|  | ||||
| 				  <child internal-child="image"> | ||||
| 				    <widget class="GtkImage" id="image2742"> | ||||
| 				    <widget class="GtkImage" id="image2759"> | ||||
| 				      <property name="visible">True</property> | ||||
| 				      <property name="stock">gtk-new</property> | ||||
| 				      <property name="icon_size">1</property> | ||||
| @@ -121,7 +121,7 @@ | ||||
| 			  <accelerator key="F5" modifiers="0" signal="activate"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2743"> | ||||
| 			    <widget class="GtkImage" id="image2760"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-refresh</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -148,7 +148,7 @@ | ||||
| 			  <signal name="activate" handler="OnLockMiCASASecrets" last_modification_time="Mon, 10 Oct 2005 19:51:54 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2744"> | ||||
| 			    <widget class="GtkImage" id="image2761"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-dialog-authentication</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -169,7 +169,7 @@ | ||||
| 			  <signal name="activate" handler="OnUnLockMiCASASecrets" last_modification_time="Tue, 11 Oct 2005 20:12:35 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2745"> | ||||
| 			    <widget class="GtkImage" id="image2762"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-open</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -190,7 +190,7 @@ | ||||
| 			  <signal name="activate" handler="OnDestroyMiCASASecrets" last_modification_time="Tue, 11 Oct 2005 20:12:35 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2746"> | ||||
| 			    <widget class="GtkImage" id="image2763"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-delete</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -218,7 +218,7 @@ | ||||
| 			  <accelerator key="Q" modifiers="GDK_CONTROL_MASK" signal="activate"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2747"> | ||||
| 			    <widget class="GtkImage" id="image2764"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-quit</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -254,7 +254,7 @@ | ||||
| 			  <accelerator key="F2" modifiers="0" signal="activate"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2748"> | ||||
| 			    <widget class="GtkImage" id="image2765"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-zoom-fit</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -275,7 +275,7 @@ | ||||
| 			  <signal name="activate" handler="LinkKeyValue" last_modification_time="Fri, 19 Aug 2005 06:23:15 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2749"> | ||||
| 			    <widget class="GtkImage" id="image2766"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-jump-to</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -296,7 +296,7 @@ | ||||
| 			  <signal name="activate" handler="CopyKeyValue" last_modification_time="Fri, 19 Aug 2005 06:23:15 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2750"> | ||||
| 			    <widget class="GtkImage" id="image2767"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-copy</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -324,7 +324,7 @@ | ||||
| 			  <accelerator key="Delete" modifiers="0" signal="activate"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2751"> | ||||
| 			    <widget class="GtkImage" id="image2768"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-delete</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -358,7 +358,7 @@ | ||||
| 			  <signal name="activate" handler="ResetMasterPassword" last_modification_time="Wed, 02 Nov 2005 15:28:00 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2752"> | ||||
| 			    <widget class="GtkImage" id="image2769"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-revert-to-saved</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -379,7 +379,7 @@ | ||||
| 			  <signal name="activate" handler="Preferences" last_modification_time="Fri, 19 Aug 2005 06:40:17 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2753"> | ||||
| 			    <widget class="GtkImage" id="image2770"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-preferences</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -413,7 +413,7 @@ | ||||
| 			  <signal name="activate" handler="on_create_sample_secrets1_activate" last_modification_time="Fri, 30 Sep 2005 12:58:41 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2754"> | ||||
| 			    <widget class="GtkImage" id="image2771"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-file</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -434,7 +434,7 @@ | ||||
| 			  <signal name="activate" handler="on_remove_test_secrets1_activate" last_modification_time="Fri, 30 Sep 2005 12:59:05 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2755"> | ||||
| 			    <widget class="GtkImage" id="image2772"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-missing-image</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -481,10 +481,11 @@ | ||||
| 			  <property name="visible">True</property> | ||||
| 			  <property name="label" translatable="yes">_Contents</property> | ||||
| 			  <property name="use_underline">True</property> | ||||
| 			  <signal name="activate" handler="OnMenuHelpActivate" last_modification_time="Tue, 08 Nov 2005 15:33:16 GMT"/> | ||||
| 			  <accelerator key="F1" modifiers="0" signal="activate"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2756"> | ||||
| 			    <widget class="GtkImage" id="image2773"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-help</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -511,7 +512,7 @@ | ||||
| 			  <signal name="activate" handler="About" last_modification_time="Thu, 01 Sep 2005 15:30:28 GMT"/> | ||||
|  | ||||
| 			  <child internal-child="image"> | ||||
| 			    <widget class="GtkImage" id="image2757"> | ||||
| 			    <widget class="GtkImage" id="image2774"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="stock">gtk-dialog-info</property> | ||||
| 			      <property name="icon_size">1</property> | ||||
| @@ -1329,7 +1330,7 @@ | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="helpbutton1"> | ||||
| 	    <widget class="GtkButton" id="helpbuttonRefresh"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -1338,6 +1339,7 @@ | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_helpbuttonRefresh_clicked" last_modification_time="Mon, 07 Nov 2005 18:38:34 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| @@ -1511,7 +1513,7 @@ their backend stores.</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="helpbutton2"> | ||||
| 	    <widget class="GtkButton" id="helpbuttonNewSecret"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -1520,6 +1522,7 @@ their backend stores.</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_helpbuttonNewSecret_clicked" last_modification_time="Tue, 08 Nov 2005 15:37:20 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| @@ -1919,7 +1922,7 @@ their backend stores.</property> | ||||
| 			    <widget class="GtkCheckButton" id="cbuttonShowPassword"> | ||||
| 			      <property name="visible">True</property> | ||||
| 			      <property name="can_focus">True</property> | ||||
| 			      <property name="label" translatable="yes">Show passwords in clear text.</property> | ||||
| 			      <property name="label" translatable="yes">Show Values in clear text.</property> | ||||
| 			      <property name="use_underline">True</property> | ||||
| 			      <property name="relief">GTK_RELIEF_NORMAL</property> | ||||
| 			      <property name="focus_on_click">True</property> | ||||
| @@ -2061,7 +2064,7 @@ their backend stores.</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="helpbutton3"> | ||||
| 	    <widget class="GtkButton" id="helpbuttonLinkKeys"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -2070,6 +2073,7 @@ their backend stores.</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_helpbuttonLinkKeys_clicked" last_modification_time="Tue, 08 Nov 2005 15:40:06 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| @@ -3161,19 +3165,6 @@ their backend stores.</property> | ||||
| 	  <property name="visible">True</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="button13"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| 	      <property name="label">gtk-help</property> | ||||
| 	      <property name="use_stock">True</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="buttonNo"> | ||||
| 	      <property name="visible">True</property> | ||||
| @@ -3941,7 +3932,7 @@ prompted for the Master Password at startup.</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="button17"> | ||||
| 	    <widget class="GtkButton" id="helpbuttonPreferences"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -3950,6 +3941,7 @@ prompted for the Master Password at startup.</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_helpbuttonPreferences_clicked" last_modification_time="Tue, 08 Nov 2005 15:44:30 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| @@ -4418,13 +4410,14 @@ prompted for the Master Password at startup.</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_EDGE</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="button27"> | ||||
| 	    <widget class="GtkButton" id="buttonNovell"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-7</property> | ||||
| 	      <signal name="clicked" handler="on_buttonNovell_clicked" last_modification_time="Mon, 07 Nov 2005 18:20:25 GMT"/> | ||||
|  | ||||
| 	      <child> | ||||
| 		<widget class="GtkImage" id="image536"> | ||||
| @@ -4762,7 +4755,7 @@ CSL Manojna</b></property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="button29"> | ||||
| 	    <widget class="GtkButton" id="helpbuttonAuthentication"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -4771,6 +4764,7 @@ CSL Manojna</b></property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_helpbuttonAuthentication_clicked" last_modification_time="Tue, 08 Nov 2005 15:47:27 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| @@ -5202,7 +5196,7 @@ prompted for the Master Password at startup.</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="button37"> | ||||
| 	    <widget class="GtkButton" id="buttonhelpEditSecret"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -5211,6 +5205,7 @@ prompted for the Master Password at startup.</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NONE</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_buttonhelpEditSecret_clicked" last_modification_time="Tue, 08 Nov 2005 15:49:23 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
| @@ -6421,7 +6416,7 @@ by cilcking the Close button.</property> | ||||
| 	  <property name="layout_style">GTK_BUTTONBOX_END</property> | ||||
|  | ||||
| 	  <child> | ||||
| 	    <widget class="GtkButton" id="helpbutton5"> | ||||
| 	    <widget class="GtkButton" id="helpbuttonResetMP"> | ||||
| 	      <property name="visible">True</property> | ||||
| 	      <property name="can_default">True</property> | ||||
| 	      <property name="can_focus">True</property> | ||||
| @@ -6430,6 +6425,7 @@ by cilcking the Close button.</property> | ||||
| 	      <property name="relief">GTK_RELIEF_NORMAL</property> | ||||
| 	      <property name="focus_on_click">True</property> | ||||
| 	      <property name="response_id">-11</property> | ||||
| 	      <signal name="clicked" handler="on_helpbuttonResetMP_clicked" last_modification_time="Thu, 10 Nov 2005 17:06:50 GMT"/> | ||||
| 	    </widget> | ||||
| 	  </child> | ||||
|  | ||||
|   | ||||
| @@ -12,27 +12,27 @@ | ||||
|   <component name="FileEditorManager"> | ||||
|     <history> | ||||
|       <source-position-entry url="jar://D:/ccm/iMan202_FPx/iManager/tools/jdk/jre/lib/rt.jar!/java/lang/String.class" line="12" column="19" vertical-scroll-proportion="0.20307167" horizontal-scroll-proportion="0.15182649" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasaTest.java" line="23" column="39" vertical-scroll-proportion="0.6493056" horizontal-scroll-proportion="0.2820248" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasa.java" line="0" column="47" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.33987603" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/NetCredential.java" line="24" column="67" vertical-scroll-proportion="0.7083333" horizontal-scroll-proportion="0.48450413" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasa.java" line="0" column="47" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.33952528" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/NetCredential.java" line="24" column="67" vertical-scroll-proportion="0.48056537" horizontal-scroll-proportion="0.48400414" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasaTest.java" line="33" column="0" vertical-scroll-proportion="0.6607774" horizontal-scroll-proportion="0.0" /> | ||||
|     </history> | ||||
|     <open-files> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasa.java" line="0" column="47" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.33987603" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasaTest.java" line="23" column="39" vertical-scroll-proportion="0.6493056" horizontal-scroll-proportion="0.2820248" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/NetCredential.java" line="24" column="67" vertical-scroll-proportion="0.7083333" horizontal-scroll-proportion="0.48450413" selected="true" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasa.java" line="0" column="47" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.33952528" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/MiCasaTest.java" line="33" column="0" vertical-scroll-proportion="0.6607774" horizontal-scroll-proportion="0.0" selected="true" /> | ||||
|       <source-position-entry url="file://$PROJECT_DIR$/src/com/novell/casa/NetCredential.java" line="24" column="67" vertical-scroll-proportion="0.48056537" horizontal-scroll-proportion="0.48400414" /> | ||||
|     </open-files> | ||||
|   </component> | ||||
|   <component name="ToolWindowManager"> | ||||
|     <frame x="-4" y="-4" width="1408" height="1028" extended-state="6" /> | ||||
|     <editor active="true" /> | ||||
|     <editor active="false" /> | ||||
|     <layout> | ||||
|       <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="1" /> | ||||
|       <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="true" weight="0.29678848" order="2" /> | ||||
|       <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.29646522" order="2" /> | ||||
|       <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="2" /> | ||||
|       <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.32930845" order="7" /> | ||||
|       <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="sliding" type="sliding" visible="false" weight="0.4" order="0" /> | ||||
|       <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="true" weight="0.23809524" order="0" /> | ||||
|       <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.26135105" order="3" /> | ||||
|       <window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="true" weight="0.23736264" order="0" /> | ||||
|       <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.26086956" order="3" /> | ||||
|       <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="1" /> | ||||
|       <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.3295325" order="1" /> | ||||
|       <window_info id="Messages" active="false" anchor="bottom" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.32930845" order="8" /> | ||||
| @@ -273,17 +273,15 @@ | ||||
|   <component name="ProjectViewSettings"> | ||||
|     <navigator currentView="ProjectPane" flattenPackages="false" showMembers="false" showStructure="false" autoscrollToSource="false" splitterProportion="0.5" /> | ||||
|     <view id="ProjectPane"> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com/novell/casa" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com/novell" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com/novell/casa" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com/novell" /> | ||||
|     </view> | ||||
|     <view id="SourcepathPane"> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com/novell" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src/com/novell/casa" /> | ||||
|       <expanded_node type="directory" url="file://$PROJECT_DIR$/src" /> | ||||
|     </view> | ||||
|     <view id="ClasspathPane" /> | ||||
|   </component> | ||||
|   | ||||
| @@ -18,7 +18,7 @@ public class MiCasaTest { | ||||
|                 store.setCredential(0, "JavaAppID", "Network", 0, "javaAppID Username", "javaAppID Password"); | ||||
|                 store.setCredential(0, "Groupwise", null, 0, "groupwise Username", "gw Password"); | ||||
|  | ||||
|                 NetCredential nc = store.getCredential(0, "Groupwise", null, 0); | ||||
|                 NetCredential nc = store.getCredential(0, "JavaAppID", null, 0); | ||||
|                 System.out.println("Username: "+nc.getUsername()); | ||||
|                 System.out.println("Password: "+nc.getPassword()); | ||||
|  | ||||
|   | ||||
| @@ -18,7 +18,7 @@ License:      GNU Library General Public License v. 2.0 and 2.1 (LGPL) | ||||
| Group:        Productivity/Other | ||||
| Autoreqprov:  on | ||||
| %define	      bldno	1.1.1 | ||||
| Version:      1.5.127 | ||||
| Version:      1.5.128 | ||||
| Release:      0 | ||||
| Summary:      Novell Common Authentication Service Adapter (CASA) | ||||
| Source:       %{name}-%{version}.tar.bz2 | ||||
| @@ -49,7 +49,7 @@ for credential storage and single sign-on. | ||||
| %package gui | ||||
| Summary:      The CASA Console Utility | ||||
| Group:        Productivity/Other | ||||
| Requires:     CASA = %{version} gtk-sharp >= 1.0.9  | ||||
| Requires:     CASA = %{version} gtk-sharp >= 1.0.9 gnome-keyring >= 0.2.1 kdelibs3 >= 3.2.1 | ||||
| Provides:     CASA-gui | ||||
|  | ||||
| %description gui  | ||||
| @@ -81,6 +81,8 @@ mkdir %{buildroot}%{prefix}/CASA/%{_lib} | ||||
| mkdir %{buildroot}%{prefix}/CASA/bin | ||||
| mkdir %{buildroot}%{prefix}/CASA/include | ||||
| mkdir %{buildroot}%{prefix}/CASA/images | ||||
| mkdir %{buildroot}%{prefix}/CASA/help | ||||
| mkdir %{buildroot}%{prefix}/CASA/help/en | ||||
| mkdir %{buildroot}%{prefix}/CASA/doc | ||||
| mkdir -p %{buildroot}/%{_lib}/security | ||||
|  | ||||
| @@ -100,6 +102,7 @@ install -m 755 %{binsource}/lux/ndbg/CASAManager.exe %{buildroot}%{prefix}/CASA/ | ||||
| install -m 755 c_gui/CASAManager.sh %{buildroot}%{prefix}/CASA/bin | ||||
| install -m 755 c_gui/CASAManager.desktop %{buildroot}%{prefix}/CASA/ | ||||
| cp -f c_gui/images/* %{buildroot}%{prefix}/CASA/images | ||||
| cp -f c_gui/help/en/* %{buildroot}%{prefix}/CASA/help/en | ||||
| install -m 755 c_micasad/startup/micasad %{buildroot}%{prefix}/CASA/bin | ||||
| install -m 755 c_micasad/startup/micasad.sh %{buildroot}%{prefix}/CASA/bin | ||||
| #install -m 755 c_clientlogin/novell-ncl-autologin.sh %{buildroot}%{prefix}/CASA/bin | ||||
| @@ -114,6 +117,7 @@ install -d %{buildroot}%{prefix}/CASA/bin | ||||
| install -d %{buildroot}%{prefix}/CASA/doc | ||||
| install -d %{buildroot}%{prefix}/CASA/include | ||||
| install -d %{buildroot}%{prefix}/CASA/images | ||||
| install -d %{buildroot}%{prefix}/CASA/help/en | ||||
| install -d %{buildroot}/%{_lib}/security | ||||
|  | ||||
|  | ||||
| @@ -290,4 +294,7 @@ rm -rf $RPM_BUILD_ROOT | ||||
| %dir %{prefix}/CASA/images | ||||
| %dir %{prefix}/CASA/images/* | ||||
|  | ||||
| %dir %{prefix}/CASA/help/en | ||||
| %dir %{prefix}/CASA/help/en/* | ||||
|  | ||||
| %changelog -n CASA | ||||
|   | ||||
		Reference in New Issue
	
	Block a user