You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by hu...@apache.org on 2005/10/26 17:52:00 UTC

svn commit: r328662 - in /struts/sandbox/trunk/overdrive/Nexus/Web: AlertLabel.cs HintLabel.cs ViewLabel.cs

Author: husted
Date: Wed Oct 26 08:51:51 2005
New Revision: 328662

URL: http://svn.apache.org/viewcvs?rev=328662&view=rev
Log:
OVR-23
* Adjust default settings.

Modified:
    struts/sandbox/trunk/overdrive/Nexus/Web/AlertLabel.cs
    struts/sandbox/trunk/overdrive/Nexus/Web/HintLabel.cs
    struts/sandbox/trunk/overdrive/Nexus/Web/ViewLabel.cs

Modified: struts/sandbox/trunk/overdrive/Nexus/Web/AlertLabel.cs
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/Nexus/Web/AlertLabel.cs?rev=328662&r1=328661&r2=328662&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/Nexus/Web/AlertLabel.cs (original)
+++ struts/sandbox/trunk/overdrive/Nexus/Web/AlertLabel.cs Wed Oct 26 08:51:51 2005
@@ -20,8 +20,6 @@
 		public AlertLabel()
 		{
 			Suffix = ALERT_SUFFIX;
-			Resource = false;
-			Required = false;
 			View_Hint = false;
 			EnableViewState = false;
 		}

Modified: struts/sandbox/trunk/overdrive/Nexus/Web/HintLabel.cs
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/Nexus/Web/HintLabel.cs?rev=328662&r1=328661&r2=328662&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/Nexus/Web/HintLabel.cs (original)
+++ struts/sandbox/trunk/overdrive/Nexus/Web/HintLabel.cs Wed Oct 26 08:51:51 2005
@@ -18,8 +18,6 @@
 		public HintLabel()
 		{
 			Suffix = HINT_SUFFIX;
-			Resource = false;
-			Required = false;
 			View_Alert = false;
 		}
 	}

Modified: struts/sandbox/trunk/overdrive/Nexus/Web/ViewLabel.cs
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/Nexus/Web/ViewLabel.cs?rev=328662&r1=328661&r2=328662&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/Nexus/Web/ViewLabel.cs (original)
+++ struts/sandbox/trunk/overdrive/Nexus/Web/ViewLabel.cs Wed Oct 26 08:51:51 2005
@@ -43,7 +43,7 @@
 		public const string MESSAGE_SUFFIX = "_msg";
 
 		/// <summary>
-		/// Field for Suffix property.
+		/// Field for Suffix property ["_msg"].
 		/// </summary>
 		/// 
 		private string _Suffix = MESSAGE_SUFFIX;
@@ -59,13 +59,13 @@
 		}
 
 		/// <summary>
-		/// Field for Resource property.
+		/// Field for Resource property [TRUE].
 		/// </summary>
 		/// 
 		private bool _Resource = true;
 
 		/// <summary>
-		/// If true, populate from Message Resources [TRUE].
+		/// If true, populate from Message Resources.
 		/// </summary>
 		/// 
 		public bool Resource
@@ -75,14 +75,14 @@
 		}
 		
 		/// <summary>
-		/// Field for Required property.
+		/// Field for Required property [FALSE].
 		/// </summary>
 		/// 
 		private bool _Required = false;
 
 		/// <summary>
 		/// If true, throw exception if Resource==true 
-		/// and message not in resource [FALSE].
+		/// and message not in resource.
 		/// </summary>
 		/// 
 		public bool Required
@@ -92,14 +92,14 @@
 		}
 
 		/// <summary>
-		/// Field for View_Hint property.
+		/// Field for View_Hint property [TRUE].
 		/// </summary>
 		/// 
 		private bool _View_Hint = true;
 
 		/// <summary>
 		/// If true, register for View_Alert event 
-		/// and display any alert for corresponding field [TRUE].
+		/// and display any alert for corresponding field.
 		/// </summary>
 		/// 
 		public bool View_Hint
@@ -109,14 +109,14 @@
 		}
 
 		/// <summary>
-		/// Field for View_Alert property.
+		/// Field for View_Alert property [TRUE].
 		/// </summary>
 		/// 
 		private bool _View_Alert = true;
 
 		/// <summary>
 		/// If true, register for View_Hint event 
-		/// and display any hint for corresponding field [TRUE].
+		/// and display any hint for corresponding field.
 		/// </summary>
 		/// 
 		public bool View_Alert



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org