[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-24 Thread JIRA
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61475 ]
 
Matthias Weßendorf commented on MYFACES-146:


Hal,

thanks for supporting MyFaces.
But I think I don't understand your problem.

I just looked at 
http://myfaces.apache.org/builds/1.0.9/rc1/myfaces-1.0.9.tgz
and saw that

both,

tld containts 
"org.apache.myfaces.custom.regexprvalidator.ValidateRegExprTag"

also the JAR for the myfaces extras.

Perhaps you can help me abit?

Thanks,

> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-24 Thread Hal Deadman (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61493 ]
 
Hal Deadman commented on MYFACES-146:
-

I am using CVS head, not 1.09. 

The validator classes that I wanted to use were there, but when Weblogic 8.1 
processes the tld for the taglib containing the validator tag, it checks to see 
that all other tag classes exist and are valid (in terms of attributes vs. tld, 
etc). 

The build script was not including all of the tag classes that were referenced 
in the tld. In particular it needed the taglib directory from the impl.classes

After I modified the build script and re-built the extensions jar I was able to 
use the regexp validator (in weblogic). 

> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-24 Thread Bill Dudney (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61530 ]
 
Bill Dudney commented on MYFACES-146:
-

Hi Hal,

Just want to make sure I understand. From the thread thus far it sounds like 
some classes referenced in the TLD are not being included in the jar file. For 
example;

  
foo
org.apache.myfaces.foo
...
  
...
  
bar
org.apache.myfaces.bar
...
  

bar is in the jar but foo is not?

So WL81 is complaining that bar can not be found?

> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-24 Thread Hal Deadman (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61537 ]
 
Hal Deadman commented on MYFACES-146:
-

Yes, that is correct. 

The extensions jar includes all classes from src/share and src/components but 
the core and html tags referenced in the tld are in 
src/myfaces/org/apache/myfaces/taglib/**/*.class.

I fixed the problem by including those tags in the jar but if you don't want 
them in there then maybe the tld needs to be broken up somehow?



> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-24 Thread Hal Deadman (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61538 ]
 
Hal Deadman commented on MYFACES-146:
-

One more thing, I included the core/html tag classes so weblogic wouldn't 
complain but I am not actually using them so I don't know if they work. They 
may have other dependencies in myfaces/src that are required for them to work 
at runtime. 

> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-25 Thread sean schofield (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61551 ]
 
sean schofield commented on MYFACES-146:


This might be due to a change in the build script I made.  I had to tweak it 
because I was getting all sorts of java dependency files in myfaces.jar.  I was 
careful to include everything that was supposed to be there but perhaps I 
missed something.

Was this something that used to be included in the jar file or has it always 
been missing as far as we know?  I can look into this more when I get back home 
to my dev machine next week.

> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-25 Thread Hal Deadman (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61553 ]
 
Hal Deadman commented on MYFACES-146:
-

OK, I didn't realize that the extensions tags had their own tld. I think the 
problem is that the ext tld references the HtmlInputHiddenTag which is not in 
the taglib.html.ext package. There doesn't seem to be an ext version of the 
hidden tag so maybe someone just tried to include the spec version but the 
class doesn't make it into the ext jar. I haven't verified that this is the 
only class missing, I will try to do so later today. 

from myfaces_ext.tld


inputHidden
org.apache.myfaces.taglib.html.HtmlInputHiddenTag
JSP

Extends standard inputHidden by providing additional MyFaces 
goodies.

&ui_input_attributes;
&ext_forceId_attribute;




> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



[jira] Commented: (MYFACES-146) latest build of extensions jar doesn't include Tag classes

2005-03-29 Thread Hal Deadman (JIRA)
 [ 
http://issues.apache.org/jira/browse/MYFACES-146?page=comments#action_61788 ]
 
Hal Deadman commented on MYFACES-146:
-

I was able to fix this problem by adding HtmlInputHiddenTag.java to 
src/components/org/apache/myfaces/taglib/html/ext and changing myfaces_ext.tld 
to point to that class instead of the non-ext version that isn't in 
myfaces-extension.jar. 

html/ext/HtmlInputHiddenTag.java is pretty simple, all of the functionality is 
in its base class. 

> latest build of extensions jar doesn't include Tag classes
> --
>
>  Key: MYFACES-146
>  URL: http://issues.apache.org/jira/browse/MYFACES-146
>  Project: MyFaces
> Type: Bug
> Versions: Nightly Build
> Reporter: Hal Deadman

>
> I was trying to use the regexp validator in from the extensions jar. This 
> meant I needed to use the  tag and Weblogic complained 
> that it couldn't find other tag classes referenced in the x tld. I added the 
> following to build script and was able to use the validators I wanted. 
>   includes="org/apache/myfaces/taglib/**/*.class"/>
> Index: build.xml
> ===
> RCS file: /home/cvspublic/incubator-myfaces/build/build.xml,v
> retrieving revision 1.87
> diff -u -r1.87 build.xml
> --- build.xml 22 Mar 2005 06:59:42 -  1.87
> +++ build.xml 23 Mar 2005 00:42:50 -
> @@ -235,6 +235,8 @@
>   includes="**/*.class"/>
> includes="**/*.class"/>
> + + includes="org/apache/myfaces/taglib/**/*.class"/>   
> 
>  
>includes="myfaces_ext.tld,myfaces_ext_sf.tld"

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira