Re: serialVersionUID updates?

2006-05-06 Thread Matthias Wessendorf

On 5/6/06, Sean Schofield <[EMAIL PROTECTED]> wrote:

I was never a fan of adding it in the first place but I seem to recall
either Bill or Stan showing a strong preference for it.


I think that was introduced during their usage of eclipse 3.1.x.
(it show a note on clazzes w/out serialVersUID...


[jira] Commented: (MYFACES-1299) doesn't allow multiple inside

2006-05-06 Thread JIRA
[ 
http://issues.apache.org/jira/browse/MYFACES-1299?page=comments#action_12378203 
] 

Matthias Weßendorf commented on MYFACES-1299:
-

Mikhail-

Mario was faster than I :-)

BTW. here is a link ([1]), which shows howto use multiple components (wraped by 
UIPanel) inside a facet
(here )

-Matthias
[1] http://www.exadel.com/tutorial/jsf/jsftags-guide.html#panel

>  doesn't allow multiple  inside
> -
>
>  Key: MYFACES-1299
>  URL: http://issues.apache.org/jira/browse/MYFACES-1299
>  Project: MyFaces Core
> Type: Bug

> Versions: 1.1.3-SNAPSHOT
> Reporter: Mikhail Grushinskiy
>  Fix For: 1.1.3-SNAPSHOT

>
>  doesn't allow multiple  inside
> multiple  inside  cause exception
> [java] WARN   SL: javax.servlet.ServletException: facet 'header' already 
> has a child associated. current associated component id: 
> eventDetailsForm:productInfoView:_idJsp5 
> class:org.apache.myfaces.component.html.ext.HtmlOutputText
> [java] at 
> javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
> [java] at 
> com.webapp.framework.web.faces.ExtFacesServlet.service(ExtFacesServlet.java:31)
> [java] at 
> weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:214)
> [java] at 
> weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:120)
> [java] at 
> weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
> [java] at 
> weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
> [java] at 
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
> [java] at 
> leh.efw.shared.filter.LoggingFilter.doFilter(LoggingFilter.java:113)
> [java] at 
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
> [java] at 
> org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
> [java] at 
> weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



Re: serialVersionUID updates?

2006-05-06 Thread Sean Schofield

I think that was introduced during their usage of eclipse 3.1.x.
(it show a note on clazzes w/out serialVersUID...


Yes that sounds familiar.


[jira] Resolved: (TOBAGO-60) Application-Converter ist not used for tx:date component

2006-05-06 Thread Bernd Bohmann (JIRA)
 [ http://issues.apache.org/jira/browse/TOBAGO-60?page=all ]
 
Bernd Bohmann resolved TOBAGO-60:
-

Resolution: Fixed

> Application-Converter ist not used for tx:date component
> 
>
>  Key: TOBAGO-60
>  URL: http://issues.apache.org/jira/browse/TOBAGO-60
>  Project: MyFaces Tobago
> Type: Bug

> Versions: 1.0.7
> Reporter: Richard van Nieuwenhoven
> Assignee: Bernd Bohmann
> Priority: Minor
>  Fix For: 1.0.8
>  Attachments: DateRenderer.java.diff, InRenderer.java.diff
>
> only the local converter is used for tx:date valuebinding conversions
> the java jsf doc says we should also use the application-global-version:
> http://java.sun.com/javaee/javaserverfaces/1.1_01/docs/api/javax/faces/component/UIOutput.html
> To fix this we made the following changes:
> 1. In the class 
> org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.InRendererBase.java
>  
> we included this method:
> protected Converter getConverter(FacesContext facesContext, UIOutput 
> component) {
>   Converter converter = component.getConverter();
>   if (converter != null)
>   return converter;
>   ValueBinding vb = component.getValueBinding("value");
>   if (vb == null)
>   return null;
>   return 
> facesContext.getApplication().createConverter(vb.getType(facesContext));
> }
> in the method  "protected void renderMain(FacesContext facesContext, UIInput 
> input,TobagoResponseWriter writer) throws IOException"
> we replaced the "component.getConverter()" with "getConverter(facesContext, 
> input)"
>  2. in the class 
> org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.DateRenderer
>  we also changed the "((UIOutput) component).getConverter()" with 
> "getConverter(facesContext, (UIOutput) component)"
> please include this in the next release.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Created: (TOBAGO-66) Sheet supports paging in DataModel if getRowCount() returns -1

2006-05-06 Thread Bernd Bohmann (JIRA)
Sheet supports paging in DataModel if getRowCount() returns -1
--

 Key: TOBAGO-66
 URL: http://issues.apache.org/jira/browse/TOBAGO-66
 Project: MyFaces Tobago
Type: Improvement

Reporter: Bernd Bohmann
 Assigned to: Bernd Bohmann 
Priority: Minor
 Fix For: 1.0.7


.Sheet should be able to support paging in a ResultSet

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Resolved: (TOBAGO-66) Sheet supports paging in DataModel if getRowCount() returns -1

