You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2006/06/25 18:29:03 UTC

svn commit: r417028 - in /myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld: entities/say_hello_attributes.xml mycomponents.tld

Author: baranda
Date: Sun Jun 25 09:29:02 2006
New Revision: 417028

URL: http://svn.apache.org/viewvc?rev=417028&view=rev
Log:
Fixed the tld generated by the archetype and one of the attributes of the demo component

Modified:
    myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/entities/say_hello_attributes.xml
    myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/mycomponents.tld

Modified: myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/entities/say_hello_attributes.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/entities/say_hello_attributes.xml?rev=417028&r1=417027&r2=417028&view=diff
==============================================================================
--- myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/entities/say_hello_attributes.xml (original)
+++ myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/entities/say_hello_attributes.xml Sun Jun 25 09:29:02 2006
@@ -1,7 +1,7 @@
 <!-- This is the list of attributes for the sayHello component -->
 <attribute>
     <name>firstName</name>
-    <required>true</required>
+    <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
         The first name of the user

Modified: myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/mycomponents.tld
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/mycomponents.tld?rev=417028&r1=417027&r2=417028&view=diff
==============================================================================
--- myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/mycomponents.tld (original)
+++ myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/src/main/tld/mycomponents.tld Sun Jun 25 09:29:02 2006
@@ -15,7 +15,7 @@
 ===========================================================================
 -->
 <!ENTITY ui_component_attributes       SYSTEM "entities/ui_component_attributes.xml">
-<!ENTITY html_input_suggest_attributes       SYSTEM "entities/say_hello_attributes.xml">
+<!ENTITY say_hello_attributes       SYSTEM "entities/say_hello_attributes.xml">
 ]>
 
 <taglib>
@@ -39,7 +39,7 @@
 
         <!-- import the entities for that component here-->
         &ui_component_attributes;
-        &html_input_suggest_attributes;
+        &say_hello_attributes;
 	</tag>