[jira] [Commented] (PIVOT-709) Want a single-line text input component that wraps

2011-08-08 Thread Bill van Melle (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-709?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13081364#comment-13081364 ] Bill van Melle commented on PIVOT-709: -- Thanks, it works fine. > Want a single-line t

[jira] [Updated] (PIVOT-700) SplashScreen control

2011-08-08 Thread Chris Bartlett (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-700?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Bartlett updated PIVOT-700: - Attachment: SplashScreenTest.zip Test application to go with the most recent patch > SplashScreen

[jira] [Updated] (PIVOT-700) SplashScreen control

2011-08-08 Thread Chris Bartlett (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-700?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Bartlett updated PIVOT-700: - Attachment: splash_screen.patch Updated patch that works with full screen and regular desktop appl

[jira] [Updated] (PIVOT-787) Allow a Task to be executed using an ExecutorService supplied at execution time

2011-08-08 Thread Chris Bartlett (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Bartlett updated PIVOT-787: - Attachment: task_executor_service.patch > Allow a Task to be executed using an ExecutorService sup

[jira] [Created] (PIVOT-787) Allow a Task to be executed using an ExecutorService supplied at execution time

2011-08-08 Thread Chris Bartlett (JIRA)
Allow a Task to be executed using an ExecutorService supplied at execution time --- Key: PIVOT-787 URL: https://issues.apache.org/jira/browse/PIVOT-787 Project: Pivot

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
Yeah, of course that is true if the fields are non-public and javadoc is not instructed to include them, but that goes without saying. However some people do use -protected, -private & -package as they are supported by the javadoc tool. Defaults are often changed. I have worked at companies who r

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Greg Brown
What I mean is that private fields aren't included in Javadoc by default, so in general you won't see the field at all, never mind the fact that it is annotated with @BXML. It's not *harmful* to add @Documented to @BXML - I just don't think it's going to have much effect, that's all. G On Aug

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
Choosing not to include it in Javadocs it is fine if we are certain that it is of no value, or is detrimental in some way. I don't see how it it would be detrimental, and it might be useful to some people, so I would prefer to include it. Or let me put it this way - if annotations were *included*

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Greg Brown
> I'm not saying that it would help to enhance the Pivot API Javadocs in > any way. Just that it would be there for Pivot consumers when they > generate Javadocs for their own code that uses @BXML. @BXML is primarily meant for application, not platform, usage anyways, so that's OK. I'm just wond

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
Not sure what you mean exactly. If I write some custom code that uses the @BXML annotation, the generated Javadocs would include the @BXML annotation if the access level allowed for that field to be documented at all. If all of my @BXML annotated fields are private I can still use the '-private'

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Greg Brown
> I agree, but I suppose it might still be useful to see what custom > code uses the BXML annotation and therefore would require signing to > run in an applet. How would you see it though, if the field isn't documented?

[jira] [Updated] (PIVOT-786) Annotate Pivot annotations with the @Documented annotation

2011-08-08 Thread Chris Bartlett (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Bartlett updated PIVOT-786: - Attachment: documented_annotation.patch Patch for BXML, DefaultProperty & IDProperty > Annotate P

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
I agree, but I suppose it might still be useful to see what custom code uses the BXML annotation and therefore would require signing to run in an applet. I'm creating a JIRA ticket now and adding a patch for all 3. On 8 August 2011 20:40, Greg Brown wrote: >> Just played around with @BXML, and d

[jira] [Created] (PIVOT-786) Annotate Pivot annotations with the @Documented annotation

2011-08-08 Thread Chris Bartlett (JIRA)
Annotate Pivot annotations with the @Documented annotation -- Key: PIVOT-786 URL: https://issues.apache.org/jira/browse/PIVOT-786 Project: Pivot Issue Type: Improvement Compon

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Greg Brown
> Just played around with @BXML, and don't see much value there. If the fields are private (the common case) then I tend to agree, since they wouldn't be Javadoc'ed anyways.

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
Just played around with @BXML, and don't see much value there. However, I do favour more documentation when practical, especially when it is automatically generated and therefore kept in sync. How about I just add the @Documented to all 3? Chris On 8 August 2011 20:15, Greg Brown wrote: > IDPro

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Greg Brown
IDProperty might benefit. Not sure about @BXML, but probably. On Aug 8, 2011, at 9:06 AM, Chris Bartlett wrote: > I thought they were included by default (if you can excuse the pun), > but only realised that DefaultProperty wasn't when I went looking for > it just now. > > I take it you have no

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
I don't think it needs a ticket, but it doesn't hurt to create one. It is so small that it can be committed quickly as soon as we decide if it is wanted. If it is wanted, then it would be worth putting into 2.0.1. On 8 August 2011 20:05, Sandro Martini wrote: > Hi all, > still in time with this f

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
I thought they were included by default (if you can excuse the pun), but only realised that DefaultProperty wasn't when I went looking for it just now. I take it you have no objection to me adding it then? Any thoughts about other Pivot annotations? On 8 August 2011 20:02, Greg Brown wrote: > Th

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Sandro Martini
Hi all, still in time with this for the 2.0.1 or should we go into 2.0.2 (I think it's good enough) ? Useful even a an improvement ticket ? Bye -- View this message in context: http://apache-pivot-developers.417237.n3.nabble.com/DefaultProperty-in-Javadocs-tp3235437p3235489.html Sent from the

Re: Propose 2.0.1 release

2011-08-08 Thread Sandro Martini
Hi Greg, >done. thank you very much. As you can see now in JIRA all is good (no tickets) for the 2.0.1 release :-) . Bye -- View this message in context: http://apache-pivot-developers.417237.n3.nabble.com/Propose-2-0-1-release-tp3229452p3235480.html Sent from the Apache Pivot - Developers m

Re: @DefaultProperty in Javadocs

2011-08-08 Thread Greg Brown
That's cool - I was not aware of that feature. On Aug 8, 2011, at 8:39 AM, Chris Bartlett wrote: > Is there any reason why the DefaultProperty annotation is not > annotated itself with java.lang.annotation.Documented? > > Doing so means that users will be able to see what WTK (or other) > classe

Re: Propose 2.0.1 release

2011-08-08 Thread Greg Brown
Done On Aug 6, 2011, at 5:14 AM, Sandro Martini wrote: > Greg, can you add to me and other PMC members full grants on Pivot JIRA ? > Otherwise we aren'r able for example to open a new release needed now to > move 2.0.1 tickets to 2.0.2, and useful for the future too). > Currently only you and Tod

@DefaultProperty in Javadocs

2011-08-08 Thread Chris Bartlett
Is there any reason why the DefaultProperty annotation is not annotated itself with java.lang.annotation.Documented? Doing so means that users will be able to see what WTK (or other) classes are have the DefaultProperty annotation and its value by looking at the Javadoc for that class. Are there

Re: Propose 2.0.1 release

2011-08-08 Thread Sandro Martini
Hi Noel, no problem, it's a pleasure for me, some times even more than writing/debugging code :-) ... Bye -- View this message in context: http://apache-pivot-developers.417237.n3.nabble.com/Propose-2-0-1-release-tp3229452p3235111.html Sent from the Apache Pivot - Developers mailing list archiv

[jira] [Updated] (PIVOT-397) maven archetype for a minimal pivot application, to use as a starting point

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-397: - Description: Create a maven archetype for a basic (minimal, near-empty) pivot application (

Re: Propose 2.0.1 release

2011-08-08 Thread Noel Grandin
Thanks for doing admin work Sandro. Sandro Martini wrote: > Hi all, > sorry for all JIRA mail of today, but I created the 2.0.2 release, resolved > some issues already fixed in code and do some cleanup. > > Now 2.0.1 has no more tickets assigned (only one currently, but as soon as I > get an answe

[jira] [Updated] (PIVOT-696) TextPane support for entering tab characters and tab stops

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-696: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2

[jira] [Updated] (PIVOT-696) TextArea support for entering tab characters and tab stops

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-696: - Comment: was deleted (was: Hi all, should I resolve this ticket in 2.0.1 or move to 2.0.2 ? ) > T

Re: Propose 2.0.1 release

2011-08-08 Thread Sandro Martini
Hi all, sorry for all JIRA mail of today, but I created the 2.0.2 release, resolved some issues already fixed in code and do some cleanup. Now 2.0.1 has no more tickets assigned (only one currently, but as soon as I get an answer I think it will be moved to 2.0.2 or resolved). We can start to gen

[jira] [Commented] (PIVOT-696) TextArea support for entering tab characters and tab stops

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13080858#comment-13080858 ] Sandro Martini commented on PIVOT-696: -- Hi all, should I resolve this ticket in 2.0.1

[jira] [Resolved] (PIVOT-752) Possible memory leak in Pivot Decorators, for example in ScaleDecorator

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini resolved PIVOT-752. -- Resolution: Cannot Reproduce If this problem will re-happen, be free to reopen. > Possible mem

[jira] [Updated] (PIVOT-752) Possible memory leak in Pivot Decorators, for example in ScaleDecorator

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-752: - Fix Version/s: (was: 2.0.2) 2.0.1 Affects Version/s: (was: 2

[jira] [Updated] (PIVOT-697) Font looks different when text is selected across multiple lines in TextArea

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-697?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-697: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2 This

[jira] [Updated] (PIVOT-685) SHIFT+DOWN keystroke within TextArea do not expand the selection past an empty line

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-685?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-685: - Affects Version/s: 2.0.1 2.0 Fix Version/s: (was: 2.0.1)

[jira] [Updated] (PIVOT-771) getSelectedIndex()/getSelectedPath() in TreeView, ListView and TableView should not throw Exception when in SelectMode.MULTI

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-771?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-771: - Priority: Minor (was: Major) Affects Version/s: 2.0.1 Fix Version/s: (was

[jira] [Issue Comment Edited] (PIVOT-781) Unable to get an initially maximized HostFrame in DesktopApplicationContext due to bug in Java 6 under ubuntu/linux

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13073471#comment-13073471 ] Sandro Martini edited comment on PIVOT-781 at 8/8/11 9:13 AM: --

[jira] [Updated] (PIVOT-781) Unable to get an initially maximized HostFrame in DesktopApplicationContext due to bug in Java 6 under ubuntu/linux

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-781: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2

[jira] [Updated] (PIVOT-751) TabPaneSelectionListener#selectedIndexChanged called twice when first tab is inserted

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-751?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-751: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2 This

[jira] [Commented] (PIVOT-752) Possible memory leak in Pivot Decorators, for example in ScaleDecorator

2011-08-08 Thread Chris Bartlett (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13080850#comment-13080850 ] Chris Bartlett commented on PIVOT-752: -- Sandro, I think this can probably be closed an

[jira] [Updated] (PIVOT-731) Ignore Flag for controls within a Rollup Heading

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-731?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-731: - Priority: Minor (was: Major) Affects Version/s: 2.0.1 Fix Version/s: (was

[jira] [Updated] (PIVOT-765) Reintroduce WindowStateListener#previewWindowOpen

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-765?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-765: - Priority: Minor (was: Major) Affects Version/s: 2.0.1 Fix Version/s: (was

[jira] [Updated] (PIVOT-754) Pivot displays ugly gray box sometimes before it loads the applet

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-754?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-754: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2

[jira] [Updated] (PIVOT-738) artefact problem with 2 scrollPane and TableView

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-738: - Affects Version/s: 2.0 Fix Version/s: (was: 2.0.1) 2.0.2 This r

[jira] [Updated] (PIVOT-732) Negative blurRadius of DropShadowDecorator or a InsetShadowDecorator

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-732: - Fix Version/s: (was: 2.0.1) 2.0.2 > Negative blurRadius of DropShadowDecora

[jira] [Updated] (PIVOT-707) TextArea cant be edited when pivot applet loses focus

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-707?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-707: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2

[jira] [Updated] (PIVOT-757) ScrollPane paints over columnHeader if header has no background

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-757?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-757: - Priority: Minor (was: Major) Fix Version/s: (was: 2.0.1) 2.0.2 Th

[jira] [Resolved] (PIVOT-709) Want a single-line text input component that wraps

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-709?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini resolved PIVOT-709. -- Resolution: Fixed Resolved, but in case of problems be free to reopen and assign to 2.0.2 > Wa

[jira] [Updated] (PIVOT-690) Unable to extend TextArea component seemingly because of state held within TerraTextAreaSkin

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-690?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-690: - Priority: Minor (was: Major) Affects Version/s: 2.0.1 2.0

[jira] [Resolved] (PIVOT-247) Mouse.capture() interferes with mouseClick event

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini resolved PIVOT-247. -- Resolution: Not A Problem Assignee: Greg Brown > Mouse.capture() interferes with mouseClic

[jira] [Updated] (PIVOT-770) Parameterize ListView, TableView and TreeView getters and setters for ListData

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-770?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-770: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2

[jira] [Updated] (PIVOT-752) Possible memory leak in Pivot Decorators, for example in ScaleDecorator

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-752: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2 This

[jira] [Resolved] (PIVOT-772) Exceptions thrown when calling getCharacterBounds of TextArea when incomplete lines exist

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-772?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini resolved PIVOT-772. -- Resolution: Fixed Resolved by Noel. > Exceptions thrown when calling getCharacterBounds of Text

[jira] [Updated] (PIVOT-778) Optimise DisplayHost.paintBuffered and DisplayHost.paintVolatileBuffered

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-778?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-778: - Fix Version/s: (was: 2.0.1) 2.1 2.0.2

[jira] [Updated] (PIVOT-782) java7 / applets : input fields not working

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-782?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-782: - Affects Version/s: 2.0.1 Fix Version/s: (was: 2.0.1) 2.0.2 This

[jira] [Updated] (PIVOT-783) Calling setScale on scaleDecorator doesn't update the display

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-783: - Fix Version/s: (was: 2.0.1) 2.1 > Calling setScale on scaleDecorator doesn'

[jira] [Updated] (PIVOT-508) TextArea displays blinking cursor even when it's in read-only mode.

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-508: - Affects Version/s: 2.0 Fix Version/s: (was: 2.0.1) 2.0.2

[jira] [Updated] (PIVOT-785) Improve selection/deselection on TableView and TreeView, when all elements are selected

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-785?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-785: - Fix Version/s: (was: 2.0.1) 2.0.2 Affects Version/s: 2.0.1 > Im

[jira] [Resolved] (PIVOT-744) ListView with SelectMode.Multi does not allow deselection when all elements are selected

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-744?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini resolved PIVOT-744. -- Resolution: Fixed Resolved on ListView, and moved in the other ticked for TableView and TreeView

[jira] [Created] (PIVOT-785) Improve selection/deselection on TableView and TreeView, when all elements are selected

2011-08-08 Thread Sandro Martini (JIRA)
Improve selection/deselection on TableView and TreeView, when all elements are selected --- Key: PIVOT-785 URL: https://issues.apache.org/jira/browse/PIVOT-785 Projec

[jira] [Updated] (PIVOT-721) ButtonDataRenderer#setFillIcon has no effect, because its BoxPane doesn't have fill style

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-721?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-721: - Fix Version/s: (was: 2.0.1) 2.0.2 > ButtonDataRenderer#setFillIcon has no e

[jira] [Updated] (PIVOT-686) pivot applet doesn't gain focus on page load

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-686: - Fix Version/s: (was: 2.0.1) 2.0.2 This requires more tests, so move to 2.0.

[jira] [Updated] (PIVOT-773) Allow setting of encoding when including scripts in bxml files

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-773?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-773: - Fix Version/s: (was: 2.0.1) 2.0.2 > Allow setting of encoding when includin

[jira] [Updated] (PIVOT-784) Improvement in clear() and clearSelection() methods in some components

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-784?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-784: - Affects Version/s: 2.0.1 Fix Version/s: 2.0.2 One time this will be fixed, copy/move Pivot

[jira] [Resolved] (PIVOT-694) Improvement in ListButton clear() method

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini resolved PIVOT-694. -- Resolution: Fixed Resolved on ListButtons, and moved in another ticket the part related to other

[jira] [Updated] (PIVOT-784) Improvement in clear() and clearSelection() methods in some components

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-784?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandro Martini updated PIVOT-784: - Fix Version/s: (was: 2.0.1) Assignee: Sandro Martini (was: Greg Brown) Descript

[jira] [Created] (PIVOT-784) Improvement in clear() and cleaeSelection() methods in some components

2011-08-08 Thread Sandro Martini (JIRA)
Improvement in clear() and cleaeSelection() methods in some components -- Key: PIVOT-784 URL: https://issues.apache.org/jira/browse/PIVOT-784 Project: Pivot Issue Type: Impr

[jira] [Resolved] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-08 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-780. Resolution: Fixed Assignee: Noel Grandin Marking this as closed for now. Can be re-opened if t

[jira] [Commented] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-08 Thread Chris Bartlett (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13080806#comment-13080806 ] Chris Bartlett commented on PIVOT-780: -- I haven't had a chance to test this yet. Perh

[jira] [Commented] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-08 Thread Sandro Martini (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13080795#comment-13080795 ] Sandro Martini commented on PIVOT-780: -- Noel (and others), can we mark this as resolv