2006-05-06 Thread Bernd Bohmann (JIRA)
 [ http://issues.apache.org/jira/browse/TOBAGO-66?page=all ]
 
Bernd Bohmann resolved TOBAGO-66:
-

Resolution: Fixed

> Sheet supports paging in DataModel if getRowCount() returns -1
> --
>
>  Key: TOBAGO-66
>  URL: http://issues.apache.org/jira/browse/TOBAGO-66
>  Project: MyFaces Tobago
> Type: Improvement

> Reporter: Bernd Bohmann
> Assignee: Bernd Bohmann
> Priority: Minor
>  Fix For: 1.0.7

>
> .Sheet should be able to support paging in a ResultSet

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



Please Review Tomahawk Release Bundle

2006-05-06 Thread Sean Schofield

Please review the Tomahawk 1.1.2 release bundle sometime in the next
24 hours before I start the mirroring process.  I haven't even checked
the examples so we want to make sure everything works.

Sean


[jira] Created: (TOMAHAWK-417) Spinner Control

2006-05-06 Thread Julian Ray (JIRA)
Spinner Control
---

 Key: TOMAHAWK-417
 URL: http://issues.apache.org/jira/browse/TOMAHAWK-417
 Project: MyFaces Tomahawk
Type: New Feature

Reporter: Julian Ray
Priority: Trivial


This is a first draft of a spinner control for enhancing UI by providing a 
controlled numeric input where the user can increment/decrement a value using 
configurable step sizes. Can operate with either client or server side updates.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



[jira] Commented: (TOMAHAWK-417) Spinner Control

2006-05-06 Thread Julian Ray (JIRA)
[ 
http://issues.apache.org/jira/browse/TOMAHAWK-417?page=comments#action_12378249 
] 

Julian Ray commented on TOMAHAWK-417:
-

faces-config 

  
org.apache.myfaces.Spinner
org.apache.myfaces.custom.spinner.Spinner
  


   javax.faces.Input
   org.apache.myfaces.SpinnerRenderer
   
org.apache.myfaces.custom.spinner.SpinnerRenderer


myfaces_sandbox.tld



spinner

org.apache.myfaces.custom.spinner.SpinnerTag
JSP
Provides a spinner control for integer 
values

maximum
true
false
Maximum value for the spinner. 
Integer


minimum
true
false
Minimum value for the spinner. 
Integer


stepSize
false
false
Amount to increment/decrement the value 
with each click. Default = 1


buttonUpStyleClass
false
false
Style class for the increment 
button.


buttonDownStyleClass
false
false
Style class for the decrement 
button.


mode
false
false
Value to be displayed.

&standard_input_text_attributes;
&user_role_attributes;



> Spinner Control
> ---
>
>  Key: TOMAHAWK-417
>  URL: http://issues.apache.org/jira/browse/TOMAHAWK-417
>  Project: MyFaces Tomahawk
> Type: New Feature

> Reporter: Julian Ray
> Priority: Trivial
>  Attachments: Spinner.java, SpinnerRenderer.java, SpinnerTag.java
>
> This is a first draft of a spinner control for enhancing UI by providing a 
> controlled numeric input where the user can increment/decrement a value using 
> configurable step sizes. Can operate with either client or server side 
> updates.

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira



Re: dataScroller on TOP of dataTable

2006-05-06 Thread Thomas Spiegl

Hi Mario,

that's a very old issue, which can be solved with t:buffer
http://www.irian.at/myfaces/buffer.jsf


On 5/5/06, Mario Ivankovits <[EMAIL PROTECTED]> wrote:

Hi Greg!
> 
>  
>
[snip]
> Worked for me.
>
Yes, I know that this will work, but I wont use the header/footer for
this. I'll say this is a workaround.

Ciao,
Mario





--
http://www.irian.at

Your JSF powerhouse -
JSF Consulting, Development and
Courses in English and German

Professional Support for Apache MyFaces


Re: Please Review Tomahawk Release Bundle

2006-05-06 Thread Sean Schofield

BTW the release bundle is in the nightly dir.  Please also review the
1.1.3. core bundle which I also put there.

Sean

On 5/6/06, Sean Schofield <[EMAIL PROTECTED]> wrote:

Please review the Tomahawk 1.1.2 release bundle sometime in the next
24 hours before I start the mirroring process.  I haven't even checked
the examples so we want to make sure everything works.

Sean



[jira] Created: (TOMAHAWK-418) &start_conversation_attributes XSLT error

2006-05-06 Thread Dennis Byrne (JIRA)
&start_conversation_attributes XSLT error
-

 Key: TOMAHAWK-418
 URL: http://issues.apache.org/jira/browse/TOMAHAWK-418
 Project: MyFaces Tomahawk
Type: Bug

 Environment: Fresh co from May 6, 2005 
Updated co that is several weeks old as well
Reporter: Dennis Byrne


The following error occurs during the build of the sandbox .  I didn't have 
time to look into the main cause.

[INFO] transform, srcFile: 
D:\co\myfaces\tomahawk\sandbox\core\src\main\tld\myfaces_sandbox.tld, destFile: 
D:\co\my
faces\tomahawk\sandbox\core\target\classes\META-INF\myfaces_sandbox.tld
Using original entity definition for "&start_conversation_attributes;".
; SystemID: 
file:///D:/co/myfaces/tomahawk/sandbox/core/src/main/tld/myfaces_sandbox.tld; 
Line#: 225; Column#: -1
javax.xml.transform.TransformerException: Reference to undefined entity 
"&ext_escape_attribute;".
at 
org.apache.xalan.transformer.TransformerImpl.fatalError(TransformerImpl.java:739)
at 
org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:715)
at 
org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1129)
at 
org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1107)
at org.codehaus.mojo.xslt.XsltMojo.execute(XsltMojo.java:133)
at 
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:432)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:530)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.ja
va:472)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:451)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecuto
r.java:303)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:27
0)
at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:139)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:249)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)

-- 
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
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira